diff options
author | Marek Olšák <[email protected]> | 2011-07-11 01:39:53 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-07-11 03:04:17 +0200 |
commit | 01f48a979d85525acd060c8055ec835a1b56ea87 (patch) | |
tree | 8790bee28d87605fd473b19906dd6fc75876e500 /src/mesa/swrast/s_readpix.c | |
parent | 91a52dae97379d118965567b5c11e393996baeb9 (diff) |
mesa: implement packing of DEPTH_STENCIL & FLOAT_32_UNSIGNED_INT_24_8_REV combo
Tested with the new piglit fbo-depthstencil test.
Diffstat (limited to 'src/mesa/swrast/s_readpix.c')
-rw-r--r-- | src/mesa/swrast/s_readpix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_readpix.c b/src/mesa/swrast/s_readpix.c index 214f2ea1aaa..66ca39293a6 100644 --- a/src/mesa/swrast/s_readpix.c +++ b/src/mesa/swrast/s_readpix.c @@ -446,7 +446,7 @@ read_depth_stencil_pixels(struct gl_context *ctx, GLfloat depthVals[MAX_WIDTH]; _swrast_read_depth_span_float(ctx, depthRb, width, x, y + i, depthVals); - _mesa_pack_depth_stencil_span(ctx, width, depthStencilDst, + _mesa_pack_depth_stencil_span(ctx, width, type, depthStencilDst, depthVals, stencilVals, packing); } } |