diff options
author | chai <chaifix@163.com> | 2019-12-04 00:07:32 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2019-12-04 00:07:32 +0800 |
commit | 2e82e2ddd0852b8063a3d6645366f53ee844e273 (patch) | |
tree | 41ec10760f2d2c9f1f782a918f48e1287da2a4b4 /src/test/test.h |
+init
Diffstat (limited to 'src/test/test.h')
-rw-r--r-- | src/test/test.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/test.h b/src/test/test.h new file mode 100644 index 0000000..4e7d77e --- /dev/null +++ b/src/test/test.h @@ -0,0 +1,15 @@ +#ifndef _SOFTSHADEROOM_TEST_H_ +#define _SOFTSHADEROOM_TEST_H_ + +#include <stdlib.h> +#include <stdio.h> +#include <string.h> + +#define print(str) printf("%s", str) +#define TEST(f) void f(){print(#f);print("\n"); +#define END } + +void test_mat4(); +void test_quat(); + +#endif
\ No newline at end of file |