aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkXfermode.h
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-10-09 14:39:46 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-10-09 14:39:46 +0000
commitdf187c7eb27d7616b75d91f3329deb97c4cd6de2 (patch)
treea790752de88d830f71996c9a6bd75e3662b4515b /include/core/SkXfermode.h
parentc4dc0ad8e252a7e30d19b47d3d0d9f2c69faf854 (diff)
ARM Skia NEON patches - 28 - Xfermode: SIMD modeprocs
Xfermode: allow for SIMD modeprocs This patch introduces the ability to have SIMD Xfermode modeprocs. In the NEON implementation, SIMD modeprocs will process 8 pixels at a time. Signed-off-by: Kévin PETIT <kevin.petit@arm.com> BUG= Committed: http://code.google.com/p/skia/source/detail?r=11654 R=djsollen@google.com, mtklein@google.com, reed@google.com Author: kevin.petit.arm@gmail.com Review URL: https://codereview.chromium.org/23644006 git-svn-id: http://skia.googlecode.com/svn/trunk@11669 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/core/SkXfermode.h')
-rw-r--r--include/core/SkXfermode.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/core/SkXfermode.h b/include/core/SkXfermode.h
index 04f3bfe5b6..ed07bd5821 100644
--- a/include/core/SkXfermode.h
+++ b/include/core/SkXfermode.h
@@ -275,6 +275,10 @@ protected:
fProc = proc;
}
+ SkXfermodeProc getProc() const {
+ return fProc;
+ }
+
private:
SkXfermodeProc fProc;