Vulkan: Remove glslang fallback

ANGLE's SPIR-V generator is battle tested by now.

Bug: angleproject:6210
Change-Id: I2ed88642e3ede435e3f906fbd701133be6873fb7
Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/4002868
Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org>
Reviewed-by: Yuly Novikov <ynovikov@chromium.org>
This commit is contained in:
Shahbaz Youssefi
2022-11-03 11:05:48 -04:00
committed by Angle LUCI CQ
parent f06382aa6b
commit 78e28cb8f7
24 changed files with 88 additions and 847 deletions

View File

@@ -90,9 +90,6 @@ int main(int argc, char *argv[])
ShShaderSpec spec = SH_GLES2_SPEC;
ShShaderOutput output = SH_ESSL_OUTPUT;
#if defined(ANGLE_ENABLE_VULKAN)
sh::InitializeGlslang();
#endif
sh::Initialize();
ShBuiltInResources resources;
@@ -437,9 +434,6 @@ int main(int argc, char *argv[])
}
sh::Finalize();
#if defined(ANGLE_ENABLE_VULKAN)
sh::FinalizeGlslang();
#endif
return failCode;
}