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

Unified Diff: src/core/Sk4x.h

Issue 1021713004: Reorg Sk4x to match the pattern of SkPMFloat. (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 | « no previous file | src/core/Sk4x_neon.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/Sk4x.h
diff --git a/src/core/Sk4x.h b/src/core/Sk4x.h
index 401bbd857b1ce176c3820ecb8d87f0a15180019c..a53b97559bf5f26096ff09cb156221b699a95230 100644
--- a/src/core/Sk4x.h
+++ b/src/core/Sk4x.h
@@ -5,11 +5,11 @@
#define SK4X_PREAMBLE 1
#if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2
- #include "Sk4x_sse.h"
+ #include "../opts/Sk4x_sse.h"
#elif defined(SK_ARM_HAS_NEON)
- #include "Sk4x_neon.h"
+ #include "../opts/Sk4x_neon.h"
#else
- #include "Sk4x_portable.h"
+ #include "../opts/Sk4x_none.h"
#endif
#undef SK4X_PREAMBLE
@@ -94,21 +94,21 @@ private:
#define SK4X_PRIVATE 1
#if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2
- #include "Sk4x_sse.h"
+ #include "../opts/Sk4x_sse.h"
#elif defined(SK_ARM_HAS_NEON)
- #include "Sk4x_neon.h"
+ #include "../opts/Sk4x_neon.h"
#else
- #include "Sk4x_portable.h"
+ #include "../opts/Sk4x_none.h"
#endif
#undef SK4X_PRIVATE
};
#if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2
- #include "Sk4x_sse.h"
+ #include "../opts/Sk4x_sse.h"
#elif defined(SK_ARM_HAS_NEON)
- #include "Sk4x_neon.h"
+ #include "../opts/Sk4x_neon.h"
#else
- #include "Sk4x_portable.h"
+ #include "../opts/Sk4x_none.h"
#endif
#endif//Sk4x_DEFINED
« no previous file with comments | « no previous file | src/core/Sk4x_neon.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698