ad0571f54a
Change-Id: I8eae896f5a859b59a1ba0b29dc95d5aa070c12ae Reviewed-on: https://skia-review.googlesource.com/c/skia/+/343102 Commit-Queue: John Stiles <johnstiles@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
7 lines
135 B
Plaintext
7 lines
135 B
Plaintext
in half a, b, c;
|
|
in half4 d, e, f;
|
|
void main() {
|
|
sk_FragColor.x = faceforward(a, b, c);
|
|
sk_FragColor = faceforward(d, e, f);
|
|
}
|