mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-13 22:08:34 +00:00
Fix derp.
This commit is contained in:
parent
aa6d291707
commit
cb6ae7726a
@ -157,21 +157,21 @@ void rarch_get_cpu_features(struct rarch_cpu_features *cpu)
|
||||
if ((flags[2] & avx_flags) == avx_flags)
|
||||
cpu->simd |= RARCH_SIMD_AVX;
|
||||
|
||||
RARCH_LOG("[CPUID]: SSE: %u\n", cpu->simd & RARCH_SIMD_SSE);
|
||||
RARCH_LOG("[CPUID]: SSE2: %u\n", cpu->simd & RARCH_SIMD_SSE2);
|
||||
RARCH_LOG("[CPUID]: AVX: %u\n", cpu->simd & RARCH_SIMD_AVX);
|
||||
RARCH_LOG("[CPUID]: SSE: %u\n", !!(cpu->simd & RARCH_SIMD_SSE));
|
||||
RARCH_LOG("[CPUID]: SSE2: %u\n", !!(cpu->simd & RARCH_SIMD_SSE2));
|
||||
RARCH_LOG("[CPUID]: AVX: %u\n", !!(cpu->simd & RARCH_SIMD_AVX));
|
||||
#elif defined(ANDROID) && defined(ANDROID_ARM)
|
||||
uint64_t cpu_flags = android_getCpuFeatures();
|
||||
|
||||
if (cpu_flags & ANDROID_CPU_ARM_FEATURE_NEON)
|
||||
cpu->simd |= RARCH_SIMD_NEON;
|
||||
|
||||
RARCH_LOG("[CPUID]: NEON: %u\n", 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;
|
||||
RARCH_LOG("[CPUID]: VMX: %u\n", cpu->simd & RARCH_SIMD_VMX);
|
||||
RARCH_LOG("[CPUID]: VMX: %u\n", !!(cpu->simd & RARCH_SIMD_VMX));
|
||||
#elif defined(XBOX360)
|
||||
cpu->simd |= RARCH_SIMD_VMX128;
|
||||
RARCH_LOG("[CPUID]: VMX128: %u\n", cpu->simd & RARCH_SIMD_VMX128);
|
||||
RARCH_LOG("[CPUID]: VMX128: %u\n", !!(cpu->simd & RARCH_SIMD_VMX128));
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user