Externals: Update glslang.

This updates glslang to commit 9bb8cfffb0eed010e07132282c41d73064a7a609
which is the current version listed in the known_good.json file for the
version 1.3.212 of the Vulkan-ValidationLayers repo.
This commit is contained in:
iwubcode 2022-04-30 00:37:59 -05:00
commit 6d528a72eb
142 changed files with 26417 additions and 10676 deletions

View file

@ -61,17 +61,17 @@ EShLanguage GetShaderStage(const std::string& stage)
} else if (stage == "comp") {
return EShLangCompute;
} else if (stage == "rgen") {
return EShLangRayGenNV;
return EShLangRayGen;
} else if (stage == "rint") {
return EShLangIntersectNV;
return EShLangIntersect;
} else if (stage == "rahit") {
return EShLangAnyHitNV;
return EShLangAnyHit;
} else if (stage == "rchit") {
return EShLangClosestHitNV;
return EShLangClosestHit;
} else if (stage == "rmiss") {
return EShLangMissNV;
return EShLangMiss;
} else if (stage == "rcall") {
return EShLangCallableNV;
return EShLangCallable;
} else if (stage == "task") {
return EShLangTaskNV;
} else if (stage == "mesh") {