2021-07-09 16:41:55 +00:00
|
|
|
### Compilation failed:
|
|
|
|
|
2021-07-13 13:18:57 +00:00
|
|
|
error: 4: 'half3x3' is not a valid parameter to 'half' constructor; use '[0][0]' instead
|
2022-04-06 22:24:52 +00:00
|
|
|
half testScalar = half (testMatrix3x3);
|
|
|
|
^^^^^^^^^^^^^^^^^^^^
|
2021-07-09 16:41:55 +00:00
|
|
|
error: 5: 'half3x3' is not a valid parameter to 'half2' constructor
|
2022-04-06 22:24:52 +00:00
|
|
|
half2 testVec2 = half2(testMatrix3x3);
|
|
|
|
^^^^^^^^^^^^^^^^^^^^
|
2021-07-09 16:41:55 +00:00
|
|
|
error: 6: 'half3x3' is not a valid parameter to 'half3' constructor
|
2022-04-06 22:24:52 +00:00
|
|
|
half3 testVec3 = half3(testMatrix3x3);
|
|
|
|
^^^^^^^^^^^^^^^^^^^^
|
2021-07-09 16:41:55 +00:00
|
|
|
error: 7: 'half3x3' is not a valid parameter to 'half4' constructor
|
2022-04-06 22:24:52 +00:00
|
|
|
half4 testVec4 = half4(testMatrix3x3);
|
|
|
|
^^^^^^^^^^^^^^^^^^^^
|
2021-07-09 16:41:55 +00:00
|
|
|
4 errors
|