mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
087ef770b8
* github.com/KhronosGroup/Vulkan-Loader * wip
6 lines
162 B
C
6 lines
162 B
C
#include <vulkan/vulkan_core.h>
|
|
int main() {
|
|
uint32_t version;
|
|
vkEnumerateInstanceVersion(&version);
|
|
return (version >= VK_API_VERSION_1_1) ? 0 : 1;
|
|
} |