Sign in
flutter
/
third_party
/
glslang
/
b53185b34e298b112153b630f1b49ed3a36fcfb2
/
.
/
Test
/
implicitArraySize.frag
blob: ca3eeb3ffed543315d2da82b3144a042d21df1a6 [
file
]
#version 460 core
in
float
a
[];
in
float
c
[
3
];
out
float
b
[
5
];
void
main
(){
b
[
0
]
=
a
[
1
];
b
[
1
]
=
c
[
1
];
}