Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/sgl/device/device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Device::Device(const DeviceDesc& desc)

// Setup path for slang's downstream compilers.
for (SlangPassThrough pass_through :
{SLANG_PASS_THROUGH_DXC, SLANG_PASS_THROUGH_GLSLANG, SLANG_PASS_THROUGH_SPIRV_OPT}) {
{SLANG_PASS_THROUGH_DXC, SLANG_PASS_THROUGH_GLSLANG, SLANG_PASS_THROUGH_SPIRV_OPT, SLANG_PASS_THROUGH_SPIRV_DIS}) {
m_global_session->setDownstreamCompilerPath(pass_through, platform::runtime_directory().string().c_str());
}

Expand Down
Loading