vulkan : createDevice

This commit is contained in:
georgemoralis 2023-09-21 12:59:48 +03:00
parent 90dc454440
commit b1d812bb32
3 changed files with 68 additions and 6 deletions

View file

@ -7,6 +7,7 @@ struct GraphicCtx {
u32 screen_width = 0;
u32 screen_height = 0;
VkInstance m_instance = nullptr;
VkPhysicalDevice physical_device = nullptr;
VkPhysicalDevice m_physical_device = nullptr;
VkDevice m_device = nullptr;
};
} // namespace HLE::Libs::Graphics