mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
16 lines
175 B
GLSL
16 lines
175 B
GLSL
#version 460
|
|
|
|
float f;
|
|
float h3 = 3.0;
|
|
|
|
out float cout;
|
|
in float cin;
|
|
|
|
float bar()
|
|
{
|
|
h3 *= f;
|
|
float g3 = 2 * h3;
|
|
cout = g3;
|
|
return h3 + g3 + gl_FragCoord.y;
|
|
}
|