summaryrefslogtreecommitdiff
path: root/src/mesa/swrast/s_readpix.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-10-01 16:04:09 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-10-01 16:04:09 +0000
commit7f78c93015fc65b351e765c2900ccd2f83d6d34e (patch)
treecf5deb906a9aebc41e394450bd5161acd0c0c104 /src/mesa/swrast/s_readpix.c
parent9758ef9e7bcd5fe85f0920d872c378897f546249 (diff)
simplify the read_depth_stencil_pixels() function
Diffstat (limited to 'src/mesa/swrast/s_readpix.c')
-rw-r--r--src/mesa/swrast/s_readpix.c41
1 files changed, 14 insertions, 27 deletions
diff --git a/src/mesa/swrast/s_readpix.c b/src/mesa/swrast/s_readpix.c
index 3096d7a27c..870242e855 100644
--- a/src/mesa/swrast/s_readpix.c
+++ b/src/mesa/swrast/s_readpix.c
@@ -415,8 +415,10 @@ read_depth_stencil_pixels(GLcontext *ctx,
GLenum type, GLvoid *pixels,
const struct gl_pixelstore_attrib *packing )
{
- const GLboolean scaleOrBias =
- ctx->Pixel.DepthScale != 1.0 || ctx->Pixel.DepthBias != 0.0;
+ const GLboolean scaleOrBias
+ = ctx->Pixel.DepthScale != 1.0 || ctx->Pixel.DepthBias != 0.0;
+ const GLboolean stencilTransfer = ctx->Pixel.IndexShift
+ || ctx->Pixel.IndexOffset || ctx->Pixel.MapStencilFlag;
struct gl_renderbuffer *depthRb, *stencilRb;
GLint i;
@@ -427,47 +429,32 @@ read_depth_stencil_pixels(GLcontext *ctx,
ASSERT(stencilRb);
for (i = 0; i < height; i++) {
- GLuint zVals[MAX_WIDTH]; /* 24-bit values! */
GLstencil stencilVals[MAX_WIDTH];
- GLint j;
GLuint *depthStencilDst = (GLuint *)
_mesa_image_address2d(packing, pixels, width, height,
GL_DEPTH_STENCIL_EXT, type, i, 0);
- /* get depth values */
- if (!scaleOrBias && depthRb->DepthBits == 24) {
+ _swrast_read_stencil_span(ctx, stencilRb, width, x, y + i, stencilVals);
+
+ if (!scaleOrBias && !stencilTransfer && depthRb->DepthBits == 24) {
/* ideal case */
+ GLuint zVals[MAX_WIDTH]; /* 24-bit values! */
+ GLint j;
ASSERT(depthRb->DataType == GL_UNSIGNED_INT);
/* note, we've already been clipped */
depthRb->GetRow(ctx, depthRb, width, x, y + i, zVals);
+ for (j = 0; j < width; j++) {
+ depthStencilDst[j] = (zVals[j] << 8) | (stencilVals[j] & 0xff);
+ }
}
else {
/* general case */
GLfloat depthVals[MAX_WIDTH];
_swrast_read_depth_span_float(ctx, depthRb, width, x, y + i,
depthVals);
- if (scaleOrBias) {
- _mesa_scale_and_bias_depth(ctx, width, depthVals);
- }
- /* convert to 24-bit GLuints */
- for (j = 0; j < width; j++) {
- zVals[j] = (GLuint) (depthVals[j] * (GLfloat) 0xffffff);
- }
- }
-
- /* get stencil values */
- _swrast_read_stencil_span(ctx, stencilRb, width, x, y + i, stencilVals);
- if (ctx->Pixel.IndexShift || ctx->Pixel.IndexOffset) {
- _mesa_shift_and_offset_stencil(ctx, width, stencilVals);
- }
- if (ctx->Pixel.MapStencilFlag) {
- _mesa_map_stencil(ctx, width, stencilVals);
- }
-
- for (j = 0; j < width; j++) {
- /* build combined Z/stencil values */
- depthStencilDst[j] = (zVals[j] << 8) | (stencilVals[j] & 0xff);
+ _mesa_pack_depth_stencil_span(ctx, width, depthStencilDst,
+ depthVals, stencilVals, packing);
}
}
}