• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Expect 4 errors
2
3const half3x3 testMatrix3x3 = half3x3(1, 2, 3, 4, 5, 6, 7, 8, 9);
4half    testScalar    = half (testMatrix3x3);
5half2   testVec2      = half2(testMatrix3x3);
6half3   testVec3      = half3(testMatrix3x3);
7half4   testVec4      = half4(testMatrix3x3);
8