projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0667c1f
)
radv: Always disable DCC on shareable images.
author
Bas Nieuwenhuizen
<bas@basnieuwenhuizen.nl>
Wed, 12 Jun 2019 22:57:16 +0000
(
00:57
+0200)
committer
Bas Nieuwenhuizen
<bas@basnieuwenhuizen.nl>
Thu, 13 Jun 2019 08:15:45 +0000
(08:15 +0000)
Do not want it for perf reasons. Always have to disable DCC when
transferring to external queue.
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
src/amd/vulkan/radv_image.c
patch
|
blob
|
history
diff --git
a/src/amd/vulkan/radv_image.c
b/src/amd/vulkan/radv_image.c
index 131b6356c197f32589a147a55fc296d0e3355ca1..d8dc2dfabde16d98ab27ee26dc7810e25fd8c269 100644
(file)
--- 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. */