2007-05-24 10:41:34 +01:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sub license, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
* of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
|
|
|
|
* IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
|
|
|
|
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
|
2007-06-14 18:11:48 +01:00
|
|
|
#include "sp_context.h"
|
|
|
|
#include "sp_state.h"
|
|
|
|
#include "sp_surface.h"
|
2007-07-31 17:42:03 -06:00
|
|
|
#include "pipe/p_defines.h"
|
|
|
|
#include "main/imports.h"
|
2007-05-24 10:41:34 +01:00
|
|
|
|
2007-07-31 17:42:03 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Softpipe surface functions.
|
|
|
|
* Basically, create surface of a particular type, then plug in default
|
|
|
|
* read/write_quad functions.
|
|
|
|
* Note that these quad funcs assume the buffer/region is in a linear
|
|
|
|
* layout with Y=0=bottom.
|
|
|
|
* If we had swizzled/AOS buffers the read/write functions could be
|
|
|
|
* simplified a lot....
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#if 000 /* OLD... should be recycled... */
|
2007-06-14 18:11:48 +01:00
|
|
|
static void rgba8_read_quad_f( struct softpipe_surface *gs,
|
2007-05-24 10:41:34 +01:00
|
|
|
GLint x, GLint y,
|
|
|
|
GLfloat (*rgba)[NUM_CHANNELS] )
|
|
|
|
{
|
|
|
|
GLuint i, j, k = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
for (j = 0; j < 2; j++, k++) {
|
|
|
|
GLubyte *ptr = gs->surface.ptr + (y+i) * gs->surface.stride + (x+j) * 4;
|
|
|
|
rgba[k][0] = ptr[0] * (1.0 / 255.0);
|
|
|
|
rgba[k][1] = ptr[1] * (1.0 / 255.0);
|
|
|
|
rgba[k][2] = ptr[2] * (1.0 / 255.0);
|
|
|
|
rgba[k][3] = ptr[3] * (1.0 / 255.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-14 18:11:48 +01:00
|
|
|
static void rgba8_read_quad_f_swz( struct softpipe_surface *gs,
|
2007-05-24 10:41:34 +01:00
|
|
|
GLint x, GLint y,
|
|
|
|
GLfloat (*rrrr)[QUAD_SIZE] )
|
|
|
|
{
|
|
|
|
GLuint i, j, k = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
for (j = 0; j < 2; j++, k++) {
|
|
|
|
GLubyte *ptr = gs->surface.ptr + (y+i) * gs->surface.stride + (x+j) * 4;
|
|
|
|
rrrr[0][k] = ptr[0] * (1.0 / 255.0);
|
|
|
|
rrrr[1][k] = ptr[1] * (1.0 / 255.0);
|
|
|
|
rrrr[2][k] = ptr[2] * (1.0 / 255.0);
|
|
|
|
rrrr[3][k] = ptr[3] * (1.0 / 255.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-14 18:11:48 +01:00
|
|
|
static void rgba8_write_quad_f( struct softpipe_surface *gs,
|
2007-05-24 10:41:34 +01:00
|
|
|
GLint x, GLint y,
|
|
|
|
GLfloat (*rgba)[NUM_CHANNELS] )
|
|
|
|
{
|
|
|
|
GLuint i, j, k = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
for (j = 0; j < 2; j++, k++) {
|
|
|
|
GLubyte *ptr = gs->surface.ptr + (y+i) * gs->surface.stride + (x+j) * 4;
|
|
|
|
ptr[0] = rgba[k][0] * 255.0;
|
|
|
|
ptr[1] = rgba[k][1] * 255.0;
|
|
|
|
ptr[2] = rgba[k][2] * 255.0;
|
|
|
|
ptr[3] = rgba[k][3] * 255.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-14 18:11:48 +01:00
|
|
|
static void rgba8_write_quad_f_swz( struct softpipe_surface *gs,
|
2007-05-24 10:41:34 +01:00
|
|
|
GLint x, GLint y,
|
|
|
|
GLfloat (*rrrr)[QUAD_SIZE] )
|
|
|
|
{
|
|
|
|
GLuint i, j, k = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
for (j = 0; j < 2; j++, k++) {
|
|
|
|
GLubyte *ptr = gs->surface.ptr + (y+i) * gs->surface.stride + (x+j) * 4;
|
|
|
|
ptr[0] = rrrr[0][k] * 255.0;
|
|
|
|
ptr[1] = rrrr[1][k] * 255.0;
|
|
|
|
ptr[2] = rrrr[2][k] * 255.0;
|
|
|
|
ptr[3] = rrrr[3][k] * 255.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-14 18:11:48 +01:00
|
|
|
static void rgba8_read_quad_ub( struct softpipe_surface *gs,
|
2007-05-24 10:41:34 +01:00
|
|
|
GLint x, GLint y,
|
|
|
|
GLubyte (*rgba)[NUM_CHANNELS] )
|
|
|
|
{
|
|
|
|
GLuint i, j, k = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
for (j = 0; j < 2; j++, k++) {
|
|
|
|
GLubyte *ptr = gs->surface.ptr + (y+i) * gs->surface.stride + (x+j) * 4;
|
|
|
|
rgba[k][0] = ptr[0];
|
|
|
|
rgba[k][1] = ptr[1];
|
|
|
|
rgba[k][2] = ptr[2];
|
|
|
|
rgba[k][3] = ptr[3];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-14 18:11:48 +01:00
|
|
|
static void rgba8_write_quad_ub( struct softpipe_surface *gs,
|
2007-05-24 10:41:34 +01:00
|
|
|
GLint x, GLint y,
|
|
|
|
GLubyte (*rgba)[NUM_CHANNELS] )
|
|
|
|
{
|
|
|
|
GLuint i, j, k = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
for (j = 0; j < 2; j++, k++) {
|
|
|
|
GLubyte *ptr = gs->surface.ptr + (y+i) * gs->surface.stride + (x+j) * 4;
|
|
|
|
ptr[0] = rgba[k][0];
|
|
|
|
ptr[1] = rgba[k][1];
|
|
|
|
ptr[2] = rgba[k][2];
|
|
|
|
ptr[3] = rgba[k][3];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-31 17:42:03 -06:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
z16_read_quad_z(struct softpipe_surface *sps,
|
|
|
|
GLint x, GLint y, GLuint zzzz[QUAD_SIZE])
|
|
|
|
{
|
|
|
|
const GLushort *src
|
|
|
|
= (GLushort *) sps->surface.region->map + y * sps->surface.region->pitch + x;
|
|
|
|
|
|
|
|
assert(sps->surface.format == PIPE_FORMAT_U_Z16);
|
|
|
|
|
|
|
|
/* converting GLushort to GLuint: */
|
|
|
|
zzzz[0] = src[0];
|
|
|
|
zzzz[1] = src[1];
|
|
|
|
src += sps->surface.region->pitch;
|
|
|
|
zzzz[2] = src[0];
|
|
|
|
zzzz[3] = src[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
z16_write_quad_z(struct softpipe_surface *sps,
|
|
|
|
GLint x, GLint y, const GLuint zzzz[QUAD_SIZE])
|
|
|
|
{
|
|
|
|
GLushort *dst = (GLushort *) sps->surface.region->map + y * sps->surface.region->pitch + x;
|
|
|
|
|
|
|
|
assert(sps->surface.format == PIPE_FORMAT_U_Z16);
|
|
|
|
|
|
|
|
/* converting GLuint to GLushort: */
|
|
|
|
dst[0] = zzzz[0];
|
|
|
|
dst[1] = zzzz[1];
|
|
|
|
dst += sps->surface.region->pitch;
|
|
|
|
dst[0] = zzzz[2];
|
|
|
|
dst[1] = zzzz[3];
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
z32_read_quad_z(struct softpipe_surface *sps,
|
|
|
|
GLint x, GLint y, GLuint zzzz[QUAD_SIZE])
|
|
|
|
{
|
|
|
|
const GLuint *src
|
|
|
|
= (GLuint *) sps->surface.region->map + y * sps->surface.region->pitch + x;
|
|
|
|
|
|
|
|
assert(sps->surface.format == PIPE_FORMAT_U_Z32);
|
|
|
|
|
|
|
|
zzzz[0] = src[0];
|
|
|
|
zzzz[1] = src[1];
|
|
|
|
src += sps->surface.region->pitch;
|
|
|
|
zzzz[2] = src[0];
|
|
|
|
zzzz[3] = src[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
z32_write_quad_z(struct softpipe_surface *sps,
|
|
|
|
GLint x, GLint y, const GLuint zzzz[QUAD_SIZE])
|
|
|
|
{
|
|
|
|
GLuint *dst = (GLuint *) sps->surface.region->map + y * sps->surface.region->pitch + x;
|
|
|
|
|
|
|
|
assert(sps->surface.format == PIPE_FORMAT_U_Z32);
|
|
|
|
|
|
|
|
dst[0] = zzzz[0];
|
|
|
|
dst[1] = zzzz[1];
|
|
|
|
dst += sps->surface.region->pitch;
|
|
|
|
dst[0] = zzzz[2];
|
|
|
|
dst[1] = zzzz[3];
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-08-01 13:04:58 -06:00
|
|
|
s8z24_read_quad_z(struct softpipe_surface *sps,
|
2007-07-31 17:42:03 -06:00
|
|
|
GLint x, GLint y, GLuint zzzz[QUAD_SIZE])
|
|
|
|
{
|
2007-08-01 13:04:58 -06:00
|
|
|
static const GLuint mask = 0x00ffffff;
|
2007-07-31 17:42:03 -06:00
|
|
|
const GLuint *src
|
|
|
|
= (GLuint *) sps->surface.region->map + y * sps->surface.region->pitch + x;
|
|
|
|
|
2007-08-01 13:04:58 -06:00
|
|
|
assert(sps->surface.format == PIPE_FORMAT_S8_Z24);
|
2007-07-31 17:42:03 -06:00
|
|
|
|
2007-08-01 13:04:58 -06:00
|
|
|
zzzz[0] = src[0] & mask;
|
|
|
|
zzzz[1] = src[1] & mask;
|
2007-07-31 17:42:03 -06:00
|
|
|
src += sps->surface.region->pitch;
|
2007-08-01 13:04:58 -06:00
|
|
|
zzzz[2] = src[0] & mask;
|
|
|
|
zzzz[3] = src[1] & mask;
|
2007-07-31 17:42:03 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-08-01 13:04:58 -06:00
|
|
|
s8z24_write_quad_z(struct softpipe_surface *sps,
|
2007-07-31 17:42:03 -06:00
|
|
|
GLint x, GLint y, const GLuint zzzz[QUAD_SIZE])
|
|
|
|
{
|
2007-08-01 13:04:58 -06:00
|
|
|
static const GLuint mask = 0xff000000;
|
2007-07-31 17:42:03 -06:00
|
|
|
GLuint *dst = (GLuint *) sps->surface.region->map + y * sps->surface.region->pitch + x;
|
|
|
|
|
2007-08-01 13:04:58 -06:00
|
|
|
assert(sps->surface.format == PIPE_FORMAT_S8_Z24);
|
2007-07-31 17:42:03 -06:00
|
|
|
assert(zzzz[0] <= 0xffffff);
|
|
|
|
|
2007-08-01 13:04:58 -06:00
|
|
|
dst[0] = (dst[0] & mask) | zzzz[0];
|
|
|
|
dst[1] = (dst[1] & mask) | zzzz[1];
|
2007-07-31 17:42:03 -06:00
|
|
|
dst += sps->surface.region->pitch;
|
2007-08-01 13:04:58 -06:00
|
|
|
dst[0] = (dst[0] & mask) | zzzz[2];
|
|
|
|
dst[1] = (dst[1] & mask) | zzzz[3];
|
2007-07-31 17:42:03 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-08-01 13:04:58 -06:00
|
|
|
s8z24_read_quad_stencil(struct softpipe_surface *sps,
|
2007-07-31 17:42:03 -06:00
|
|
|
GLint x, GLint y, GLubyte ssss[QUAD_SIZE])
|
|
|
|
{
|
|
|
|
const GLuint *src
|
|
|
|
= (GLuint *) sps->surface.region->map + y * sps->surface.region->pitch + x;
|
|
|
|
|
2007-08-01 13:04:58 -06:00
|
|
|
assert(sps->surface.format == PIPE_FORMAT_S8_Z24);
|
2007-07-31 17:42:03 -06:00
|
|
|
|
2007-08-01 13:04:58 -06:00
|
|
|
ssss[0] = src[0] >> 24;
|
|
|
|
ssss[1] = src[1] >> 24;
|
2007-07-31 17:42:03 -06:00
|
|
|
src += sps->surface.region->pitch;
|
2007-08-01 13:04:58 -06:00
|
|
|
ssss[2] = src[0] >> 24;
|
|
|
|
ssss[3] = src[1] >> 24;
|
2007-07-31 17:42:03 -06:00
|
|
|
}
|
2007-05-24 10:41:34 +01:00
|
|
|
|
2007-07-31 17:42:03 -06:00
|
|
|
static void
|
2007-08-01 13:04:58 -06:00
|
|
|
s8z24_write_quad_stencil(struct softpipe_surface *sps,
|
2007-07-31 17:42:03 -06:00
|
|
|
GLint x, GLint y, const GLubyte ssss[QUAD_SIZE])
|
|
|
|
{
|
2007-08-01 13:04:58 -06:00
|
|
|
static const GLuint mask = 0x00ffffff;
|
2007-07-31 17:42:03 -06:00
|
|
|
GLuint *dst = (GLuint *) sps->surface.region->map + y * sps->surface.region->pitch + x;
|
|
|
|
|
2007-08-01 13:04:58 -06:00
|
|
|
assert(sps->surface.format == PIPE_FORMAT_S8_Z24);
|
2007-05-24 10:41:34 +01:00
|
|
|
|
2007-08-01 13:04:58 -06:00
|
|
|
dst[0] = (dst[0] & mask) | (ssss[0] << 24);
|
|
|
|
dst[1] = (dst[1] & mask) | (ssss[1] << 24);
|
2007-07-31 17:42:03 -06:00
|
|
|
dst += sps->surface.region->pitch;
|
2007-08-01 13:04:58 -06:00
|
|
|
dst[0] = (dst[0] & mask) | (ssss[2] << 24);
|
|
|
|
dst[1] = (dst[1] & mask) | (ssss[3] << 24);
|
2007-07-31 17:42:03 -06:00
|
|
|
}
|
2007-05-24 10:41:34 +01:00
|
|
|
|
|
|
|
|
2007-07-31 17:42:03 -06:00
|
|
|
static void
|
|
|
|
s8_read_quad_stencil(struct softpipe_surface *sps,
|
|
|
|
GLint x, GLint y, GLubyte ssss[QUAD_SIZE])
|
|
|
|
{
|
|
|
|
const GLubyte *src
|
|
|
|
= sps->surface.region->map + y * sps->surface.region->pitch + x;
|
|
|
|
|
|
|
|
assert(sps->surface.format == PIPE_FORMAT_U_S8);
|
|
|
|
|
|
|
|
ssss[0] = src[0];
|
|
|
|
ssss[1] = src[1];
|
|
|
|
src += sps->surface.region->pitch;
|
|
|
|
ssss[2] = src[0];
|
|
|
|
ssss[3] = src[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
s8_write_quad_stencil(struct softpipe_surface *sps,
|
|
|
|
GLint x, GLint y, const GLubyte ssss[QUAD_SIZE])
|
|
|
|
{
|
|
|
|
GLubyte *dst
|
|
|
|
= sps->surface.region->map + y * sps->surface.region->pitch + x;
|
2007-05-24 10:41:34 +01:00
|
|
|
|
2007-07-31 17:42:03 -06:00
|
|
|
assert(sps->surface.format == PIPE_FORMAT_U_S8);
|
2007-05-24 10:41:34 +01:00
|
|
|
|
2007-07-31 17:42:03 -06:00
|
|
|
dst[0] = ssss[0];
|
|
|
|
dst[1] = ssss[1];
|
|
|
|
dst += sps->surface.region->pitch;
|
|
|
|
dst[0] = ssss[2];
|
|
|
|
dst[1] = ssss[3];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
init_quad_funcs(struct softpipe_surface *sps)
|
|
|
|
{
|
|
|
|
switch (sps->surface.format) {
|
|
|
|
case PIPE_FORMAT_U_Z16:
|
|
|
|
sps->read_quad_z = z16_read_quad_z;
|
|
|
|
sps->write_quad_z = z16_write_quad_z;
|
|
|
|
break;
|
|
|
|
case PIPE_FORMAT_U_Z32:
|
|
|
|
sps->read_quad_z = z32_read_quad_z;
|
|
|
|
sps->write_quad_z = z32_write_quad_z;
|
|
|
|
break;
|
2007-08-01 13:04:58 -06:00
|
|
|
case PIPE_FORMAT_S8_Z24:
|
|
|
|
sps->read_quad_z = s8z24_read_quad_z;
|
|
|
|
sps->write_quad_z = s8z24_write_quad_z;
|
|
|
|
sps->read_quad_stencil = s8z24_read_quad_stencil;
|
|
|
|
sps->write_quad_stencil = s8z24_write_quad_stencil;
|
2007-07-31 17:42:03 -06:00
|
|
|
break;
|
|
|
|
case PIPE_FORMAT_U_S8:
|
|
|
|
sps->read_quad_stencil = s8_read_quad_stencil;
|
|
|
|
sps->write_quad_stencil = s8_write_quad_stencil;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct pipe_surface *
|
|
|
|
sp_surface_alloc(struct pipe_context *pipe, GLenum format)
|
|
|
|
{
|
|
|
|
struct softpipe_surface *sps = CALLOC_STRUCT(softpipe_surface);
|
|
|
|
if (!sps)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
sps->surface.format = format;
|
2007-08-07 13:13:41 -06:00
|
|
|
sps->surface.refcount = 1;
|
2007-07-31 17:42:03 -06:00
|
|
|
init_quad_funcs(sps);
|
|
|
|
|
|
|
|
return &sps->surface;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-07 13:13:41 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called via pipe->get_tex_surface()
|
|
|
|
* XXX is this in the right place?
|
|
|
|
*/
|
|
|
|
struct pipe_surface *
|
|
|
|
softpipe_get_tex_surface(struct pipe_context *pipe,
|
|
|
|
struct pipe_mipmap_tree *mt,
|
|
|
|
GLuint face, GLuint level, GLuint zslice)
|
|
|
|
{
|
|
|
|
struct pipe_surface *ps;
|
|
|
|
GLuint offset; /* in bytes */
|
|
|
|
|
|
|
|
offset = mt->level[level].level_offset;
|
|
|
|
|
|
|
|
if (mt->target == GL_TEXTURE_CUBE_MAP_ARB) {
|
|
|
|
offset += mt->level[level].image_offset[face] * mt->cpp;
|
|
|
|
}
|
|
|
|
else if (mt->target == GL_TEXTURE_3D) {
|
|
|
|
offset += mt->level[level].image_offset[zslice] * mt->cpp;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
assert(face == 0);
|
|
|
|
assert(zslice == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
ps = pipe->surface_alloc(pipe, mt->internal_format);
|
|
|
|
if (ps) {
|
|
|
|
assert(ps->format);
|
|
|
|
assert(ps->refcount);
|
|
|
|
ps->region = mt->region;
|
|
|
|
ps->width = mt->level[level].width;
|
|
|
|
ps->height = mt->level[level].height;
|
|
|
|
ps->offset = offset;
|
|
|
|
}
|
|
|
|
return ps;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-31 17:42:03 -06:00
|
|
|
void
|
|
|
|
sp_init_surface_functions(struct softpipe_context *sp)
|
|
|
|
{
|
|
|
|
sp->pipe.surface_alloc = sp_surface_alloc;
|
|
|
|
}
|