diff options
author | Bas Nieuwenhuizen <[email protected]> | 2016-12-27 00:57:36 +0100 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2016-12-27 03:27:13 +0000 |
commit | 059af2515ad778f569e999547cb44a195f66c198 (patch) | |
tree | 4e9af6d081071f2046a79812ecdee58e3a373687 /src/amd/vulkan/radv_meta_clear.c | |
parent | 3fd306b4232656914267bca824b7dde4be0e2ffb (diff) |
radv: Also skip DCC clear flushes for compute.
(airlied: fixes DOOM hang with compute queue enabled)
Reviewed-by: Dave Airlie <[email protected]>
Signed-off-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_meta_clear.c')
-rw-r--r-- | src/amd/vulkan/radv_meta_clear.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_meta_clear.c b/src/amd/vulkan/radv_meta_clear.c index b7263dde01e..cb2aa1aa721 100644 --- a/src/amd/vulkan/radv_meta_clear.c +++ b/src/amd/vulkan/radv_meta_clear.c @@ -805,7 +805,7 @@ emit_fast_color_clear(struct radv_cmd_buffer *cmd_buffer, if (!cmd_buffer->device->allow_fast_clears) return false; - if (!radv_layout_has_cmask(iview->image, image_layout, radv_image_queue_family_mask(iview->image, cmd_buffer->queue_family_index))) + if (!radv_layout_can_fast_clear(iview->image, image_layout, radv_image_queue_family_mask(iview->image, cmd_buffer->queue_family_index))) goto fail; if (vk_format_get_blocksizebits(iview->image->vk_format) > 64) goto fail; |