Sign in
fuchsia
/
third_party
/
glslang
/
e0932f676db6e816184376b0e2381344bdfe1a39
/
.
/
Test
/
310implicitSizeArrayError.vert
blob: 7aa0ee1b729a5fbc6db5fb2656fd0bf0b22da49e [
file
]
#version 310 es
layout
(
binding
=
0
)
uniform
Block
{
highp
int
a
[];
}
uni
;
layout
(
location
=
0
)
out
highp
int
o
;
void
main
()
{
o
=
uni
.
a
[
2
];
}