diff options
author | Brian Paul <[email protected]> | 2011-07-06 15:02:58 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-07-06 15:14:27 -0600 |
commit | 057a107d4433eefce0ac99810a6e182f19fa64a6 (patch) | |
tree | bdfb3309bc2f95574eec5c51f465c5b2666e2455 /src/gallium/drivers/softpipe/sp_quad_depth_test.c | |
parent | 2ea7b374f6111a3aab2589d915dd3fcd309a59ca (diff) |
softpipe: add missing stencil format case in convert_quad_stencil()
Part of the fix for https://bugs.freedesktop.org/show_bug.cgi?id=38729
NOTE: This is a candidate for the 7.11 branch
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_quad_depth_test.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_quad_depth_test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/softpipe/sp_quad_depth_test.c b/src/gallium/drivers/softpipe/sp_quad_depth_test.c index 3127d22d8f4..15f3a8fd813 100644 --- a/src/gallium/drivers/softpipe/sp_quad_depth_test.c +++ b/src/gallium/drivers/softpipe/sp_quad_depth_test.c @@ -206,6 +206,7 @@ convert_quad_stencil( struct depth_data *data, case PIPE_FORMAT_Z24_UNORM_S8_USCALED: case PIPE_FORMAT_X8Z24_UNORM: case PIPE_FORMAT_S8_USCALED_Z24_UNORM: + case PIPE_FORMAT_S8_USCALED: for (j = 0; j < QUAD_SIZE; j++) { data->shader_stencil_refs[j] = ((unsigned)(quad->output.stencil[j])); } |