diff options
author | Marek Olšák <[email protected]> | 2011-02-12 23:37:14 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-02-12 23:37:14 +0100 |
commit | 9ad9a6861a01997fa88fe35089d63348f7b076af (patch) | |
tree | 50bad7ee6815fbf24a24b7a85b51caa110ae6252 /src/gallium/drivers/r300/r300_screen.h | |
parent | 685c3262b945a7f0e9f1f3a9409a12fdda08c828 (diff) |
r300g: add debug options nozmask and nohiz which disable some hyper-z features
Diffstat (limited to 'src/gallium/drivers/r300/r300_screen.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_screen.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_screen.h b/src/gallium/drivers/r300/r300_screen.h index 973b7926fd1..c935f55ccbf 100644 --- a/src/gallium/drivers/r300/r300_screen.h +++ b/src/gallium/drivers/r300/r300_screen.h @@ -102,6 +102,8 @@ r300_winsys_screen(struct pipe_screen *screen) { #define DBG_FAKE_OCC (1 << 19) #define DBG_NO_OPT (1 << 20) #define DBG_NO_CBZB (1 << 21) +#define DBG_NO_ZMASK (1 << 22) +#define DBG_NO_HIZ (1 << 23) /* Statistics. */ #define DBG_P_STAT (1 << 25) /*@}*/ |