We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58dc85b commit edb6b96Copy full SHA for edb6b96
1 file changed
tests/test-matrix.cpp
@@ -114,8 +114,8 @@ static void testFloatMatrices()
114
cmp(simdLeft != simdRight, true);
115
cmp(simdRight == simdLeft, false);
116
117
- cmp(multiply3x3(simdLeft, simdRight.c0), (float3x3)matLeft * (float3)matRight.c0);
118
- cmp(multiply3x3(simdRight, simdRight.c0), (float3x3)matRight * (float3)matRight.c0);
+ cmp(dot3x3(simdLeft, simdRight.c0), (float3x3)matLeft * (float3)matRight.c0);
+ cmp(dot3x3(simdRight, simdRight.c0), (float3x3)matRight * (float3)matRight.c0);
119
cmp(transpose4x4(simdLeft), transpose(matLeft));
120
cmp(transpose3x3(simdRight), transpose((float3x3)matRight));
121
cmp(inverse4x4(simdLeft), inverse(matLeft));
0 commit comments