diff --git a/src/amd/vulkan/radv_image.c b/src/amd/vulkan/radv_image.c index c8f49889395..e0e148f94d6 100644 --- a/src/amd/vulkan/radv_image.c +++ b/src/amd/vulkan/radv_image.c @@ -2298,9 +2298,6 @@ radv_layout_is_htile_compressed(const struct radv_device *device, const struct r * depth pass because this allows compression and this reduces * the number of decompressions from/to GENERAL. */ - /* FIXME: Enabling TC-compat HTILE in GENERAL on the compute - * queue is likely broken for eg. depth/stencil copies. - */ if (radv_image_is_tc_compat_htile(image) && queue_mask & (1u << RADV_QUEUE_GENERAL) && !device->instance->disable_tc_compat_htile_in_general) { return true;