skia2/tests/sksl/shared/ResizeMatrixNonsquare.glsl
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

15 lines
410 B
GLSL

out vec4 sk_FragColor;
uniform vec4 colorGreen;
uniform vec4 colorRed;
vec4 main() {
float result = 0.0;
result += mat3(mat2x3(1.0))[0].x;
result += mat3(mat3x2(1.0))[0].x;
result += mat4(mat4x3(mat4x2(1.0)))[0].x;
result += mat4(mat3x4(mat2x4(1.0)))[0].x;
result += mat2x4(mat4x2(1.0))[0].x;
result += mat4x2(mat2x4(1.0))[0].x;
return result == 6.0 ? colorGreen : colorRed;
}