summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/mesa/main/readpix.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/readpix.c b/src/mesa/main/readpix.c
index 0b41de62224..86b87534d31 100644
--- a/src/mesa/main/readpix.c
+++ b/src/mesa/main/readpix.c
@@ -412,6 +412,10 @@ slow_read_depth_stencil_pixels_separate(struct gl_context *ctx,
GL_MAP_READ_BIT, &stencilMap,
&stencilStride);
}
+ else {
+ stencilMap = depthMap;
+ stencilStride = depthStride;
+ }
for (j = 0; j < height; j++) {
GLubyte stencilVals[MAX_WIDTH];