feat(tests_vec3f): add vec3 tests

This commit is contained in:
2025-07-02 12:43:42 +02:00
parent a77d9bf585
commit 8b14924da3
7 changed files with 327 additions and 321 deletions

16
tests/tests_config.c Normal file
View File

@@ -0,0 +1,16 @@
#include "../src/math/mconfig.h"
#include <stdio.h>
void config() {
#if defined (SIMD_X86)
printf("SIMD enabled: X86\n");
#elif defined (SIMD_ARCH)
printf("SIMD enabled: ARCH\n");
#else
printf("SIMD disabled\n");
#endif
}
int main() {
config();
}