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>
21 lines
1.3 KiB
Plaintext
21 lines
1.3 KiB
Plaintext
void main() {
|
|
sk_FragColor.x = float2x2(float2(1.0, 0.0), float2(0.0, 1.0)) ==
|
|
float2x2(float2(1.0, 0.0), float2(0.0, 1.0)) ? 1 : -1;
|
|
sk_FragColor.x = float2x2(float2(1.0, 0.0), float2(1.0, 1.0)) ==
|
|
float2x2(float2(1.0, 0.0), float2(0.0, 1.0)) ? 2 : -2;
|
|
sk_FragColor.x = float2x2(1) == float2x2(1) ? 3 : -3;
|
|
sk_FragColor.x = float2x2(1) == float2x2(0) ? 4 : -4;
|
|
sk_FragColor.x = float2x2(1) == float2x2(float2(1.0, 0.0), float2(0.0, 1.0)) ? 5 : -5;
|
|
sk_FragColor.x = float2x2(2) == float2x2(float2(1.0, 0.0), float2(0.0, 1.0)) ? 6 : -6;
|
|
sk_FragColor.x = float3x2(2)
|
|
== float3x2(float2(2.0, 0.0), float2(0.0, 2.0), float2(0.0)) ? 7 : -7;
|
|
sk_FragColor.x = float2x2(1) != float2x2(1) ? 8 : -8;
|
|
sk_FragColor.x = float2x2(1) != float2x2(0) ? 9 : -9;
|
|
sk_FragColor.x = float3x3(float3(1.0, 0.0, 0.0), float3(0.0, 1.0, 0.0), float3(0.0, 0.0, 0.0))
|
|
== float3x3(float2x2(1.0)) ? 10 : -10;
|
|
sk_FragColor.x = float2x2(float3x3(1.0)) == float2x2(1.0) ? 11 : -11;
|
|
sk_FragColor.x = float2x2(float4(1.0, 0.0, 0.0, 1.0)) == float2x2(1.0) ? 12 : -12;
|
|
sk_FragColor.x = float2x2(1.0, 0.0, float2(0.0, 1.0)) == float2x2(1.0) ? 13 : -13;
|
|
sk_FragColor.x = float2x2(float2(1.0, 0.0), 0.0, 1.0) == float2x2(1.0) ? 14 : -14;
|
|
}
|