skia2/resources/sksl/shared/ResizeMatrix.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;
float2x2 a = float2x2(float3x3(1)); result += a[0][0];
float2x2 b = float2x2(float4x4(1)); result += b[0][0];
float3x3 c = float3x3(float4x4(1)); result += c[0][0];
float3x3 d = float3x3(float2x2(1)); result += d[0][0];
float4x4 e = float4x4(float3x3(float2x2(1))); result += e[0][0];
float2x2 f = float2x2(float3x3(float4x4(1))); result += f[0][0];
return result == 6 ? colorGreen : colorRed;
}