b0245494c6
The new test files are intended to be identical to the unit tests in every meaningful way. (Comments and formatting are not preserved exactly.) In cases where a unit-test method contained more than one test, multiple test files were created; in these cases, new names were invented to match the apparent intent of each invocation. Followup CLs will continue to migrate additional tests. Change-Id: I785c6761ba7ee2b25b5ddc0108321734be23b77c Bug: skia:10694 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/316678 Commit-Queue: John Stiles <johnstiles@google.com> Reviewed-by: Ethan Nicholas <ethannicholas@google.com> Auto-Submit: John Stiles <johnstiles@google.com>
37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
void main() {
|
|
sk_FragColor.r = 32.0 + 2.0;
|
|
sk_FragColor.r = 32.0 - 2.0;
|
|
sk_FragColor.r = 32.0 * 2.0;
|
|
sk_FragColor.r = 32.0 / 2.0;
|
|
sk_FragColor.r = (12 > 2.0) ? (10 * 2 / 5 + 18 - 3) : 0;
|
|
sk_FragColor.r = 0.0 == 0.0 ? 1 : -1;
|
|
sk_FragColor.r = 0.0 == 1.0 ? 2 : -2;
|
|
sk_FragColor.r = 0.0 != 1.0 ? 3 : -3;
|
|
sk_FragColor.r = 0.0 != 0.0 ? 4 : -4;
|
|
sk_FragColor.r = 6.0 > 5.0 ? 5 : -5;
|
|
sk_FragColor.r = 6.0 > 6.0 ? 6 : -6;
|
|
sk_FragColor.r = 6.0 >= 6.0 ? 7 : -7;
|
|
sk_FragColor.r = 6.0 >= 7.0 ? 8 : -8;
|
|
sk_FragColor.r = 5.0 < 6.0 ? 9 : -9;
|
|
sk_FragColor.r = 6.0 < 6.0 ? 10 : -10;
|
|
sk_FragColor.r = 6.0 <= 6.0 ? 11 : -11;
|
|
sk_FragColor.r = 6.0 <= 5.0 ? 12 : -12;
|
|
sk_FragColor.r = half(sqrt(1) + 0);
|
|
sk_FragColor.r = half(0 + sqrt(2));
|
|
sk_FragColor.r = half(sqrt(3) - 0);
|
|
sk_FragColor.r = half(sqrt(4) * 0);
|
|
sk_FragColor.r = half(sqrt(5) * 1);
|
|
sk_FragColor.r = half(1 * sqrt(6));
|
|
sk_FragColor.r = half(0 * sqrt(7));
|
|
sk_FragColor.r = half(sqrt(8) / 1);
|
|
sk_FragColor.r = half(0 / sqrt(9));
|
|
sk_FragColor.r += 1;
|
|
sk_FragColor.r += 0;
|
|
sk_FragColor.r -= 1;
|
|
sk_FragColor.r -= 0;
|
|
sk_FragColor.r *= 1;
|
|
sk_FragColor.r *= 2;
|
|
sk_FragColor.r /= 1;
|
|
sk_FragColor.r /= 2;
|
|
}
|