mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-12 01:25:55 +00:00
Fix ARM64 Android build
This commit is contained in:
parent
da97119388
commit
ea5e9f8c35
@ -310,7 +310,7 @@ ReliableHash64Func DoReliableHash64 = &XXH64;
|
||||
|
||||
// This has to be done after CPUDetect has done its magic.
|
||||
void SetupTextureDecoder() {
|
||||
#if PPSSPP_ARCH(ARM_NEON)
|
||||
#if PPSSPP_ARCH(ARM_NEON) && !PPSSPP_ARCH(ARM64)
|
||||
if (cpu_info.bNEON) {
|
||||
DoQuickTexHash = &QuickTexHashNEON;
|
||||
StableQuickTexHash = &QuickTexHashNEON;
|
||||
|
@ -58,7 +58,7 @@ typedef u32 ReliableHashType;
|
||||
#endif
|
||||
|
||||
// For ARM64, NEON is mandatory, so we also statically link.
|
||||
#elif defined(ARM64)
|
||||
#elif PPSSPP_ARCH(ARM64)
|
||||
#define DoQuickTexHash QuickTexHashNEON
|
||||
#define StableQuickTexHash QuickTexHashNEON
|
||||
#define DoUnswizzleTex16 DoUnswizzleTex16NEON
|
||||
|
Loading…
x
Reference in New Issue
Block a user