11 lines
270 B
C
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;
|