You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Against the GlslEs300 backend, the following error occurs (from glslangvalidator:
'>=' : wrong operand types: no operation '>=' exists that takes a left-hand operand of type ' temp mediump uint' and a right operand of type ' const int' (or there is no acceptable conversion)
This implies we need add am explicit cast in this scenario for this specific backend (compilation succeeds on other backends, can't test Metal).
The text was updated successfully, but these errors were encountered:
GLSL ES has been a major pain with how it handles signed-unsigned and other cross-type comparisons. It's far more strict than all of the other language targets, for whatever reason.
When compiling code such as
Against the GlslEs300 backend, the following error occurs (from
glslangvalidator
:This implies we need add am explicit cast in this scenario for this specific backend (compilation succeeds on other backends, can't test Metal).
The text was updated successfully, but these errors were encountered: