1uniform half4 colorGreen;
2
3half4 main(float2 coords) {
4    for (int x = 0; x < 4; ) {
5        break;
6    }
7    return colorGreen;
8}
9