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_debug.c | |
parent | 685c3262b945a7f0e9f1f3a9409a12fdda08c828 (diff) |
r300g: add debug options nozmask and nohiz which disable some hyper-z features
Diffstat (limited to 'src/gallium/drivers/r300/r300_debug.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_debug.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_debug.c b/src/gallium/drivers/r300/r300_debug.c index c6b4804cd8d..b60cfd1f248 100644 --- a/src/gallium/drivers/r300/r300_debug.c +++ b/src/gallium/drivers/r300/r300_debug.c @@ -50,6 +50,8 @@ static const struct debug_named_value debug_options[] = { { "noimmd", DBG_NO_IMMD, "Disable immediate mode" }, { "noopt", DBG_NO_OPT, "Disable shader optimizations" }, { "nocbzb", DBG_NO_CBZB, "Disable fast color clear" }, + { "nozmask", DBG_NO_ZMASK, "Disable zbuffer compression" }, + { "nohiz", DBG_NO_HIZ, "Disable hierarchical zbuffer" }, /* must be last */ DEBUG_NAMED_VALUE_END |