Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(659)

Unified Diff: src/core/Sk2x.h

Issue 1028523003: Revert of Specialize Sk2d for ARM64 (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/core/SkPreConfig.h ('k') | src/core/SkPMFloat.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/Sk2x.h
diff --git a/src/core/Sk2x.h b/src/core/Sk2x.h
index 588915620bd9d3f369bda4c5b2576dca44b2221f..910476efd7ea75dfbdc1d8a136fcc8dc55b75cad 100644
--- a/src/core/Sk2x.h
+++ b/src/core/Sk2x.h
@@ -14,7 +14,7 @@
#define SK2X_PREAMBLE 1
#if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2 && !defined(SKNX_NO_SIMD)
#include "../opts/Sk2x_sse.h"
- #elif defined(SK_ARM_HAS_NEON) && !defined(SKNX_NO_SIMD)
+ #elif defined(__ARM_NEON__) && !defined(SKNX_NO_SIMD)
#include "../opts/Sk2x_neon.h"
#else
#include "../opts/Sk2x_none.h"
@@ -68,7 +68,7 @@
#define SK2X_PRIVATE 1
#if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2 && !defined(SKNX_NO_SIMD)
#include "../opts/Sk2x_sse.h"
- #elif defined(SK_ARM_HAS_NEON) && !defined(SKNX_NO_SIMD)
+ #elif defined(__ARM_NEON__) && !defined(SKNX_NO_SIMD)
#include "../opts/Sk2x_neon.h"
#else
#include "../opts/Sk2x_none.h"
@@ -78,7 +78,7 @@
#if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2 && !defined(SKNX_NO_SIMD)
#include "../opts/Sk2x_sse.h"
-#elif defined(SK_ARM_HAS_NEON) && !defined(SKNX_NO_SIMD)
+#elif defined(__ARM_NEON__) && !defined(SKNX_NO_SIMD)
#include "../opts/Sk2x_neon.h"
#else
#include "../opts/Sk2x_none.h"
« no previous file with comments | « include/core/SkPreConfig.h ('k') | src/core/SkPMFloat.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698