From f6fa29295b8bf26b6e6324932c56b9824c541bcc Mon Sep 17 00:00:00 2001 From: DH Date: Thu, 17 Oct 2024 04:42:59 +0300 Subject: [PATCH] gpu: relax queue requirements --- rpcsx/gpu/lib/vk/src/vk.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/rpcsx/gpu/lib/vk/src/vk.cpp b/rpcsx/gpu/lib/vk/src/vk.cpp index 0acbe6066..48f7f7b33 100644 --- a/rpcsx/gpu/lib/vk/src/vk.cpp +++ b/rpcsx/gpu/lib/vk/src/vk.cpp @@ -539,7 +539,6 @@ void vk::Context::createDevice(VkSurfaceKHR surface, int gpuIndex, } rx::dieIf(queueFamiliesWithPresentSupport.empty(), "not found queue family with present support"); - rx::dieIf(queueFamiliesWithComputeSupport.empty(), "not found queue family with compute support"); rx::dieIf(queueFamiliesWithGraphicsSupport.empty(), "not found queue family with graphics support"); this->surface = surface;