GN_EXT_QUEUES done, untested

This commit is contained in:
Greg Wells
2025-07-16 19:52:12 -04:00
parent 4746e07c9d
commit 29a2818643
6 changed files with 28 additions and 6 deletions

View File

@@ -1,12 +1,15 @@
#include "vulkan_loader.h"
#include "extensions/queues/vulkan_device_queues.h"
#include <submit/vulkan_submit.h>
#include <present/vulkan_present.h>
gnQueueExtFunctions loadVulkanQueueFunctions() {
return (gnQueueExtFunctions) {
._gnGetPhysicalDeviceQueueProperties = vulkanPhysicalDeviceQueueProperties,
._gnQueueSubmit = vulkanSubmitQueue,
._gnQueueSubmitSync = vulkanSubmitSyncQueue,
._gnGetDeviceQueue = getVulkanDeviceQueue
._gnGetDeviceQueue = getVulkanDeviceQueue,
._gnQueuePresent = vulkanQueuePresent,
._gnQueuePresentSync = vulkanQueuePresentSync
};
}