Files
zoom/third-party/glad/test/c/compile/vulkan/alias/001/test.c

19 lines
384 B
C

/*
* Full Vulkan with aliasing
*
* GLAD: $GLAD --out-path=$tmp --api="vulkan" c --loader --alias
* COMPILE: $GCC $test -o $tmp/test -I$tmp/include $tmp/src/vulkan.c -ldl
* RUN: $tmp/test
*/
#include <glad/vulkan.h>
#if !defined(VK_EXT_debug_report) || !defined(VK_VERSION_1_0)
#error
#endif
int main(void) {
(void) gladLoaderLoadVulkan(NULL, NULL, NULL);
return 0;
}