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_private.h | |
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_private.h')
-rw-r--r-- | src/amd/vulkan/radv_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h index 57aa9ead9b7..69ff3578e34 100644 --- a/src/amd/vulkan/radv_private.h +++ b/src/amd/vulkan/radv_private.h @@ -1083,7 +1083,7 @@ bool radv_layout_can_fast_clear(const struct radv_image *image, unsigned queue_mask); -unsigned radv_image_queue_family_mask(const struct radv_image *image, int family); +unsigned radv_image_queue_family_mask(const struct radv_image *image, uint32_t family, uint32_t queue_family); static inline uint32_t radv_get_layerCount(const struct radv_image *image, |