diff options
author | Keith Whitwell <[email protected]> | 2007-12-11 15:48:30 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2007-12-11 17:10:47 +0000 |
commit | ecb5e14e8688e31446fdcbdea59d25ea628fb211 (patch) | |
tree | fc9c64dea749133489aa713d5da0a819933b7649 /src/mesa/pipe/p_state.h | |
parent | 4a4543f5360b5f0a3350d9db770f1325cc3a9e84 (diff) |
gallium: remove clear values from depth, stencil state
Diffstat (limited to 'src/mesa/pipe/p_state.h')
-rw-r--r-- | src/mesa/pipe/p_state.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/pipe/p_state.h b/src/mesa/pipe/p_state.h index 56d4f96ed76..a571071ea99 100644 --- a/src/mesa/pipe/p_state.h +++ b/src/mesa/pipe/p_state.h @@ -152,7 +152,6 @@ struct pipe_depth_stencil_state unsigned writemask:1; /**< allow depth buffer writes? */ unsigned func:3; /**< depth test func (PIPE_FUNC_x) */ unsigned occlusion_count:1; /**< XXX move this elsewhere? */ - float clear; /**< Clear value in [0,1] (XXX correct place?) */ } depth; struct { unsigned front_enabled:1; @@ -168,7 +167,6 @@ struct pipe_depth_stencil_state ubyte ref_value[2]; /**< [0] = front, [1] = back */ ubyte value_mask[2]; ubyte write_mask[2]; - ubyte clear_value; } stencil; }; |