mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-13 05:16:55 +00:00
Add HAVE_NEON define preprocessor rule for performance.c
This commit is contained in:
parent
ee6e1fd070
commit
754601c369
2
Makefile
2
Makefile
@ -312,7 +312,7 @@ ifeq ($(HAVE_NEON),1)
|
||||
OBJ += audio/sinc_neon.o
|
||||
# When compiled without this, tries to attempt to compile sinc lerp,
|
||||
# which will error out
|
||||
DEFINES += -DSINC_LOWER_QUALITY
|
||||
DEFINES += -DSINC_LOWER_QUALITY -DHAVE_NEON
|
||||
endif
|
||||
|
||||
OBJ += audio/utils.o
|
||||
|
@ -225,7 +225,7 @@ void rarch_get_cpu_features(struct rarch_cpu_features *cpu)
|
||||
cpu->simd |= RARCH_SIMD_NEON;
|
||||
|
||||
RARCH_LOG("[CPUID]: NEON: %u\n", !!(cpu->simd & RARCH_SIMD_NEON));
|
||||
#elif defined(__BLACKBERRY_QNX__)
|
||||
#elif defined(HAVE_NEON)
|
||||
cpu->simd |= RARCH_SIMD_NEON;
|
||||
RARCH_LOG("[CPUID]: NEON: %u\n", !!(cpu->simd & RARCH_SIMD_NEON));
|
||||
#elif defined(__CELLOS_LV2__)
|
||||
|
Loading…
Reference in New Issue
Block a user