diff options
author | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-10-08 16:47:22 +0000 |
---|---|---|
committer | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-10-08 16:47:22 +0000 |
commit | 84cc1ebc5a4789e93e23c65eb4014ef5b8b0bab4 (patch) | |
tree | 1eea25467cd3d7998dec8615e57fed7269fc4834 /include/core | |
parent | 80f3fcd2554c39987323946306ff32273164ea6a (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=
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@11654 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/core')
-rw-r--r-- | include/core/SkXfermode.h | 4 |
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; |