mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
16 lines
150 B
GLSL
16 lines
150 B
GLSL
#version 460
|
|
|
|
float f;
|
|
float a1;
|
|
|
|
float foo();
|
|
|
|
out float cout;
|
|
|
|
void main()
|
|
{
|
|
f = 10;
|
|
float g = foo();
|
|
f += g;
|
|
f += gl_FragCoord.y;
|
|
} |