skia2/tests/sksl/runtime/SampleWithUniformMatrix.rte
Brian Osman 977feec5d7 Add .rte -> .skvm unit test framework
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>
2020-12-22 17:59:42 +00:00

6 lines
98 B
Plaintext

uniform shader child;
uniform float3x3 matrix;
half4 main() {
return sample(child, matrix);
}