mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-11 00:25:41 +12:00
Fix graphics queue assignment
Copy-paste error
This commit is contained in:
parent
d26789571c
commit
17101e9bb9
1 changed files with 1 additions and 1 deletions
|
@ -513,7 +513,7 @@ void RendererVK::initGraphicsContext(SDL_Window* window) {
|
|||
VULKAN_HPP_DEFAULT_DISPATCHER.init(device.get());
|
||||
|
||||
presentQueue = device->getQueue(presentQueueFamily, 0);
|
||||
graphicsQueue = device->getQueue(presentQueueFamily, 0);
|
||||
graphicsQueue = device->getQueue(graphicsQueueFamily, 0);
|
||||
computeQueue = device->getQueue(computeQueueFamily, 0);
|
||||
transferQueue = device->getQueue(transferQueueFamily, 0);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue