Skip to content

Commit 5279e11

Browse files
committed
Remove HLSLTest include directory
This just removes the HLSLTest subdirectory from the include structure.
1 parent 0359c80 commit 5279e11

File tree

17 files changed

+26
-26
lines changed

17 files changed

+26
-26
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ if (NOT HLSLTEST_ENABLE_VULKAN AND NOT HLSLTEST_ENABLE_D3D12 AND NOT APPLE)
6464
endif ()
6565

6666
configure_file(
67-
${CMAKE_CURRENT_SOURCE_DIR}/include/HLSLTest/Config.h.in
68-
${CMAKE_CURRENT_BINARY_DIR}/include/HLSLTest/Config.h)
67+
${CMAKE_CURRENT_SOURCE_DIR}/include/Config.h.in
68+
${CMAKE_CURRENT_BINARY_DIR}/include/Config.h)
6969

7070
set(DIRECTX_HEADERS_PATH ${CMAKE_CURRENT_SOURCE_DIR}/third-party/DirectX-Headers)
7171

File renamed without changes.
File renamed without changes.

include/HLSLTest/API/Device.h renamed to include/API/Device.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
#ifndef HLSLTEST_API_DEVICE_H
1313
#define HLSLTEST_API_DEVICE_H
1414

15-
#include "HLSLTest/API/API.h"
16-
#include "HLSLTest/API/Capabilities.h"
15+
#include "API/API.h"
16+
#include "API/Capabilities.h"
1717
#include "llvm/ADT/iterator_range.h"
1818
#include "llvm/ADT/StringRef.h"
1919

File renamed without changes.
File renamed without changes.
File renamed without changes.

lib/API/Capabilities.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
//
1010
//===----------------------------------------------------------------------===//
1111

12-
#include "HLSLTest/API/Capabilities.h"
12+
#include "API/Capabilities.h"
1313

1414
using namespace hlsltest;
1515

1616
char CapabilityValueBase::ID = 0;
1717
char CapabilityValueBool::ID = 0;
1818
char CapabilityValueUnsigned::ID = 0;
1919

20-
void CapabilityValueBase::anchor() {}
20+
void CapabilityValueBase::anchor() {}

lib/API/DX/DXFeatures.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#ifndef HLSLTEST_API_DXFEATURES_H
1313
#define HLSLTEST_API_DXFEATURES_H
1414

15-
#include "HLSLTest/API/Capabilities.h"
15+
#include "API/Capabilities.h"
1616
#include "llvm/ADT/ArrayRef.h"
1717

1818
namespace llvm {
@@ -44,4 +44,4 @@ template <> struct CapabilityPrinter<directx::RootSignature> {
4444

4545
} // namespace hlsltest
4646

47-
#endif // HLSLTEST_API_DXFEATURES_H
47+
#endif // HLSLTEST_API_DXFEATURES_H

lib/API/DX/Device.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
#undef min
2323

2424
#include "DXFeatures.h"
25-
#include "HLSLTest/API/Capabilities.h"
26-
#include "HLSLTest/API/Device.h"
27-
#include "HLSLTest/API/Pipeline.h"
28-
#include "HLSLTest/WinError.h"
25+
#include "API/Capabilities.h"
26+
#include "API/Device.h"
27+
#include "API/Pipeline.h"
28+
#include "WinError.h"
2929

3030
#include "llvm/ADT/SmallVector.h"
3131
#include "llvm/Support/Error.h"

0 commit comments

Comments
 (0)