unplugged-vendor/external/skia/resources/sksl/intrinsics/Atan.sksl

9 lines
177 B
Plaintext
Raw Permalink Normal View History

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);
}