aboutsummaryrefslogtreecommitdiff
path: root/resources/sksl/errors/MatrixToVectorCastTooSmall.rts
diff options
context:
space:
mode:
Diffstat (limited to 'resources/sksl/errors/MatrixToVectorCastTooSmall.rts')
-rw-r--r--resources/sksl/errors/MatrixToVectorCastTooSmall.rts13
1 files changed, 13 insertions, 0 deletions
diff --git a/resources/sksl/errors/MatrixToVectorCastTooSmall.rts b/resources/sksl/errors/MatrixToVectorCastTooSmall.rts
new file mode 100644
index 0000000000..fe7c891d91
--- /dev/null
+++ b/resources/sksl/errors/MatrixToVectorCastTooSmall.rts
@@ -0,0 +1,13 @@
+// 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
+
+/*%%*
+'half2x2' is not a valid parameter to 'half' constructor; use '[0][0]' instead
+'half2x2' is not a valid parameter to 'half2' constructor
+'half2x2' is not a valid parameter to 'half3' constructor
+*%%*/