glslang/Test/spv.unit1.frag
2018-07-20 12:34:59 -06:00

16 lines
150 B
GLSL
Executable File

#version 460
float f;
float a1;
float foo();
out float cout;
void main()
{
f = 10;
float g = foo();
f += g;
f += gl_FragCoord.y;
}