diff options
author | Dave Airlie <[email protected]> | 2017-01-31 15:18:33 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-02-02 08:25:04 +1000 |
commit | cda9f3d8ecce663b53c982236557dcd1b70a25b0 (patch) | |
tree | 3fecd565b3772b154fc5e4fbb0647e8c91d0fc80 /src/amd/vulkan/radv_meta_clear.c | |
parent | fa316ed02ff0c2c4c8121380d23f2e66ac87649f (diff) |
radv: handle VK_QUEUE_FAMILY_IGNORED in image transitions (v3)
The CTS tests at least are using this, and we were totally
ignoring it.
This hopefully fixes the bouncing multisample CTS tests.
v2: get family mask in ignored case from command buffer.
v3: only change things in one place, use logic from Bas.
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Signed-off-by: Dave Airlie <[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 957b3885939..a42e8345716 100644 --- a/src/amd/vulkan/radv_meta_clear.c +++ b/src/amd/vulkan/radv_meta_clear.c @@ -844,7 +844,7 @@ emit_fast_color_clear(struct radv_cmd_buffer *cmd_buffer, if (!(cmd_buffer->device->debug_flags & RADV_DEBUG_FAST_CLEARS)) return false; - if (!radv_layout_can_fast_clear(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, cmd_buffer->queue_family_index))) goto fail; if (vk_format_get_blocksizebits(iview->image->vk_format) > 64) goto fail; |