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

Unified Diff: src/opts/SkOpts_neon.cpp

Issue 1264543006: Port SkXfermode opts to SkOpts.h (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 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
« no previous file with comments | « src/core/SkXfermode.cpp ('k') | src/opts/SkOpts_sse2.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/opts/SkOpts_neon.cpp
diff --git a/src/opts/SkOpts_neon.cpp b/src/opts/SkOpts_neon.cpp
index cbb247efe5667ae5d7db033aa6ec59933b750f18..775cdd4bbcea601a6ddacad61bcd0b29fc1c741e 100644
--- a/src/opts/SkOpts_neon.cpp
+++ b/src/opts/SkOpts_neon.cpp
@@ -5,8 +5,9 @@
* found in the LICENSE file.
*/
-#include "SkOpts.h"
#include "SkFloatingPoint.h"
+#include "SkOpts.h"
+#include "SkXfermode_opts.h"
namespace neon { // This helps identify methods from this file when debugging / profiling.
@@ -66,8 +67,9 @@ static void memset32(uint32_t* dst, uint32_t value, int n) {
namespace SkOpts {
void Init_neon() {
- rsqrt = neon::rsqrt;
- memset16 = neon::memset16;
- memset32 = neon::memset32;
+ rsqrt = neon::rsqrt;
+ memset16 = neon::memset16;
+ memset32 = neon::memset32;
+ create_xfermode = SkCreate4pxXfermode;
}
}
« no previous file with comments | « src/core/SkXfermode.cpp ('k') | src/opts/SkOpts_sse2.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698