Files
Gryphn/rendering_api/vulkan/src/output_device/vulkan_output_devices.h
2025-05-23 15:01:59 -04:00

15 lines
324 B
C

#pragma once
#include <vulkan/vulkan.h>
#include <core/output_device/gryphn_output_device.h>
typedef struct gnPlatformOutputDevice_t {
VkDevice device;
uint32_t queueCount;
VkQueue* queues;
// VkQueue presentQueue;
// VkQueue graphicsQueue;
// VkCommandPool commandPool;
} gnPlatformOutputDevice;