Use TextureDecoderNEON funcs statically on arm64.

Not sure if they were being used before (HAVE_ARMV7...?)
This commit is contained in:
Unknown W. Brackets
2015-05-23 11:30:05 -07:00
parent 382563ff44
commit 4880c29a90
3 changed files with 20 additions and 1 deletions
+2
View File
@@ -207,9 +207,11 @@ void DoUnswizzleTex16Basic(const u8 *texptr, u32 *ydestp, int bxc, int byc, u32
}
#ifndef _M_SSE
#ifndef ARM64
QuickTexHashFunc DoQuickTexHash = &QuickTexHashBasic;
UnswizzleTex16Func DoUnswizzleTex16 = &DoUnswizzleTex16Basic;
ReliableHash32Func DoReliableHash32 = &XXH32;
#endif
ReliableHash64Func DoReliableHash64 = &XXH64;
#endif