Skip to content

Commit e043f4a

Browse files
author
Greg Roth
authored
Merge pull request #5067 from pow2clk/cp-release-1.7.2212
Move WinAdapter into interface directory (#5066)
2 parents f949bca + d3baa77 commit e043f4a

36 files changed

Lines changed: 34 additions & 35 deletions

CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,6 @@ endif()
608608

609609
include_directories( ${LLVM_INCLUDE_DIR} ${LLVM_MAIN_INCLUDE_DIR})
610610

611-
include_directories( ${LLVM_MAIN_INCLUDE_DIR}/dxc/Support) # HLSL Change
612611
include_directories( ${LLVM_INCLUDE_DIR}/dxc/Tracing) # HLSL Change
613612

614613
# when crosscompiling import the executable targets from a file

include/dxc/DxilContainer/DxilContainer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include <stdint.h>
1818
#include <iterator>
1919
#include "dxc/DXIL/DxilConstants.h"
20-
#include "dxc/Support/WinAdapter.h"
20+
#include "dxc/WinAdapter.h"
2121

2222
struct IDxcContainerReflection;
2323

include/dxc/DxilContainer/DxilPipelineStateValidation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include <stdint.h>
1616
#include <cstring>
17-
#include "dxc/Support/WinAdapter.h"
17+
#include "dxc/WinAdapter.h"
1818

1919
// Don't include assert.h here.
2020
// Since this header is included from multiple environments,

include/dxc/DxilContainer/DxilRuntimeReflection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#pragma once
1313

1414
#include "dxc/DXIL/DxilConstants.h"
15-
#include "dxc/Support/WinAdapter.h"
15+
#include "dxc/WinAdapter.h"
1616

1717
#define RDAT_NULL_REF ((uint32_t)0xFFFFFFFF)
1818

include/dxc/DxilRootSignature/DxilRootSignature.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
#include <stdint.h>
1818

19-
#include "dxc/Support/WinAdapter.h"
19+
#include "dxc/WinAdapter.h"
2020
#include "dxc/DXIL/DxilConstants.h"
2121

2222
struct IDxcBlob;

include/dxc/HLSL/DxilValidation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
#include "dxc/Support/Global.h"
1515
#include "dxc/DXIL/DxilConstants.h"
16-
#include "dxc/Support/WinAdapter.h"
16+
#include "dxc/WinAdapter.h"
1717
#include <memory>
1818

1919
namespace llvm {

include/dxc/Support/Global.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ typedef _Return_type_success_(return >= 0) long HRESULT;
2727
#include <stdarg.h>
2828
#include <system_error>
2929
#include "dxc/Support/exception.h"
30-
#include "dxc/Support/WinAdapter.h"
30+
#include "dxc/WinAdapter.h"
3131

3232
///////////////////////////////////////////////////////////////////////////////
3333
// Memory allocation support.

include/dxc/Support/WinFunctions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#ifndef _WIN32
1919

20-
#include "dxc/Support/WinAdapter.h"
20+
#include "dxc/WinAdapter.h"
2121

2222
HRESULT StringCchCopyEx(LPSTR pszDest, size_t cchDest, LPCSTR pszSrc,
2323
LPSTR *ppszDestEnd, size_t *pcchRemaining, DWORD dwFlags);

include/dxc/Support/WinIncludes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ template <class T> void swap(CComHeapPtr<T> &a, CComHeapPtr<T> &b) {
5959

6060
#else // _MSC_VER
6161

62-
#include "dxc/Support/WinAdapter.h"
62+
#include "dxc/WinAdapter.h"
6363

6464
#ifdef __cplusplus
6565
// Define operator overloads to enable bit operations on enum values that are

include/dxc/Support/exception.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#pragma once
1212

1313
#include "dxc/Support/ErrorCodes.h"
14-
#include "dxc/Support/WinAdapter.h"
14+
#include "dxc/WinAdapter.h"
1515
#include <exception>
1616
#include <string>
1717

0 commit comments

Comments
 (0)