X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=blobdiff_plain;f=src%2Futil%2Fu_cpu_detect.c;h=387003d6cba761762f6de8233ff76d71cb0bc94a;hp=abfea65b24d8b145590fcda1e99e7e93902b62c6;hb=7d5ad8e77e4e085d30debc832d401d1cd78fb8c3;hpb=1b9fce56c4f28a092dd1cd6a1dbe8921c442824e diff --git a/src/util/u_cpu_detect.c b/src/util/u_cpu_detect.c index abfea65b24d..387003d6cba 100644 --- a/src/util/u_cpu_detect.c +++ b/src/util/u_cpu_detect.c @@ -360,7 +360,9 @@ check_os_arm_support(void) * used. Because of this we cannot use PIPE_OS_ANDROID here, but rather * have a separate macro that only gets enabled from respective Android.mk. */ -#if defined(HAS_ANDROID_CPUFEATURES) +#if defined(__ARM_NEON) || defined(__ARM_NEON__) + util_cpu_caps.has_neon = 1; +#elif defined(HAS_ANDROID_CPUFEATURES) AndroidCpuFamily cpu_family = android_getCpuFamily(); uint64_t cpu_features = android_getCpuFeatures();