xref
: /
aosp_15_r20
/
external
/
deqp-deps
/
glslang
/
Test
/
implicitArraySize.vert
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#version 460 core
2
out float a[];
3
out float c[];
4
5
void main(){
6
a[0] = 0.1;
7
c[5] = 0.1;
8
}