skia2/resources/sksl/shared/NegatedVectorLiteral.sksl
John Stiles b88b4e1a12 Migrate additional SkSL tests to run in dm.
- MultipleAssignments
- NegatedVectorLiteral
- NumberCasts
- OutParams
- OutParamsTricky (disabled on GPU due to skia:11269)

Change-Id: I87dc9c5019931f3d2dc3aafbe1e02d0eee2e1a05
Bug: skia:11009, skia:11269
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/366400
Commit-Queue: John Stiles <johnstiles@google.com>
Commit-Queue: Brian Osman <brianosman@google.com>
Auto-Submit: John Stiles <johnstiles@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2021-02-04 22:12:27 +00:00

32 lines
898 B
Plaintext

uniform half4 colorGreen, colorRed;
bool test_float() {
float one = 1;
float two = 2;
float4 result;
result.r = (half4(-1) == -half4(-half2(-1), half2(1))) ? 1 : 0;
result.g = (half4(1) != -half4(1)) ? 1 : 0;
result.b = (-half4(two) == half4(-two, half3(-two))) ? 1 : 0;
result.a = (-half2(-one, one + one) == -half2(one - two, two)) ? 1 : 0;
return bool(result.r * result.g * result.b * result.a);
}
bool test_int() {
int one = 1;
int two = 2;
int4 result;
result.r = (int4(-1) == -int4(-int2(-1), int2(1))) ? 1 : 0;
result.g = (int4(1) != -int4(1)) ? 1 : 0;
result.b = (-int4(two) == int4(-two, int3(-two))) ? 1 : 0;
result.a = (-int2(-one, one + one) == -int2(one - two, two)) ? 1 : 0;
return bool(result.r * result.g * result.b * result.a);
}
half4 main() {
return test_float() && test_int() ? colorGreen : colorRed;
}