xref
: /
third_party
/
glslang
/
Test
/
implicitArraySize2.geom
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
only in
/third_party/glslang/Test/
1
#version 460 core
2
3
in float g[][3];
4
out float o[];
5
6
void f(){
7
o[1] = g[1][1];
8
}