blob: c6b8803ce06ecf593b2698aa8bc1bf54a176e912 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include <vulkan/vulkan.h>
#include <stdio.h>
int main(void)
{
VkInstanceCreateInfo instance_create_info = {
VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO,
NULL,
0,
NULL,
0,
NULL,
0,
NULL,
};
// we don't actually require instance creation to succeed since
// we cannot expect test environments to have a vulkan driver installed.
// As long as this does not produce as segmentation fault or similar,
// everything's alright.
VkInstance instance;
if(vkCreateInstance(&instance_create_info, NULL, &instance) == VK_SUCCESS)
vkDestroyInstance(instance, NULL);
return 0;
}
|