vulkan-headers/tests/vk_layer.c
Juan Ramos 43946b0feb tests: Test Non-API headers
Ensures the non-API headers compile correctly
2022-12-20 15:15:25 -07:00

8 lines
144 B
C

#include "vulkan/vk_layer.h"
// Use helper macro intended for vulkan layers to export functions
VK_LAYER_EXPORT int foobar()
{
return 0;
}