blob: 0bb65cd47b6911af7cf7f35e706daa2febf8f25a [file] [log] [blame]
#version 460 core
in float g[][3];
out float o[];
void f(){
o[1] = g[1][1];
}