| Index: src/core/Sk2x.h
|
| diff --git a/src/core/Sk2x.h b/src/core/Sk2x.h
|
| index 6b3fd86b27f6377f5e77cbb6097dd85f5af92a73..99cd45ebe80403177615e4cd4835305b690a0ae6 100644
|
| --- a/src/core/Sk2x.h
|
| +++ b/src/core/Sk2x.h
|
| @@ -13,6 +13,8 @@
|
| #define SK2X_PREAMBLE 1
|
| #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2
|
| #include "../opts/Sk2x_sse.h"
|
| + #elif defined(__ARM_NEON__)
|
| + #include "../opts/Sk2x_neon.h"
|
| #else
|
| #include "../opts/Sk2x_none.h"
|
| #endif
|
| @@ -57,6 +59,8 @@ private:
|
| #define SK2X_PRIVATE 1
|
| #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2
|
| #include "../opts/Sk2x_sse.h"
|
| + #elif defined(__ARM_NEON__)
|
| + #include "../opts/Sk2x_neon.h"
|
| #else
|
| #include "../opts/Sk2x_none.h"
|
| #endif
|
| @@ -65,6 +69,8 @@ private:
|
|
|
| #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2
|
| #include "../opts/Sk2x_sse.h"
|
| +#elif defined(__ARM_NEON__)
|
| + #include "../opts/Sk2x_neon.h"
|
| #else
|
| #include "../opts/Sk2x_none.h"
|
| #endif
|
|
|