reimplement gnCreateOutputDevice

This commit is contained in:
Greg Wells
2025-05-23 15:01:59 -04:00
parent 273b1ad59e
commit 8744b56955
14 changed files with 43 additions and 104 deletions

View File

@@ -4,7 +4,11 @@
typedef struct gnPlatformOutputDevice_t {
VkDevice device;
VkQueue presentQueue;
VkQueue graphicsQueue;
uint32_t queueCount;
VkQueue* queues;
// VkQueue presentQueue;
// VkQueue graphicsQueue;
// VkCommandPool commandPool;
} gnPlatformOutputDevice;