1 2out vec4 sk_FragColor; 3uniform float a; 4uniform float b; 5uniform float c; 6void main() { 7 sk_FragColor.x = ((a) * (b) + (c)); 8} 9