xref
: /
aosp_15_r20
/
external
/
deqp-deps
/
glslang
/
Test
/
implicitArraySize2.geom
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
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
}