diff options
author | Bas Nieuwenhuizen <[email protected]> | 2019-06-13 00:57:16 +0200 |
---|---|---|
committer | Bas Nieuwenhuizen <[email protected]> | 2019-06-13 08:15:45 +0000 |
commit | b4c7ce360bc07c507de120d218c7479161c22bc2 (patch) | |
tree | e98baf375cd561959417aca5e7923600c1adc44f | |
parent | 0667c1f14b06b9a748619a1a6ba3e03388fa868b (diff) |
radv: Always disable DCC on shareable images.
Do not want it for perf reasons. Always have to disable DCC when
transferring to external queue.
Reviewed-by: Samuel Pitoiset <[email protected]>
-rw-r--r-- | src/amd/vulkan/radv_image.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/amd/vulkan/radv_image.c b/src/amd/vulkan/radv_image.c index 131b6356c19..d8dc2dfabde 100644 --- a/src/amd/vulkan/radv_image.c +++ b/src/amd/vulkan/radv_image.c @@ -155,9 +155,7 @@ radv_use_dcc_for_image(struct radv_device *device, if (device->instance->debug_flags & RADV_DEBUG_NO_DCC) return false; - /* FIXME: DCC is broken for shareable images starting with GFX9 */ - if (device->physical_device->rad_info.chip_class >= GFX9 && - image->shareable) + if (image->shareable) return false; /* TODO: Enable DCC for storage images. */ |