| 547 | #undef VULKAN_FUNCTIONS |
| 548 | |
| 549 | static void getQueues(void) |
| 550 | { |
| 551 | vkGetDeviceQueue(vulkanContext.device, |
| 552 | vulkanContext.graphicsQueueFamilyIndex, |
| 553 | 0, |
| 554 | &vulkanContext.graphicsQueue); |
| 555 | if(vulkanContext.graphicsQueueFamilyIndex != vulkanContext.presentQueueFamilyIndex) |
| 556 | vkGetDeviceQueue(vulkanContext.device, |
| 557 | vulkanContext.presentQueueFamilyIndex, |
| 558 | 0, |
| 559 | &vulkanContext.presentQueue); |
| 560 | else |
| 561 | vulkanContext.presentQueue = vulkanContext.graphicsQueue; |
| 562 | } |
| 563 | |
| 564 | static void createSemaphore(VkSemaphore *semaphore) |
| 565 | { |