diff options
| author | Yong He <yonghe@outlook.com> | 2021-01-06 12:58:57 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-06 12:58:57 -0800 |
| commit | 92636513abe72d2da0c45f0e2c1235415e0671c3 (patch) | |
| tree | 234136e9d89006df9d6775e8bcd07e91ae344af7 /tools/gfx/vulkan | |
| parent | 706d4f91e269d473c963d31792fb2c8320933c9b (diff) | |
Refactor GUI/Window utils out of gfx library (#1649)
Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to 'tools/gfx/vulkan')
| -rw-r--r-- | tools/gfx/vulkan/render-vk.cpp | 2 | ||||
| -rw-r--r-- | tools/gfx/vulkan/vk-api.cpp | 2 | ||||
| -rw-r--r-- | tools/gfx/vulkan/vk-module.h | 4 | ||||
| -rw-r--r-- | tools/gfx/vulkan/vk-swap-chain.cpp | 2 | ||||
| -rw-r--r-- | tools/gfx/vulkan/vk-swap-chain.h | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/tools/gfx/vulkan/render-vk.cpp b/tools/gfx/vulkan/render-vk.cpp index 0f6e3cdaa..80393904c 100644 --- a/tools/gfx/vulkan/render-vk.cpp +++ b/tools/gfx/vulkan/render-vk.cpp @@ -5,7 +5,7 @@ #include "../render.h" #include "../render-graphics-common.h" -#include "../../source/core/slang-smart-pointer.h" +#include "core/slang-smart-pointer.h" #include "vk-api.h" #include "vk-util.h" diff --git a/tools/gfx/vulkan/vk-api.cpp b/tools/gfx/vulkan/vk-api.cpp index 50f80aa26..9b51b644c 100644 --- a/tools/gfx/vulkan/vk-api.cpp +++ b/tools/gfx/vulkan/vk-api.cpp @@ -1,7 +1,7 @@ // vk-api.cpp #include "vk-api.h" -#include "../../source/core/slang-list.h" +#include "core/slang-list.h" namespace gfx { using namespace Slang; diff --git a/tools/gfx/vulkan/vk-module.h b/tools/gfx/vulkan/vk-module.h index 4d18823ca..7ddd5da45 100644 --- a/tools/gfx/vulkan/vk-module.h +++ b/tools/gfx/vulkan/vk-module.h @@ -1,9 +1,9 @@ // vk-module.h #pragma once -#include "../../slang.h" +#include "slang.h" -#include "../../slang-com-helper.h" +#include "slang-com-helper.h" #if SLANG_WINDOWS_FAMILY # define VK_USE_PLATFORM_WIN32_KHR 1 diff --git a/tools/gfx/vulkan/vk-swap-chain.cpp b/tools/gfx/vulkan/vk-swap-chain.cpp index d9b3a495d..21460ce61 100644 --- a/tools/gfx/vulkan/vk-swap-chain.cpp +++ b/tools/gfx/vulkan/vk-swap-chain.cpp @@ -3,7 +3,7 @@ #include "vk-util.h" -#include "../../source/core/slang-list.h" +#include "core/slang-list.h" #include <stdlib.h> #include <stdio.h> diff --git a/tools/gfx/vulkan/vk-swap-chain.h b/tools/gfx/vulkan/vk-swap-chain.h index 9b4dfc2c1..893910ea6 100644 --- a/tools/gfx/vulkan/vk-swap-chain.h +++ b/tools/gfx/vulkan/vk-swap-chain.h @@ -6,7 +6,7 @@ #include "../render.h" -#include "../../source/core/slang-list.h" +#include "core/slang-list.h" namespace gfx { |
