diff options
| -rw-r--r-- | demos/cube.c | 4 | ||||
| -rw-r--r-- | demos/tri.c | 4 | ||||
| -rw-r--r-- | include/vulkan/vk_layer.h | 2 | ||||
| -rwxr-xr-x | vulkan.py | 2 |
4 files changed, 4 insertions, 8 deletions
diff --git a/demos/cube.c b/demos/cube.c index 52080173..bef3b7bb 100644 --- a/demos/cube.c +++ b/demos/cube.c @@ -40,9 +40,7 @@ #endif // _WIN32 #include <vulkan/vulkan.h> - -#include "vulkan/vk_lunarg_debug_report.h" - +#include <vulkan/vk_lunarg_debug_report.h> #include <vulkan/vk_sdk_platform.h> #include "linmath.h" diff --git a/demos/tri.c b/demos/tri.c index 86b43d9f..d0f7fe34 100644 --- a/demos/tri.c +++ b/demos/tri.c @@ -45,9 +45,7 @@ #endif // _WIN32 #include <vulkan/vulkan.h> - -#include "vulkan/vk_lunarg_debug_report.h" - +#include <vulkan/vk_lunarg_debug_report.h> #define DEMO_TEXTURE_COUNT 1 #define VERTEX_BUFFER_BIND_ID 0 diff --git a/include/vulkan/vk_layer.h b/include/vulkan/vk_layer.h index 401ca866..50c574e2 100644 --- a/include/vulkan/vk_layer.h +++ b/include/vulkan/vk_layer.h @@ -5,7 +5,7 @@ #pragma once #include "vulkan/vulkan.h" -#include "vulkan/vk_lunarg_debug_report.h" +#include <vulkan/vk_lunarg_debug_report.h> #include "vulkan/vk_lunarg_debug_marker.h" #if defined(__GNUC__) && __GNUC__ >= 4 # define VK_LAYER_EXPORT __attribute__((visibility("default"))) @@ -1119,7 +1119,7 @@ ext_khr_win32_surface = Extension( ) lunarg_debug_report = Extension( name="VK_LUNARG_DEBUG_REPORT", - headers=["vk_lunarg_debug_report.h"], + headers=["vulkan/vk_lunarg_debug_report.h"], objects=[ "VkDebugReportCallbackLUNARG", ], |
