diff options
author | Chia-I Wu <[email protected]> | 2014-01-06 23:32:46 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2014-01-08 18:11:36 +0800 |
commit | 76edf44f9ed7ea8d8e8f44d0d01b5ed26606903e (patch) | |
tree | c5585829b865e7b0fcc6c247b0349f4062c28e1a /src/gallium/drivers/ilo/ilo_screen.c | |
parent | e7b4219e2287f98a323b6883ce5f42545cab0e8f (diff) |
ilo: enable HiZ
The support is still early. Fast depth buffer clear is not enabled yet.
HiZ can be forced off with ILO_DEBUG=nohiz.
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_screen.c')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/ilo/ilo_screen.c b/src/gallium/drivers/ilo/ilo_screen.c index a76966f4a02..54fbf681861 100644 --- a/src/gallium/drivers/ilo/ilo_screen.c +++ b/src/gallium/drivers/ilo/ilo_screen.c @@ -50,6 +50,7 @@ static const struct debug_named_value ilo_debug_flags[] = { { "flush", ILO_DEBUG_FLUSH, "Show batch buffer flushes" }, { "nohw", ILO_DEBUG_NOHW, "Do not send commands to HW" }, { "nocache", ILO_DEBUG_NOCACHE, "Always invalidate HW caches" }, + { "nohiz", ILO_DEBUG_NOHIZ, "Disable HiZ" }, DEBUG_NAMED_VALUE_END }; |