Files
cglm/test/src/test_tests.h
Recep Aslantas 0729fd40a4 implement vec2
2019-03-31 18:50:52 +03:00

51 lines
644 B
C

/*
* Copyright (c), Recep Aslantas.
* MIT License (MIT), http://opensource.org/licenses/MIT
*/
#ifndef test_tests_h
#define test_tests_h
/* mat4 */
void test_mat4(void **state);
/* mat3 */
void test_mat3(void **state);
/* camera */
void
test_camera_lookat(void **state);
void
test_camera_decomp(void **state);
void
test_project(void **state);
void
test_clamp(void **state);
void
test_euler(void **state);
void
test_quat(void **state);
void
test_vec4(void **state);
void
test_vec3(void **state);
void
test_affine(void **state);
void
test_bezier(void **state);
/* vec2 */
void
test_vec2(void **state);
#endif /* test_tests_h */