summaryrefslogtreecommitdiff
path: root/src/mesa/pipe
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2007-12-11 15:48:30 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2007-12-11 17:10:47 +0000
commitecb5e14e8688e31446fdcbdea59d25ea628fb211 (patch)
treefc9c64dea749133489aa713d5da0a819933b7649 /src/mesa/pipe
parent4a4543f5360b5f0a3350d9db770f1325cc3a9e84 (diff)
gallium: remove clear values from depth, stencil state
Diffstat (limited to 'src/mesa/pipe')
-rw-r--r--src/mesa/pipe/p_state.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/pipe/p_state.h b/src/mesa/pipe/p_state.h
index 56d4f96ed7..a571071ea9 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;
};