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