This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| struct VulkanContext_t; | |
| VulkanContext_t* VulkanContext(); | |
| void destroy(VulkanContext_t* ctx); | |
| struct VulkanDevice; | |
| VulkanDevice* device(VulkanContext_t* ctx); | |
| void submit(VulkanDevice* device, bool wait = false); | |
| void destroy(VulkanDevice* device); | |
| using u8 = unsigned char; |