mirror of
https://github.com/recp/cglm.git
synced 2025-12-25 12:55:04 +00:00
20 lines
303 B
C
20 lines
303 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);
|
|
|
|
#endif /* test_tests_h */
|