mirror of https://github.com/FreeRDP/FreeRDP
primitives: renamed NEON detection function
This commit is contained in:
parent
22cc6341a6
commit
e819223939
|
@ -150,7 +150,7 @@ static void set_hints(primitives_hints_t* hints)
|
|||
|
||||
#elif defined(_M_ARM)
|
||||
|
||||
static UINT32 androidNeon(void)
|
||||
static UINT32 getNeonSupport(void)
|
||||
{
|
||||
#ifdef __ANDROID__
|
||||
if (android_getCpuFamily() != ANDROID_CPU_FAMILY_ARM) return 0;
|
||||
|
@ -174,7 +174,7 @@ static UINT32 androidNeon(void)
|
|||
static void set_hints(primitives_hints_t* hints)
|
||||
{
|
||||
/* ARM: TODO */
|
||||
hints->arm_flags |= androidNeon();
|
||||
hints->arm_flags |= getNeonSupport();
|
||||
}
|
||||
|
||||
#else
|
||||
|
|
Loading…
Reference in New Issue