From d4316c88457a32f1169b2d7d82053ccbc05fa7ed Mon Sep 17 00:00:00 2001 From: jsmall-nvidia Date: Fri, 14 May 2021 17:50:00 -0400 Subject: FXC as DownstreamCompiler (#1844) * #include an absolute path didn't work - because paths were taken to always be relative. * WIP Fxc as downstream compiler. * First pass FXC downstream compiler working. * GCC compile fix. * Fix FXC parsing issue. * Special case filesystem access. * Use StringUtil getSlice. * Fix isses with not emitting source for FXC. * Small fixes for DXBC handling. --- source/slang/slang-check.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'source/slang/slang-check.cpp') diff --git a/source/slang/slang-check.cpp b/source/slang/slang-check.cpp index 600578297..a5701aa90 100644 --- a/source/slang/slang-check.cpp +++ b/source/slang/slang-check.cpp @@ -70,8 +70,6 @@ namespace Slang { case FuncType::Glslang_Compile_1_0: return { "glslang_compile", PassThroughMode::Glslang} ; case FuncType::Glslang_Compile_1_1: return { "glslang_compile_1_1", PassThroughMode::Glslang} ; - case FuncType::Fxc_D3DCompile: return { "D3DCompile", PassThroughMode::Fxc}; - case FuncType::Fxc_D3DDisassemble: return { "D3DDisassemble", PassThroughMode::Fxc }; case FuncType::Dxc_DxcCreateInstance: return { "DxcCreateInstance", PassThroughMode::Dxc }; default: return { nullptr, PassThroughMode::None }; } -- cgit v1.2.3