From 4a0eb19698a9d303dbe3e76c144ab13a076b1993 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 28 Feb 2013 15:24:55 +0100 Subject: [PATCH] (Playbook) Add NEON sinc/audio_utils --- performance.c | 3 + playbook/.cproject | 172 ++++++++++++++++++++++++++++++++++-- playbook/.project | 10 +++ playbook/bar-descriptor.xml | 3 +- 4 files changed, 178 insertions(+), 10 deletions(-) diff --git a/performance.c b/performance.c index 5c8c4e1760..b557c22e21 100644 --- a/performance.c +++ b/performance.c @@ -224,6 +224,9 @@ void rarch_get_cpu_features(struct rarch_cpu_features *cpu) if (cpu_flags & ANDROID_CPU_ARM_FEATURE_NEON) cpu->simd |= RARCH_SIMD_NEON; + RARCH_LOG("[CPUID]: NEON: %u\n", !!(cpu->simd & RARCH_SIMD_NEON)); +#elif defined(__BLACKBERRY_QNX__) + cpu->simd |= RARCH_SIMD_NEON; RARCH_LOG("[CPUID]: NEON: %u\n", !!(cpu->simd & RARCH_SIMD_NEON)); #elif defined(__CELLOS_LV2__) cpu->simd |= RARCH_SIMD_VMX; diff --git a/playbook/.cproject b/playbook/.cproject index 3d88437cb5..570b741058 100644 --- a/playbook/.cproject +++ b/playbook/.cproject @@ -30,6 +30,8 @@