diff options
author | Roland Scheidegger <[email protected]> | 2010-02-09 21:23:27 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2010-02-09 21:23:27 +0100 |
commit | 1a859ecf4a4728cb321b1f68d51491cd285a3c03 (patch) | |
tree | b6f45938d009e46ff16226b9cd514cdb4b01c7a8 /src/gallium/include/pipe/p_state.h | |
parent | 653a83445f94620673f747a4ace6847a2c7fdb4d (diff) |
gallium: don't put stencil ref value in pipe_depth_stencil_alpha_state
This will make driver's life a bit harder, however it makes sense that stencil
reference value is not part of the pipe_depth_stencil_alpha_state, because
it often (there are some algorithms which require this) changes more frequently
than the rest of the dsa state. This is also encouraged by some graphic APIs.
Treat it similar to pipe_blend_color.
Diffstat (limited to 'src/gallium/include/pipe/p_state.h')
-rw-r--r-- | src/gallium/include/pipe/p_state.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index 68369570b95..80e02ae70e3 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -199,7 +199,6 @@ struct pipe_stencil_state unsigned fail_op:3; /**< PIPE_STENCIL_OP_x */ unsigned zpass_op:3; /**< PIPE_STENCIL_OP_x */ unsigned zfail_op:3; /**< PIPE_STENCIL_OP_x */ - ubyte ref_value; ubyte valuemask; ubyte writemask; }; @@ -251,6 +250,10 @@ struct pipe_blend_color float color[4]; }; +struct pipe_stencil_ref +{ + ubyte ref_value[2]; +}; struct pipe_framebuffer_state { |