Sign in
chromium
/
external
/
github.com
/
google
/
glslang
/
58d6905ea01f7c44652eb082d26b662ca811df25
/
.
/
Test
/
simpleFunctionCall.frag
blob: 59f0ccd58f994403df238a8a8c801abc8132e7ce [
file
]
#version 150
uniform vec4 bigColor
;
varying vec4
BaseColor
;
uniform
float
d
;
vec4 foo
()
{
return
BaseColor
;
}
void
main
()
{
gl_FragColor
=
foo
();
}