Sign in
skia
/
skia
/
7e33d95f4f881f7d304ea81db39d20be4dab4416
/
.
/
resources
/
sksl
/
errors
/
MatrixToVectorCastTooSmall.sksl
blob: 328789ee20565b2fdde64d28235f0fed538775ae [
file
] [
log
] [
blame
]
// Expect 3 errors
const
half2x2 testMatrix2x2
=
half2x2
(
1
,
2
,
3
,
4
);
half testScalar
=
half
(
testMatrix2x2
);
half2 testVec2
=
half2
(
testMatrix2x2
);
half3 testVec3
=
half3
(
testMatrix2x2
);
half4 testVec4
=
half4
(
testMatrix2x2
);
// not an error