mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-25 21:41:03 +00:00
- remove compute and sparse requirements as we use neither
This commit is contained in:
parent
6db231596f
commit
e823d5da52
1 changed files with 1 additions and 1 deletions
|
@ -313,7 +313,7 @@ void VulkanDevice::selectPhysicalDevice()
|
|||
for (const auto& queueFamily : queueFamilies)
|
||||
{
|
||||
// Only accept a decent GPU for now..
|
||||
VkQueueFlags gpuFlags = (VK_QUEUE_GRAPHICS_BIT | VK_QUEUE_COMPUTE_BIT | VK_QUEUE_TRANSFER_BIT | VK_QUEUE_SPARSE_BINDING_BIT);
|
||||
VkQueueFlags gpuFlags = (VK_QUEUE_GRAPHICS_BIT | VK_QUEUE_TRANSFER_BIT);
|
||||
if (queueFamily.queueCount > 0 && (queueFamily.queueFlags & gpuFlags) == gpuFlags)
|
||||
{
|
||||
graphicsFamily = i;
|
||||
|
|
Loading…
Reference in a new issue