diff options
author | Brian <[email protected]> | 2007-07-13 09:25:57 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-07-13 09:25:57 -0600 |
commit | 563479552e2f491fb94e7fac5772f3c72cee962a (patch) | |
tree | cc9d7617d45b14d3ff9e2b1517f64fd2b4079eeb /src/mesa/pipe/p_state.h | |
parent | 676fcf0de270651311a6b812e98f2e71d7dae925 (diff) |
Added basic occlusion counting
Diffstat (limited to 'src/mesa/pipe/p_state.h')
-rw-r--r-- | src/mesa/pipe/p_state.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/pipe/p_state.h b/src/mesa/pipe/p_state.h index 2b0d6599937..fd5e7ad3af9 100644 --- a/src/mesa/pipe/p_state.h +++ b/src/mesa/pipe/p_state.h @@ -136,6 +136,7 @@ struct pipe_depth_state GLuint enabled:1; /**< depth test enabled? */ GLuint writemask:1; /**< allow depth buffer writes? */ GLuint func:3; /**< depth test func (PIPE_FUNC_x) */ + GLuint occlusion_count:1; /**< XXX move this elsewhere? */ GLfloat clear; /**< Clear value in [0,1] (XXX correct place?) */ }; |