blob: c401a3fe372675fa553fc6ed8dcfb036b05c6aa3 [file] [log] [blame]
#version 450
layout(location = 0) out float vOutput;
layout(location = 0) flat in int vIndex1;
layout(location = 1) flat in int vIndex2;
const float FOO[2][3] = float[][](float[](1.0, 2.0, 3.0), float[](4.0, 5.0, 6.0));
void main()
{
vOutput = FOO[vIndex1][vIndex2];
}