Sign in
chromium
/
external
/
github.com
/
KhronosGroup
/
glslang.git
/
HEAD
/
.
/
Test
/
implicitArraySize.vert
blob: 93e7495bfb6898c8ccf4deca5d4dc2dd7d93b3b5 [
file
] [
log
] [
blame
]
#version 460 core
out
float
a
[];
out
float
c
[];
void
main
(){
a
[
0
]
=
0.1
;
c
[
5
]
=
0.1
;
}