Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
mesa3d
/
b3567fc9837cf12c03fe901b01cc4878e007fe52
/
.
/
progs
/
vpglsl
/
if.glsl
blob: 174f69c19c911a5cdd89c895e9329bcd03487532 [
file
] [
log
] [
blame
]
Zack Rusin
e842b5e
2007-10-25 07:19:02 -0400
[
diff
] [
blame
]
1
2
void
main
()
{
3
gl_FrontColor
=
gl_Color
;
4
gl_Position
=
gl_Vertex
;
5
if
(
gl_Position
.
x
<
0.5
)
6
gl_FrontColor
=
vec4
(
1.0
,
0.0
,
0.0
,
1.0
);
7
}