diff options
author | Roland Scheidegger <[email protected]> | 2010-02-10 18:59:43 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2010-02-10 18:59:43 +0100 |
commit | 658e94578f8004c01eb8c64254728912527e0c2f (patch) | |
tree | b755ca118cc2fe1e3e0b8c2a5ed639019267e9ae /src/gallium/drivers/softpipe/sp_quad_depth_test.c | |
parent | 903bb045b506ed5d64d1de90d8a17bb9d0d56a44 (diff) |
softpipe: adapt to stencil ref changes
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_quad_depth_test.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_quad_depth_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_quad_depth_test.c b/src/gallium/drivers/softpipe/sp_quad_depth_test.c index a981775cbd3..499eebd671b 100644 --- a/src/gallium/drivers/softpipe/sp_quad_depth_test.c +++ b/src/gallium/drivers/softpipe/sp_quad_depth_test.c @@ -519,7 +519,7 @@ depth_stencil_test_quad(struct quad_stage *qs, failOp = softpipe->depth_stencil->stencil[face].fail_op; zFailOp = softpipe->depth_stencil->stencil[face].zfail_op; zPassOp = softpipe->depth_stencil->stencil[face].zpass_op; - ref = softpipe->depth_stencil->stencil[face].ref_value; + ref = softpipe->stencil_ref.ref_value[face]; wrtMask = softpipe->depth_stencil->stencil[face].writemask; valMask = softpipe->depth_stencil->stencil[face].valuemask; |