Skip to content

Commit e7ec854

Browse files
committed
address Tex non-header changes
1 parent 7f7dc30 commit e7ec854

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

include/dxc/Support/dxcapi.extval.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ class DxcDllExtValidationSupport : public dxc::DxcDllSupport {
55
// DxcDllExtValidationSupport manages the
66
// lifetime of dxcompiler.dll, while the member, m_DxilSupport,
77
// manages the lifetime of dxil.dll
8-
dxc::DxcDllSupport m_DxilSupport;
8+
dxc::DxcDllSupport DxilSupport;
99

1010
std::string DxilDllPath;
1111
// override DxcDllSupport's implementation of InitializeInternal,
1212
// adding the environment variable value check for a path to a dxil.dll
1313

14-
std::string GetDxilDLLPathExt() { return DxilDllPath; }
15-
bool DxilDllSuccessfullyLoaded() {
16-
return !DxilDllPath.empty() && !m_DxilSupport.IsEnabled();
14+
std::string GetDxilDllPath() { return DxilDllPath; }
15+
bool DxilDllFailedToLoad() {
16+
return !DxilDllPath.empty() && !DxilSupport.IsEnabled();
1717
}
1818

1919
HRESULT InitializeInternal(LPCSTR dllName, LPCSTR fnName);

include/dxc/Support/dxcapi.use.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class DxcDllSupport {
133133
return hr;
134134
}
135135

136-
bool virtual HasCreateWithMalloc() const { return m_createFn2 != nullptr; }
136+
bool HasCreateWithMalloc() const { return m_createFn2 != nullptr; }
137137

138138
bool IsEnabled() const { return m_dll != nullptr; }
139139

lib/DxcSupport/dxcapi.extval.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ HRESULT DxcDllExtValidationSupport::InitializeInternal(LPCSTR dllName,
3737
// to see if dxil.dll is successfully loaded.
3838
// the CheckDxilDLLLoaded function can determine whether there were any
3939
// problems loading dxil.dll or not
40-
m_DxilSupport.InitializeForDll(DllPathStr.data(), fnName);
40+
DxilSupport.InitializeForDll(DllPathStr.data(), fnName);
4141

4242
return S_OK;
4343
}

0 commit comments

Comments
 (0)