aboutsummaryrefslogtreecommitdiff
path: root/Test/implicitArraySize.frag
blob: ca3eeb3ffed543315d2da82b3144a042d21df1a6 (plain)
1
2
3
4
5
6
7
8
9
#version 460 core
in float a[];
in float c[3];
out float b[5];

void main(){
  b[0] = a[1];
  b[1] = c[1];
}