mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-12 21:20:06 +00:00
c043aadd25
- partially addresses #1209 and #1187 - only query 64-bit extension on seeing use of a 64-bit literal (was doing it for every single token) - correct HLSL acceptance of 64-bit literal syntax (still an int though) - error on overflow of 32-bit literal type
31 lines
364 B
Plaintext
31 lines
364 B
Plaintext
#version 310 es
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
float fn(float x){ return x + 4.0;}
|
|
|
|
int main(){
|
|
gl_Position = vec4(1);
|
|
gl_Position = clamp(1, 2, 3);
|
|
gl_Position = vec4(1);
|
|
gl_Position = vec4(1, 2);
|
|
gl_Position = vec4(fn(3));
|
|
[]. ++ --
|
|
+ - * % / - ! ~
|
|
<< >> < > <= >=
|
|
== !=
|
|
& ^ | && ^^ || ? :
|
|
+= -= *= /= %= <<= >>= &= |= ^=
|
|
1.2 2E10 5u - 5l f
|
|
}
|
|
|