Initial implementation of struct type vec4s

This commit is contained in:
acoto87
2019-04-03 22:25:49 -06:00
parent 674e05213a
commit c25469829a
8 changed files with 178 additions and 29 deletions

View File

@@ -44,9 +44,11 @@ test_quat(void **state) {
test_assert_mat4_eq2(inRot, outRot, 0.000009); /* almost equal */
/* 4. test SSE mul and raw mul */
#if defined( __SSE__ ) || defined( __SSE2__ )
test_quat_mul_raw(inQuat, outQuat, q3);
glm_quat_mul_sse2(inQuat, outQuat, q4);
test_assert_quat_eq(q3, q4);
#endif
}
/* 5. test lookat */