8c595fed7c
'in' variables without locations aren't allowed. Use uniforms instead. Bug: skia:11738 Change-Id: Ic066106deb7409cff154b4be7cfb3e03a7025c7d Reviewed-on: https://skia-review.googlesource.com/c/skia/+/385000 Commit-Queue: Brian Osman <brianosman@google.com> Reviewed-by: John Stiles <johnstiles@google.com>
9 lines
177 B
Plaintext
9 lines
177 B
Plaintext
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);
|
|
}
|