977feec5d7
Includes a handful of test cases to exercise the system Change-Id: I98e73a8bca063f475d2ddb51778e395697392ddb Reviewed-on: https://skia-review.googlesource.com/c/skia/+/346637 Reviewed-by: John Stiles <johnstiles@google.com> Commit-Queue: Brian Osman <brianosman@google.com>
7 lines
170 B
Plaintext
7 lines
170 B
Plaintext
uniform shader child;
|
|
half4 main() {
|
|
return sample(child, float3x3(2, 0, 0,
|
|
0, 1, 0,
|
|
0, 0, 1));
|
|
}
|