You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
177 B

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