commit
e95ba1ada5
5 changed files with 117 additions and 2 deletions
@ -0,0 +1,7 @@ |
||||
project('vulkan test', 'c') |
||||
|
||||
vulkan_dep = dependency('vulkan') |
||||
|
||||
e = executable('vulkanprog', 'vulkanprog.c', dependencies : vulkan_dep) |
||||
|
||||
test('vulkantest', e) |
@ -0,0 +1,26 @@ |
||||
#include <vulkan/vulkan.h> |
||||
#include <stdio.h> |
||||
|
||||
int main() |
||||
{ |
||||
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;
|
||||
} |
Loading…
Reference in new issue