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