bgfx/3rdparty/glslang/Test/spv.unit1.frag
2018-09-02 21:14:20 -07:00

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;
}