Files
zoom/third-party/glad/test/c/compile/vulkan/default/003/test.c

15 lines
323 B
C

/*
* Vulkan 1.0 without extensions
*
* GLAD: $GLAD --out-path=$tmp --api="vulkan=1.0" --extensions="" c --loader
* COMPILE: $GCC $test -o $tmp/test -I$tmp/include $tmp/src/vulkan.c -ldl
* RUN: $tmp/test
*/
#include <glad/vulkan.h>
int main(void) {
(void) gladLoaderLoadVulkan(NULL, NULL, NULL);
return 0;
}