aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkBlitRow.h
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2015-04-27 15:11:01 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-04-27 15:11:01 -0700
commit95cc012ccaea20f372893ae277ea0a8a6339d094 (patch)
tree557e5cb1abf62de88ad763a9f2001f3702b7d722 /include/core/SkBlitRow.h
parent641c3ff7c680ef7935d47d2e68f8301acc79e3de (diff)
De-proc Color32
Also strips SK_SUPPORT_LEGACY_COLOR32_MATH, which is no longer needed. Seems handy to have SkTypes include the relevant intrinsics when we know we've got them, but I'm not married to it. Locally this looks like a pointlessly small perf win, but I'm mostly keen to get all the code together. BUG=skia: Committed: https://skia.googlesource.com/skia/+/376e9bc206b69d9190f38dfebb132a8769bbd72b Committed: https://skia.googlesource.com/skia/+/d65dc0cedd5b50dd407b6ff8fdc39123f11511cc CQ_EXTRA_TRYBOTS=client.skia.compile:Build-Ubuntu-GCC-Mips-Debug-Android-Trybot Review URL: https://codereview.chromium.org/1104183004
Diffstat (limited to 'include/core/SkBlitRow.h')
-rw-r--r--include/core/SkBlitRow.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/core/SkBlitRow.h b/include/core/SkBlitRow.h
index 89aa214913..56121eba78 100644
--- a/include/core/SkBlitRow.h
+++ b/include/core/SkBlitRow.h
@@ -64,20 +64,12 @@ public:
static Proc32 Factory32(unsigned flags32);
- /** Function pointer that blends a single color with a row of 32-bit colors
- onto a 32-bit destination
- */
- typedef void (*ColorProc)(SkPMColor dst[], const SkPMColor src[], int count, SkPMColor color);
-
/** Blend a single color onto a row of S32 pixels, writing the result
into a row of D32 pixels. src and dst may be the same memory, but
if they are not, they may not overlap.
*/
static void Color32(SkPMColor dst[], const SkPMColor src[], int count, SkPMColor color);
- //! Public entry-point to return a blit function ptr
- static ColorProc ColorProcFactory();
-
/** These static functions are called by the Factory and Factory32
functions, and should return either NULL, or a
platform-specific function-ptr to be used in place of the
@@ -85,7 +77,6 @@ public:
*/
static Proc32 PlatformProcs32(unsigned flags);
- static ColorProc PlatformColorProc();
static Proc16 PlatformFactory565(unsigned flags);
static ColorProc16 PlatformColorFactory565(unsigned flags);