mirror of
https://github.com/recp/cglm.git
synced 2025-12-31 12:47:05 +00:00
51 lines
644 B
C
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 */
|