blob: 0b32463acbe72afa79161dd8f9d8aeb5d1d40ccb [file] [log] [blame]
uniform half4 colorGreen, colorRed;
half4 main() {
float test1[4] = float[4](1, 2, 3, 4);
float2 test2[2] = float2[2](float2(1, 2), float2(3, 4));
float4x4 test3[1] = float4x4[1](float4x4(16));
return (test1[3] + test2[1][1] + test3[0][3][3] == 24) ? colorGreen : colorRed;
}