Files
Gryphn/rendering_api/vulkan/src/output_device/vulkan_output_devices.h
2025-05-23 11:49:34 -04:00

11 lines
270 B
C

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