1 #include "ppsspp_config.h"
2 #include "fast_math.h"
3 #include "fast_matrix.h"
4 
InitFastMath(int enableNEON)5 void InitFastMath(int enableNEON) {
6 	// Every architecture has its own define. This needs to be added to.
7 	if (enableNEON) {
8 #ifndef _MSC_VER
9 #if PPSSPP_ARCH(ARM_NEON) && !PPSSPP_ARCH(ARM64)
10 		fast_matrix_mul_4x4 = &fast_matrix_mul_4x4_neon;
11 #endif
12 #endif
13 	}
14 }
15