mirror of
https://github.com/recp/cglm.git
synced 2025-12-24 20:34:58 +00:00
38 lines
494 B
C
38 lines
494 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);
|
|
|
|
/* 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);
|
|
|
|
#endif /* test_tests_h */
|