1cb93a386Sopenharmony_ci
2cb93a386Sopenharmony_ciout vec4 sk_FragColor;
3cb93a386Sopenharmony_ciuniform float unknownInput;
4cb93a386Sopenharmony_civec4 main() {
5cb93a386Sopenharmony_ci    float r;
6cb93a386Sopenharmony_ci    float g;
7cb93a386Sopenharmony_ci    r = 1.0 - unknownInput;
8cb93a386Sopenharmony_ci    g = unknownInput;
9cb93a386Sopenharmony_ci    return vec4(r, g, 0.0, 1.0);
10cb93a386Sopenharmony_ci}
11