1 2out vec4 sk_FragColor; 3vec4 main() { 4 float r; 5 float g; 6 r = 0.0; 7 g = 1.0; 8 return vec4(r, g, 0.0, 1.0); 9} 10