uniform half a, b, c;
uniform half4 d, e;
void main() {
sk_FragColor.x = refract(a, b, c);
sk_FragColor = refract(d, e, c);
}