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
As the title says. This results in an exception
Unsigned integers are not supported on legacy ESSL.
To reproduce:
#version 310 es layout(binding = 0) uniform Foo { bool bar; } foo; void main() {}
Disabling the relevant checks in spirv_glsl.cpp showed that bar was indeed changed into a uint.
bar
uint
The text was updated successfully, but these errors were encountered:
Workaround for generating bool uniforms in ESSL1
93150ed
Fixes KhronosGroup#2223.
Successfully merging a pull request may close this issue.
As the title says. This results in an exception
To reproduce:
Disabling the relevant checks in spirv_glsl.cpp showed that
bar
was indeed changed into auint
.The text was updated successfully, but these errors were encountered: