diff options
author | Samuel Pitoiset <[email protected]> | 2019-07-17 14:19:10 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2019-07-17 15:43:36 +0200 |
commit | 24b1b1f5745d14865d1e1947a8882d5ed58470b4 (patch) | |
tree | bcc3488ed10165cc7ba804472ede9eca0d21c82a /src/amd/vulkan/radv_device.c | |
parent | d59c961af9eb48b61c0e078a71b3e8ca95a06778 (diff) |
radv: add an option for disabling NGG on GFX10
Will be useful for testing the legacy path.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_device.c')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 9e77dc7cb16..b397a9a8aa0 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -476,6 +476,7 @@ static const struct debug_control radv_debug_options[] = { {"nothreadllvm", RADV_DEBUG_NOTHREADLLVM}, {"nobinning", RADV_DEBUG_NOBINNING}, {"noloadstoreopt", RADV_DEBUG_NO_LOAD_STORE_OPT}, + {"nongg", RADV_DEBUG_NO_NGG}, {NULL, 0} }; |