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

Unified Diff: include/private/SkNx.h

Issue 2133413002: try to speed-up maprect + round2i + contains (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add dox Created 4 years, 5 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
Index: include/private/SkNx.h
diff --git a/src/core/SkNx.h b/include/private/SkNx.h
similarity index 99%
rename from src/core/SkNx.h
rename to include/private/SkNx.h
index d0c7f41f1cd1b4b3b8a7e64b4b8fc9a4c6d43408..8d1b29dfaab9a484fed1382e23da82c8effeaf33 100644
--- a/src/core/SkNx.h
+++ b/include/private/SkNx.h
@@ -296,9 +296,9 @@ typedef SkNx<4, int> Sk4i;
// Include platform specific specializations if available.
#if !defined(SKNX_NO_SIMD) && SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2
- #include "../opts/SkNx_sse.h"
+ #include "SkNx_sse.h"
#elif !defined(SKNX_NO_SIMD) && defined(SK_ARM_HAS_NEON)
- #include "../opts/SkNx_neon.h"
+ #include "SkNx_neon.h"
#endif
SI void Sk4f_ToBytes(uint8_t p[16], const Sk4f& a, const Sk4f& b, const Sk4f& c, const Sk4f& d) {
« no previous file with comments | « include/core/SkRect.h ('k') | include/private/SkNx_neon.h » ('j') | include/private/SkNx_sse.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698