Vulkan-Headers/tests/vk_layer.c
Juan Ramos e8b8e06d09 headers: Remove VK_LAYER_EXPORT
- It hasn't been handling windows (so it's been half implemented)
- It's a suboptimal method for exporting symbols for vulkan layers
since `--version-script` and `.def` files exists. Both of these
methods also don't risk name mangling.
- `--version-script` also has perf benefits since you can silence
exports from code you didn't intend to export
2023-02-07 18:30:17 -07:00

6 lines
61 B
C

#include "vulkan/vk_layer.h"
int foobar()
{
return 0;
}