diff options
author | Rob Clark <[email protected]> | 2013-05-29 10:16:33 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2013-08-24 13:11:50 -0400 |
commit | c2babfccb5a9c665f4de0b66691b5f0dc359fe8b (patch) | |
tree | 10ccc99b5d46bd1e747a8a1730413434812715b7 /src/gallium/drivers/freedreno/freedreno_screen.c | |
parent | ae1a3f17367ceb0cfaeedcbeae850efbd6b7a38f (diff) |
freedreno: add debug option to disable scissor optimization
Useful for testing and debugging.
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/freedreno_screen.c')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_screen.c b/src/gallium/drivers/freedreno/freedreno_screen.c index 52d51c22966..36ef8b0bc53 100644 --- a/src/gallium/drivers/freedreno/freedreno_screen.c +++ b/src/gallium/drivers/freedreno/freedreno_screen.c @@ -60,6 +60,7 @@ static const struct debug_named_value debug_options[] = { {"disasm", FD_DBG_DISASM, "Dump TGSI and adreno shader disassembly"}, {"dclear", FD_DBG_DCLEAR, "Mark all state dirty after clear"}, {"dgmem", FD_DBG_DGMEM, "Mark all state dirty after GMEM tile pass"}, + {"dscis", FD_DBG_DSCIS, "Disable scissor optimization"}, DEBUG_NAMED_VALUE_END }; |