Remove requirements for dma and maybe compute on device queues

* Compute will be needed later, DMA not at all (as a hard requirement).
This commit is contained in:
baldurk
2015-09-20 22:50:34 +02:00
parent 66934cd875
commit d2e4db052c
@@ -216,7 +216,7 @@ bool WrappedVulkan::Serialise_vkCreateDevice(
bool found = false;
uint32_t qFamilyIdx = 0;
VkQueueFlags search = (VK_QUEUE_GRAPHICS_BIT | VK_QUEUE_COMPUTE_BIT | VK_QUEUE_DMA_BIT);
VkQueueFlags search = (VK_QUEUE_GRAPHICS_BIT);
// if we need to change the requested queues, it will point to this
VkDeviceQueueCreateInfo *modQueues = NULL;
@@ -342,7 +342,7 @@ VkResult WrappedVulkan::vkCreateDevice(
// find a queue that supports all capabilities, and if one doesn't exist, add it.
bool found = false;
uint32_t qFamilyIdx = 0;
VkQueueFlags search = (VK_QUEUE_GRAPHICS_BIT | VK_QUEUE_DMA_BIT);
VkQueueFlags search = (VK_QUEUE_GRAPHICS_BIT);
// if we need to change the requested queues, it will point to this
VkDeviceQueueCreateInfo *modQueues = NULL;