summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-10-13 09:04:35 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-10-13 09:04:35 -0600
commita1e332950bf5f6460af81ad29f5917c84649f249 (patch)
treea6e4f6f2118efd55944c37b1b5afbbd2482c28a1
parent89414d951d329cd70f947a3b85dee714c518dcc8 (diff)
added z16/z32_git_tile(), change s8z24_get_tile() to return Z as float, ignore stencil
-rwxr-xr-xsrc/mesa/pipe/softpipe/sp_surface.c83
1 files changed, 80 insertions, 3 deletions
diff --git a/src/mesa/pipe/softpipe/sp_surface.c b/src/mesa/pipe/softpipe/sp_surface.c
index 29b5c9631c..07def21d42 100755
--- a/src/mesa/pipe/softpipe/sp_surface.c
+++ b/src/mesa/pipe/softpipe/sp_surface.c
@@ -240,6 +240,44 @@ z16_write_quad_z(struct softpipe_surface *sps,
dst[1] = zzzz[3];
}
+/**
+ * Return as floats in [0,1].
+ */
+static void
+z16_get_tile(struct pipe_surface *ps,
+ unsigned x, unsigned y, unsigned w, unsigned h, float *p)
+{
+ const ushort *src
+ = ((const ushort *) (ps->region->map + ps->offset))
+ + y * ps->region->pitch + x;
+ const float scale = 1.0 / 65535.0;
+ unsigned i, j;
+ unsigned w0 = w;
+
+ assert(ps->format == PIPE_FORMAT_U_Z16);
+
+#if 0
+ assert(x + w <= ps->width);
+ assert(y + h <= ps->height);
+#else
+ /* temp clipping hack */
+ if (x + w > ps->width)
+ w = ps->width - x;
+ if (y + h > ps->height)
+ h = ps->height -y;
+#endif
+ for (i = 0; i < h; i++) {
+ float *pRow = p;
+ for (j = 0; j < w; j++) {
+ pRow[j] = src[j] * scale;
+ }
+ src += ps->region->pitch;
+ p += w0;
+ }
+}
+
+
+
/*** PIPE_FORMAT_U_L8 ***/
@@ -619,6 +657,42 @@ z32_write_quad_z(struct softpipe_surface *sps,
dst[1] = zzzz[3];
}
+/**
+ * Return as floats in [0,1].
+ */
+static void
+z32_get_tile(struct pipe_surface *ps,
+ unsigned x, unsigned y, unsigned w, unsigned h, float *p)
+{
+ const uint *src
+ = ((const uint *) (ps->region->map + ps->offset))
+ + y * ps->region->pitch + x;
+ const double scale = 1.0 / (double) 0xffffffff;
+ unsigned i, j;
+ unsigned w0 = w;
+
+ assert(ps->format == PIPE_FORMAT_U_Z16);
+
+#if 0
+ assert(x + w <= ps->width);
+ assert(y + h <= ps->height);
+#else
+ /* temp clipping hack */
+ if (x + w > ps->width)
+ w = ps->width - x;
+ if (y + h > ps->height)
+ h = ps->height -y;
+#endif
+ for (i = 0; i < h; i++) {
+ float *pRow = p;
+ for (j = 0; j < w; j++) {
+ pRow[j] = src[j] * scale;
+ }
+ src += ps->region->pitch;
+ p += w0;
+ }
+}
+
/*** PIPE_FORMAT_S8_Z24 ***/
@@ -697,7 +771,7 @@ s8z24_write_quad_stencil(struct softpipe_surface *sps,
/**
- * Note, the actual returned pixels are uint, not float
+ * Return Z component as float in [0,1]. Stencil part ignored.
*/
static void
s8z24_get_tile(struct pipe_surface *ps,
@@ -706,6 +780,7 @@ s8z24_get_tile(struct pipe_surface *ps,
const uint *src
= ((const uint *) (ps->region->map + ps->offset))
+ y * ps->region->pitch + x;
+ const double scale = 1.0 / ((1 << 24) - 1);
unsigned i, j;
unsigned w0 = w;
@@ -722,9 +797,9 @@ s8z24_get_tile(struct pipe_surface *ps,
h = ps->height -y;
#endif
for (i = 0; i < h; i++) {
- uint *pRow = (uint *) p;
+ float *pRow = p;
for (j = 0; j < w; j++) {
- pRow[j] = src[j];
+ pRow[j] = (src[j] & 0xffffff) * scale;
}
src += ps->region->pitch;
p += w0;
@@ -811,10 +886,12 @@ softpipe_init_surface_funcs(struct softpipe_surface *sps)
case PIPE_FORMAT_U_Z16:
sps->read_quad_z = z16_read_quad_z;
sps->write_quad_z = z16_write_quad_z;
+ sps->surface.get_tile = z16_get_tile;
break;
case PIPE_FORMAT_U_Z32:
sps->read_quad_z = z32_read_quad_z;
sps->write_quad_z = z32_write_quad_z;
+ sps->surface.get_tile = z32_get_tile;
break;
case PIPE_FORMAT_S8_Z24:
sps->read_quad_z = s8z24_read_quad_z;