diff options
author | Bas Nieuwenhuizen <[email protected]> | 2020-04-29 22:35:54 +0200 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-04-29 21:03:39 +0000 |
commit | 85fe0e551fc045d03aa7739d0f1d887484ec6d12 (patch) | |
tree | c8279c725047bc8de82fe1d0a907f52afb599ea8 | |
parent | 27cafa9a5173cae48781b724da2cc5be682eac83 (diff) |
radv: Fix implicit sync with recent allocation changes.
the implicit sync flag gets set at the beginning at the function,
but I used = instead of |= later.
Fixes: bec92850270 "radv: Stop using memory type indices."
Reviewed-by: Samuel Pitoiset <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4814>
-rw-r--r-- | src/amd/vulkan/radv_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 734d3cee515..49cbee18eff 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -5200,7 +5200,7 @@ static VkResult radv_alloc_memory(struct radv_device *device, heap_index = device->physical_device->memory_properties.memoryTypes[pAllocateInfo->memoryTypeIndex].heapIndex; domain = device->physical_device->memory_domains[pAllocateInfo->memoryTypeIndex]; - flags = device->physical_device->memory_flags[pAllocateInfo->memoryTypeIndex]; + flags |= device->physical_device->memory_flags[pAllocateInfo->memoryTypeIndex]; if (!dedicate_info && !import_info && (!export_info || !export_info->handleTypes)) { flags |= RADEON_FLAG_NO_INTERPROCESS_SHARING; |