skia2/resources/sksl/shared/SwizzleBoolConstants.sksl
John Stiles d437478348 Migrate even more SkSL tests to run in dm.
- ResizeMatrix
- ScalarConversionConstructorsES2
- StackingVectorCasts
- StaticIf
- SwizzleBoolConstants

Non-ES2 compatible tests:

- ResizeMatrixNonsquare
- ScalarConversionConstructorsES3

Newly discovered bugs:
- skia:11278 SPIR-V does not support casting non-square matrices

Change-Id: I7feb78f0380d0a9cb328ec61f96a364ad1281432
Bug: skia:11009, skia:11278
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/366408
Commit-Queue: Brian Osman <brianosman@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
Auto-Submit: John Stiles <johnstiles@google.com>
2021-02-05 16:04:43 +00:00

35 lines
865 B
Plaintext

uniform half4 colorGreen, colorRed;
half4 main() {
bool4 v = bool4(colorGreen.g);
bool4 result;
result = bool4(v.x, true, true, true);
result = bool4(v.xy, false, true);
result = bool4(v.x1, true, false);
result = bool4(v.0y, true, true);
result = bool4(v.xyz, true);
result = bool4(v.xy1, true);
result = bool4(v.x0z, true);
result = bool4(v.x10, false);
result = bool4(v.1yz, false);
result = bool4(v.0y1, false);
result = bool4(v.11z, false);
result = v.xyzw;
result = v.xyz1;
result = v.xy0w;
result = v.xy10;
result = v.x1zw;
result = v.x0z1;
result = v.x11w;
result = v.x101;
result = v.1yzw;
result = v.0yz1;
result = v.0y1w;
result = v.1y11;
result = v.00zw;
result = v.00z1;
result = v.011w;
return any(result) ? colorGreen : colorRed;
}