mirror of
https://github.com/libretro/RetroArch.git
synced 2025-01-22 01:07:37 +00:00
(Android) Rename sse3 to ssse3
This commit is contained in:
parent
18aa791296
commit
66c830a9a1
@ -11,7 +11,7 @@ LOCAL_ARM_MODE := arm
|
||||
endif
|
||||
|
||||
ifeq ($(TARGET_ARCH),x86)
|
||||
LOCAL_CFLAGS += -DANDROID_X86 -DHAVE_SSE3
|
||||
LOCAL_CFLAGS += -DANDROID_X86 -DHAVE_SSSE3
|
||||
endif
|
||||
|
||||
ifeq ($(TARGET_ARCH),mips)
|
||||
|
@ -154,8 +154,8 @@ void rarch_get_cpu_features(struct rarch_cpu_features *cpu)
|
||||
#if defined(ANDROID_ARM)
|
||||
cpu->neon = (cpu_flags & ANDROID_CPU_ARM_FEATURE_NEON);
|
||||
RARCH_LOG("[CPUID]: NEON: %d\n", cpu->neon);
|
||||
#elif defined(ANDROID_X86) && defined(HAVE_SSE3)
|
||||
cpu->sse3 = (cpu_flags & ANDROID_CPU_X86_FEATURE_SSSE3);
|
||||
RARCH_LOG("[CPUID]: SSE3: %d\n", cpu->sse3);
|
||||
#elif defined(ANDROID_X86) && defined(HAVE_SSSE3)
|
||||
cpu->ssse3 = (cpu_flags & ANDROID_CPU_X86_FEATURE_SSSE3);
|
||||
RARCH_LOG("[CPUID]: SSSE3: %d\n", cpu->ssse3);
|
||||
#endif
|
||||
}
|
||||
|
@ -44,7 +44,7 @@ struct rarch_cpu_features
|
||||
{
|
||||
bool sse;
|
||||
bool sse2;
|
||||
bool sse3;
|
||||
bool ssse3;
|
||||
bool vmx;
|
||||
bool avx;
|
||||
bool neon;
|
||||
|
Loading…
x
Reference in New Issue
Block a user