Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
mesa3d
/
b3567fc9837cf12c03fe901b01cc4878e007fe52
/
.
/
progs
/
vpglsl
/
nestedswizzle.glsl
blob: a3adb3dfeb2cf851f06ba8b7e5759fab30df0a16 [
file
] [
log
] [
blame
]
Zack Rusin
1d26e9c
2007-10-25 07:52:59 -0400
[
diff
] [
blame
]
1
2
void
main
()
{
3
gl_Position
=
gl_Vertex
;
4
gl_FrontColor
=
gl_Color
;
5
if
(
gl_Position
.
x
<
0.5
)
{
6
gl_FrontColor
.
y
=
1.0
;
7
}
8
gl_FrontColor
.
xzw
=
vec3
(
0
,
0
,
1
);
9
}