vo_gpu: vulkan: fix sharing mode on malloc'd buffers

Might explain some of the issues in multi-queue scenarios?
This commit is contained in:
Niklas Haas 2017-10-16 20:29:37 +02:00 committed by Martin Herkt
parent 5abe0bd593
commit 97b1482d53
1 changed files with 0 additions and 1 deletions

View File

@ -147,7 +147,6 @@ static struct vk_slab *slab_alloc(struct mpvk_ctx *vk, struct vk_heap *heap,
.usage = heap->usage,
.sharingMode = vk->num_pools > 1 ? VK_SHARING_MODE_CONCURRENT
: VK_SHARING_MODE_EXCLUSIVE,
.sharingMode = VK_SHARING_MODE_EXCLUSIVE,
.queueFamilyIndexCount = vk->num_pools,
.pQueueFamilyIndices = qfs,
};