Sign in
chromium
/
external
/
github.com
/
google
/
glslang
/
58d6905ea01f7c44652eb082d26b662ca811df25
/
.
/
Test
/
310implicitSizeArrayError.vert
blob: 7aa0ee1b729a5fbc6db5fb2656fd0bf0b22da49e [
file
] [
log
] [
blame
]
#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
];
}