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

14 lines
539 B
Plaintext

uniform half4 colorGreen, colorRed;
half4 main() {
float result = 0;
float3x3 g = float3x3(float2x3(1)); result += g[0][0];
float3x3 h = float3x3(float3x2(1)); result += h[0][0];
float4x4 i = float4x4(float4x3(float4x2(1))); result += i[0][0];
float4x4 j = float4x4(float3x4(float2x4(1))); result += j[0][0];
float2x4 k = float2x4(float4x2(1)); result += k[0][0];
float4x2 l = float4x2(float2x4(1)); result += l[0][0];
return result == 6 ? colorGreen : colorRed;
}