mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
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;
|
||
|
}
|