We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/google/shaderc/blob/main/libshaderc_util/src/compiler.cc#L468C10-L468C11 claims:
// The stage does not matter for preprocessing. glslang::TShader shader(EShLangVertex);
However, glslang does use the language for setting defines in https://github.com/KhronosGroup/glslang/blob/main/glslang/MachineIndependent/Versions.cpp#L642
The result of this mismatch is that GL_VERTEX_SHADER is defined for every shader.
GL_VERTEX_SHADER
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/google/shaderc/blob/main/libshaderc_util/src/compiler.cc#L468C10-L468C11 claims:
However, glslang does use the language for setting defines in https://github.com/KhronosGroup/glslang/blob/main/glslang/MachineIndependent/Versions.cpp#L642
The result of this mismatch is that
GL_VERTEX_SHADER
is defined for every shader.The text was updated successfully, but these errors were encountered: