skia2/resources/sksl/shared/ScalarConversionConstructorsES2.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

23 lines
534 B
Plaintext

uniform half4 colorGreen, colorRed;
half4 main() {
float f = colorGreen.g;
int i = int(colorGreen.g);
bool b = bool(colorGreen.g);
float f1 = float(f);
float f2 = float(i);
float f3 = float(b);
int i1 = int(f);
int i2 = int(i);
int i3 = int(b);
bool b1 = bool(f);
bool b2 = bool(i);
bool b3 = bool(b);
return half(f1) + half(f2) + half(f3) +
half(i1) + half(i2) + half(i3) +
half(b1) + half(b2) + half(b3) == 9 ? colorGreen : colorRed;
}