Commit 55d5f2d4 by Dan Baker

HLSL: Changing SPIRV source language to unkown

parent 15c0fbee
...@@ -212,7 +212,8 @@ spv::SourceLanguage TranslateSourceLanguage(glslang::EShSource source, EProfile ...@@ -212,7 +212,8 @@ spv::SourceLanguage TranslateSourceLanguage(glslang::EShSource source, EProfile
return spv::SourceLanguageUnknown; return spv::SourceLanguageUnknown;
} }
case glslang::EShSourceHlsl: case glslang::EShSourceHlsl:
return spv::SourceLanguageHLSL; //Use SourceLanguageUnknown instead of SourceLanguageHLSL for now, until Vulkan knows what HLSL is
return spv::SourceLanguageUnknown;
default: default:
return spv::SourceLanguageUnknown; return spv::SourceLanguageUnknown;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment