1uniform half a, b, c; 2uniform half4 d, e, f; 3void main() { 4 sk_FragColor.x = faceforward(a, b, c); 5 sk_FragColor = faceforward(d, e, f); 6} 7