Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
mesa3d
/
29285882676388aacff123e8bdf025904abf8ea9
/
.
/
src
/
glsl
/
tests
/
constructor-09.glsl
blob: 1985699b305b43bb14f0edc7dbd7f60ac2689457 [
file
] [
log
] [
blame
]
/* PASS */
uniform
int
a
;
uniform
float
b
;
uniform
bool
c
;
void
main
()
{
float
x
;
int
y
;
bool
z
;
x
=
float
(
a
);
x
=
float
(
b
);
x
=
float
(
c
);
y
=
int
(
a
);
y
=
int
(
b
);
y
=
int
(
c
);
z
=
bool
(
a
);
z
=
bool
(
b
);
z
=
bool
(
c
);
gl_Position
=
gl_Vertex
;
}