diff options
| author | Courtney Goeltzenleuchter <courtneygo@google.com> | 2015-12-09 14:33:56 -0700 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2015-12-17 11:20:07 -0700 |
| commit | 43b34d53611f139021c063fe2fa098f30bdbb6cb (patch) | |
| tree | 8c0bf48b7551b1bdb1b0c0afb12fb4d349161d74 | |
| parent | 35f1d09e28ed8773b92eeb6ff7c2ed234f3f2c58 (diff) | |
| download | usermoji-43b34d53611f139021c063fe2fa098f30bdbb6cb.tar.xz | |
debug_report: rename vk_lunarg_debug_report.h
| -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", ], |
