more vulkan init progress

This commit is contained in:
georgemoralis 2023-09-17 23:38:16 +03:00
parent f6388c367e
commit ef6da6bddb
3 changed files with 27 additions and 0 deletions

View file

@ -1,9 +1,11 @@
#pragma once
#include <types.h>
#include <vulkan/vulkan_core.h>
namespace HLE::Libs::Graphics {
struct GraphicCtx {
u32 screen_width = 0;
u32 screen_height = 0;
VkInstance m_instance = nullptr;
};
} // namespace HLE::Libs::Graphics