vk_layer: Include vukan_core.h instead of vulkan.h

vulkan.h pulls in system headers we don't need

closes #313
This commit is contained in:
Juan Ramos 2022-12-20 15:21:10 -07:00 committed by Juan Ramos
parent 43946b0feb
commit fc90b60663

View file

@ -26,7 +26,8 @@
*/
#pragma once
#include "vulkan.h"
#include "vulkan_core.h"
#if defined(__GNUC__) && __GNUC__ >= 4
#define VK_LAYER_EXPORT __attribute__((visibility("default")))
#elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)