Sign in
fuchsia
/
third_party
/
glslang
/
refs/heads/upstream/GL_EXT_buffer_reference_uvec2
/
.
/
Test
/
web.builtins.vert
blob: f27b12b259cb697f31c6d02d4e00d1354d6e3adf [
file
] [
log
] [
blame
] [
edit
]
#version 310 es
layout
(
location
=
0
)
in
mediump
float
ps
;
invariant gl_Position
;
void
main
()
{
gl_Position
=
vec4
(
ps
);
gl_Position
*=
float
(
4
-
gl_VertexIndex
);
gl_PointSize
=
ps
;
gl_PointSize
*=
float
(
5
-
gl_InstanceIndex
);
}