mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Buildfixing Move some file util files Buildfix Move KeyMap.cpp/h to Core where they belong better. libretro buildfix attempt Move ini_file More buildfixes
13 lines
310 B
C
13 lines
310 B
C
#include "fast_math.h"
|
|
#include "fast_matrix.h"
|
|
|
|
void InitFastMath(int enableNEON) {
|
|
// Every architecture has its own define. This needs to be added to.
|
|
if (enableNEON) {
|
|
#ifndef _MSC_VER
|
|
#if PPSSPP_ARCH(ARM_NEON) && !PPSSPP_ARCH(ARM64)
|
|
fast_matrix_mul_4x4 = &fast_matrix_mul_4x4_neon;
|
|
#endif
|
|
#endif
|
|
}
|
|
}
|