Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
deqp-deps
/
glslang
/
d4ed5158d11d7b125aade9f3e776587471569af7
/
.
/
Test
/
simpleFunctionCall.frag
blob: 59f0ccd58f994403df238a8a8c801abc8132e7ce [
file
] [
log
] [
blame
]
John Kessenich
2f21fcc
2015-06-17 16:15:09 +0000
[
diff
] [
blame
]
1
#version 150
2
3
uniform vec4 bigColor
;
4
varying vec4
BaseColor
;
5
uniform
float
d
;
6
7
vec4 foo
()
8
{
9
return
BaseColor
;
10
}
11
12
void
main
()
13
{
14
gl_FragColor
=
foo
();
15
}