diff options
author | Marek Olšák <[email protected]> | 2017-08-29 03:58:22 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-09-05 12:09:02 +0200 |
commit | c3ebac68900de5ad461a7b5a279621a435f5bcec (patch) | |
tree | b5ad1a6b499b9368a0899746f364f8904b8b1366 /src/gallium/drivers/radeon/r600_pipe_common.c | |
parent | 51e10c27702cf2ca23877ed0230785231e1758f3 (diff) |
radeonsi/gfx9: implement primitive binning
This increases performance, but it was tuned for Raven, not Vega.
We don't know yet how Vega will perform, hopefully not worse.
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon/r600_pipe_common.c')
-rw-r--r-- | src/gallium/drivers/radeon/r600_pipe_common.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/r600_pipe_common.c b/src/gallium/drivers/radeon/r600_pipe_common.c index 99172c6c55f..1302e112c03 100644 --- a/src/gallium/drivers/radeon/r600_pipe_common.c +++ b/src/gallium/drivers/radeon/r600_pipe_common.c @@ -823,6 +823,8 @@ static const struct debug_named_value common_debug_options[] = { { "mono", DBG_MONOLITHIC_SHADERS, "Use old-style monolithic shaders compiled on demand" }, { "unsafemath", DBG_UNSAFE_MATH, "Enable unsafe math shader optimizations" }, { "nodccfb", DBG_NO_DCC_FB, "Disable separate DCC on the main framebuffer" }, + { "nodpbb", DBG_NO_DPBB, "Disable DPBB." }, + { "nodfsm", DBG_NO_DFSM, "Disable DFSM." }, DEBUG_NAMED_VALUE_END /* must be last */ }; |