skia2/resources/sksl/intrinsics/Determinant.sksl

10 lines
355 B
Plaintext
Raw Normal View History

uniform float2x2 testMatrix2x2;
uniform half4 colorGreen, colorRed;
half4 main(float2 coords) {
return (determinant(testMatrix2x2) == -2 &&
determinant(half3x3(1, 2, 3, 4, 5, 6, 7, 8, 10)) == -3 &&
determinant(float4x4(1, 2, 3, 4, 5, 7, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17)) == -16)
? colorGreen : colorRed;
}