Skip to content

Commit ee11a45

Browse files
authored
Fix D3D12Core.dll loading problem (shader-slang#5315)
D3D12Core.dll had been copied to a wrong directory and slang has been using D3D12Core.dll from the system directory, C:\windows\system32. D3D12Core.dll has to be copied from external/slang-binaries/bin/windows-x64 to build/Release/bin/D3D12 not to build/Release/bin. The same is true for the debug build and it had to be copied to build/Debug/bin/D3D12 not build/Debug/bin. It hasn't been a problem for Release build, because the debug-layer is not enabled for Release build and it didn't cause the version mismatching problem with D3D12SDKLayers.dll. The Release build was loaded from either build/Release/bin or from C:\windows\system32, and it didn't matter which one was used. The Debug build, however, got into a problem where D3D12Core.dll was loaded from the system directory whereas D3D12SDKLayers.dll was loaded from build/Debug/bin and it failed to load D3D12.dll entirely. This caused D3D12 to be "Not supported" for "Windows/Debug" configuration. Note that our CI explicitly excludes DX12 tests for the "Windows/Debug" configuration with a command-line argument "-api all-dx12", and DX12 tests were going to be ignored anyway. The actual problem was observed when WGPU is implemented. WGPU started printing explicit errors for the load failure of D3D12.dll. See more detailed explanation: https://devblogs.microsoft.com/directx/gettingstarted-dx12agility/#d3d12sdkpath-should-not-be-the-same-directory-as-the-application-exe Closes shader-slang#5305 Closes shader-slang#5276
1 parent 2f7f48a commit ee11a45

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

CMakeLists.txt

+8
Original file line numberDiff line numberDiff line change
@@ -487,13 +487,21 @@ endif()
487487

488488
if(SLANG_ENABLE_PREBUILT_BINARIES)
489489
if(CMAKE_SYSTEM_NAME MATCHES "Windows")
490+
# DX Agility SDK requires the D3D12*.DLL files to be placed under a sub-directory, "D3D12".
491+
# https://devblogs.microsoft.com/directx/gettingstarted-dx12agility/#d3d12sdkpath-should-not-be-the-same-directory-as-the-application-exe
490492
file(GLOB prebuilt_binaries "${CMAKE_SOURCE_DIR}/external/slang-binaries/bin/windows-x64/*")
493+
file(GLOB prebuilt_d3d12_binaries "${CMAKE_SOURCE_DIR}/external/slang-binaries/bin/windows-x64/[dD]3[dD]12*")
494+
list(REMOVE_ITEM prebuilt_binaries ${prebuilt_d3d12_binaries})
491495
add_custom_target(
492496
copy-prebuilt-binaries ALL
493497
COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/$<CONFIG>/${runtime_subdir}
494498
COMMAND ${CMAKE_COMMAND} -E copy_if_different
495499
${prebuilt_binaries}
496500
${CMAKE_BINARY_DIR}/$<CONFIG>/${runtime_subdir}
501+
COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/$<CONFIG>/${runtime_subdir}/D3D12
502+
COMMAND ${CMAKE_COMMAND} -E copy_if_different
503+
${prebuilt_d3d12_binaries}
504+
${CMAKE_BINARY_DIR}/$<CONFIG>/${runtime_subdir}/D3D12
497505
VERBATIM
498506
)
499507
endif()

source/core/slang-render-api-util.cpp

-8
Original file line numberDiff line numberDiff line change
@@ -267,17 +267,9 @@ static bool _canLoadSharedLibrary(const char* libName)
267267
#if SLANG_WINDOWS_FAMILY
268268
case RenderApiType::Vulkan: return _canLoadSharedLibrary("vulkan-1") || _canLoadSharedLibrary("vk_swiftshader");
269269
case RenderApiType::WebGPU:
270-
#if _DEBUG
271-
// At the moment, some CI issue is preventing tests to run in Debug builds.
272-
// As a work-around in order to allow us to enable tests in Release builds ASSP,
273-
// we skip WebGPU tests in by returning false here.
274-
// https://github.com/shader-slang/slang/issues/5233#issuecomment-2411380030
275-
return false;
276-
#else
277270
return _canLoadSharedLibrary("webgpu_dawn") &&
278271
_canLoadSharedLibrary("dxcompiler") &&
279272
_canLoadSharedLibrary("dxil");
280-
#endif // if SLANG_DEBUG
281273
#elif SLANG_APPLE_FAMILY
282274
case RenderApiType::Vulkan: return true;
283275
case RenderApiType::Metal: return true;

tools/render-test/slang-support.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,9 @@ void ShaderCompilerUtil::Output::reset()
122122
case SLANG_SOURCE_LANGUAGE_CUDA:
123123
spAddPreprocessorDefine(slangRequest, "__CUDA__", "1");
124124
break;
125+
case SLANG_SOURCE_LANGUAGE_WGSL:
126+
spAddPreprocessorDefine(slangRequest, "__WGSL__", "1");
127+
break;
125128

126129
default:
127130
assert(!"unexpected");

tools/slang-test/slang-test-main.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -1132,7 +1132,8 @@ static SlangResult _extractRenderTestRequirements(const CommandLine& cmdLine, Te
11321132
break;
11331133
case RenderApiType::WebGPU:
11341134
target = SLANG_WGSL;
1135-
SLANG_ASSERT(!usePassthru);
1135+
nativeLanguage = SLANG_SOURCE_LANGUAGE_WGSL;
1136+
passThru = SLANG_PASS_THROUGH_TINT;
11361137
break;
11371138
}
11381139

@@ -4661,6 +4662,7 @@ SlangResult innerMain(int argc, char** argv)
46614662
for (auto& test : context.failedFileTests)
46624663
{
46634664
FileTestInfoImpl* fileTestInfo = static_cast<FileTestInfoImpl*>(test.Ptr());
4665+
TestReporter::SuiteScope suiteScope(&reporter, "tests");
46644666
TestReporter::TestScope scope(&reporter, fileTestInfo->testName);
46654667
reporter.addResult(TestResult::Fail);
46664668
}

0 commit comments

Comments
 (0)