bfc9be0f77
This will allow us to load these inputs for unit testing in `dm`. Change-Id: Id256ba7c30d3ec94b98048e47af44cf9efe580d5 Bug: skia:11009 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/357282 Commit-Queue: John Stiles <johnstiles@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
25 lines
717 B
Plaintext
25 lines
717 B
Plaintext
void test_half() {
|
|
half one = 1;
|
|
half two = 2;
|
|
|
|
sk_FragColor.r = (half4(-1) == -half4(-half2(-1), half2(1))) ? 1 : 0;
|
|
sk_FragColor.g = (half4(1) != -half4(1)) ? 1 : 0;
|
|
sk_FragColor.b = (-half4(two) == half4(-two, half3(-two))) ? 1 : 0;
|
|
sk_FragColor.a = (-half2(-one, one + one) == -half2(one - two, two)) ? 1 : 0;
|
|
}
|
|
|
|
void test_int() {
|
|
int one = 1;
|
|
int two = 2;
|
|
|
|
sk_FragColor.r = (int4(-1) == -int4(-int2(-1), int2(1))) ? 1 : 0;
|
|
sk_FragColor.g = (int4(1) != -int4(1)) ? 1 : 0;
|
|
sk_FragColor.b = (-int4(two) == int4(-two, int3(-two))) ? 1 : 0;
|
|
sk_FragColor.a = (-int2(-one, one + one) == -int2(one - two, two)) ? 1 : 0;
|
|
}
|
|
|
|
void main() {
|
|
test_half();
|
|
test_int();
|
|
}
|