1cb93a386Sopenharmony_ciuniform half4 colorGreen, colorRed;
2cb93a386Sopenharmony_ci
3cb93a386Sopenharmony_cihalf4 main(float2 coords) {
4cb93a386Sopenharmony_ci    float result = 0;
5cb93a386Sopenharmony_ci    float3x3 g = float3x3(float2x3(1));           result += g[0][0];
6cb93a386Sopenharmony_ci    float3x3 h = float3x3(float3x2(1));           result += h[0][0];
7cb93a386Sopenharmony_ci    float4x4 i = float4x4(float4x3(float4x2(1))); result += i[0][0];
8cb93a386Sopenharmony_ci    float4x4 j = float4x4(float3x4(float2x4(1))); result += j[0][0];
9cb93a386Sopenharmony_ci    float2x4 k = float2x4(float4x2(1));           result += k[0][0];
10cb93a386Sopenharmony_ci    float4x2 l = float4x2(float2x4(1));           result += l[0][0];
11cb93a386Sopenharmony_ci
12cb93a386Sopenharmony_ci    return result == 6 ? colorGreen : colorRed;
13cb93a386Sopenharmony_ci}
14