mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
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 <samuel.pitoiset@gmail.com>
This commit is contained in:
parent
0667c1f14b
commit
b4c7ce360b
1 changed files with 1 additions and 3 deletions
|
|
@ -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. */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue