aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkPreConfig.h
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2015-04-17 06:36:53 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-04-17 06:36:53 -0700
commite5043b7ea5170a639367b67c986568907576be4b (patch)
treec684f29d1338a5a95cae502737dc1279f5d332b8 /include/core/SkPreConfig.h
parent4afe21e864bebab22ff83aeaa04b5e11fe5698a2 (diff)
Allow NEON on iOS.
I have nanobench building and running (Color32_arm_neon) on my iPad. No public API changes. TBR=reed@google.com BUG=skia: Review URL: https://codereview.chromium.org/1091823002
Diffstat (limited to 'include/core/SkPreConfig.h')
-rw-r--r--include/core/SkPreConfig.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/core/SkPreConfig.h b/include/core/SkPreConfig.h
index 745ba90f37..6c49bbd0d4 100644
--- a/include/core/SkPreConfig.h
+++ b/include/core/SkPreConfig.h
@@ -198,9 +198,7 @@
#endif
// All 64-bit ARM chips have NEON. Many 32-bit ARM chips do too.
-// TODO: Why don't we want NEON on iOS?
-#if !defined(SK_ARM_HAS_NEON) && !defined(SK_BUILD_FOR_IOS) && \
- (defined(SK_CPU_ARM64) || defined(__ARM_NEON__))
+#if !defined(SK_ARM_HAS_NEON) && (defined(SK_CPU_ARM64) || defined(__ARM_NEON__))
#define SK_ARM_HAS_NEON
#endif