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/d3d12 | |
| 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/d3d12')
| -rw-r--r-- | tools/gfx/d3d12/circular-resource-heap-d3d12.h | 6 | ||||
| -rw-r--r-- | tools/gfx/d3d12/descriptor-heap-d3d12.h | 4 | ||||
| -rw-r--r-- | tools/gfx/d3d12/render-d3d12.cpp | 2 | ||||
| -rw-r--r-- | tools/gfx/d3d12/resource-d3d12.h | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/tools/gfx/d3d12/circular-resource-heap-d3d12.h b/tools/gfx/d3d12/circular-resource-heap-d3d12.h index bf9f412cf..7eacf9572 100644 --- a/tools/gfx/d3d12/circular-resource-heap-d3d12.h +++ b/tools/gfx/d3d12/circular-resource-heap-d3d12.h @@ -1,8 +1,8 @@ #pragma once -#include "../../slang-com-ptr.h" -#include "../../source/core/slang-list.h" -#include "../../source/core/slang-free-list.h" +#include "slang-com-ptr.h" +#include "core/slang-list.h" +#include "core/slang-free-list.h" #include "resource-d3d12.h" diff --git a/tools/gfx/d3d12/descriptor-heap-d3d12.h b/tools/gfx/d3d12/descriptor-heap-d3d12.h index a546395d8..642ff59db 100644 --- a/tools/gfx/d3d12/descriptor-heap-d3d12.h +++ b/tools/gfx/d3d12/descriptor-heap-d3d12.h @@ -4,8 +4,8 @@ #include <dxgi.h> #include <d3d12.h> -#include "../../slang-com-ptr.h" -#include "../../source/core/slang-list.h" +#include "slang-com-ptr.h" +#include "core/slang-list.h" namespace gfx { diff --git a/tools/gfx/d3d12/render-d3d12.cpp b/tools/gfx/d3d12/render-d3d12.cpp index d3f030b88..0376ee304 100644 --- a/tools/gfx/d3d12/render-d3d12.cpp +++ b/tools/gfx/d3d12/render-d3d12.cpp @@ -35,7 +35,7 @@ struct ID3D12GraphicsCommandList1 {}; # include "../nvapi/nvapi-include.h" #endif -#include "../../slang-com-ptr.h" +#include "slang-com-ptr.h" #include "../flag-combiner.h" #include "resource-d3d12.h" diff --git a/tools/gfx/d3d12/resource-d3d12.h b/tools/gfx/d3d12/resource-d3d12.h index 9e3c3262b..7a26854ff 100644 --- a/tools/gfx/d3d12/resource-d3d12.h +++ b/tools/gfx/d3d12/resource-d3d12.h @@ -10,7 +10,7 @@ #include <dxgi1_4.h> #include <d3d12.h> -#include "../../slang-com-ptr.h" +#include "slang-com-ptr.h" #include "../d3d/d3d-util.h" namespace gfx { |
