| 986 | } |
| 987 | |
| 988 | static void initVulkan(void) |
| 989 | { |
| 990 | SDL_Vulkan_LoadLibrary(NULL); |
| 991 | SDL_memset(&vulkanContext, 0, sizeof(VulkanContext)); |
| 992 | loadGlobalFunctions(); |
| 993 | createInstance(); |
| 994 | loadInstanceFunctions(); |
| 995 | createSurface(); |
| 996 | findPhysicalDevice(); |
| 997 | createDevice(); |
| 998 | loadDeviceFunctions(); |
| 999 | getQueues(); |
| 1000 | createSemaphores(); |
| 1001 | createNewSwapchainAndSwapchainSpecificStuff(); |
| 1002 | } |
| 1003 | |
| 1004 | static void shutdownVulkan(void) |
| 1005 | { |
no test coverage detected