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

Unified Diff: src/opts/SkOpts_neon.cpp

Issue 1680743005: NEON Optimized RGBA->PMColor sampling in SkSwizzler (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Share implementations for sampleSize 4 and 8 Created 4 years, 10 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/SkOpts.cpp ('k') | src/opts/SkOpts_ssse3.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 80fb4e93d01b840ac2f8418f90d07db6ee246e1f..c4bf93a062064f88342ff7c149b099afd44884cf 100644
--- a/src/opts/SkOpts_neon.cpp
+++ b/src/opts/SkOpts_neon.cpp
@@ -57,5 +57,11 @@ namespace SkOpts {
grayA_to_rgbA = sk_neon::grayA_to_rgbA;
inverted_CMYK_to_RGB1 = sk_neon::inverted_CMYK_to_RGB1;
inverted_CMYK_to_BGR1 = sk_neon::inverted_CMYK_to_BGR1;
+ RGBA_to_rgbA_sample2 = sk_neon::RGBA_to_rgbA_sample2;
+ RGBA_to_bgrA_sample2 = sk_neon::RGBA_to_bgrA_sample2;
+ RGBA_to_rgbA_sample4 = sk_neon::RGBA_to_rgbA_sample4;
+ RGBA_to_bgrA_sample4 = sk_neon::RGBA_to_bgrA_sample4;
+ RGBA_to_rgbA_sample8 = sk_neon::RGBA_to_rgbA_sample8;
+ RGBA_to_bgrA_sample8 = sk_neon::RGBA_to_bgrA_sample8;
}
}
« no previous file with comments | « src/core/SkOpts.cpp ('k') | src/opts/SkOpts_ssse3.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698