blob: ddc5816bdcba1ce03a8fd4a42ec868e3a22d7390 [file] [log] [blame]
uniform half4 colorRed, colorGreen;
bool test() {
bool ok = true;
ok = ok && (float3x2(2) == float3x2(float2(2.0, 0.0), float2(0.0, 2.0), float2(0.0)));
return ok;
}
half4 main() {
return test() ? colorGreen : colorRed;
}