#ifndef LAYER_HH_ #define LAYER_HH_ #include #include // The purpose of this file is to expose a header entry point for our layer. extern "C" { VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL LowLatency_GetInstanceProcAddr(VkInstance instance, const char* const pname); VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL LowLatency_GetDeviceProcAddr(VkDevice device, const char* pName); } namespace low_latency { static constexpr auto LAYER_NAME = "VK_LAYER_NJ3AHXAC_LowLatency"; } #endif