mirror of
https://github.com/guezoloic/t3dsr.git
synced 2026-01-25 10:34:23 +00:00
feat(tests_vec3f): add vec3 tests
This commit is contained in:
16
tests/tests_config.c
Normal file
16
tests/tests_config.c
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user