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

Unified Diff: include/core/SkBlitRow.h

Issue 959873002: Clean up ColorRectProc plumbing. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: simpler, platform procs specialize anyway Created 5 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 | « no previous file | src/core/SkBlitRow_D32.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkBlitRow.h
diff --git a/include/core/SkBlitRow.h b/include/core/SkBlitRow.h
index eb29cfce8e0c2687c7d14de3e4bf6355dcb46c65..89aa2149139abcda2988747b87a8108a073a5672 100644
--- a/include/core/SkBlitRow.h
+++ b/include/core/SkBlitRow.h
@@ -37,7 +37,7 @@ public:
static Proc16 Factory16(unsigned flags);
- /**
+ /**
* Function pointer that blends a single src color onto a scaline of dst colors.
*
* The x,y params provide the dithering phase for the start of the scanline
@@ -78,17 +78,6 @@ public:
//! Public entry-point to return a blit function ptr
static ColorProc ColorProcFactory();
- /** Function pointer that blends a single color onto a 32-bit rectangle. */
- typedef void (*ColorRectProc)(SkPMColor dst[], int width, int height,
- size_t rowBytes, SkPMColor color);
-
- /** Blend a single color into a rectangle of D32 pixels. */
- static void ColorRect32(SkPMColor dst[], int width, int height,
- size_t rowBytes, SkPMColor color);
-
- //! Public entry-point to return a blit function ptr
- static ColorRectProc ColorRectProcFactory();
-
/** 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
« no previous file with comments | « no previous file | src/core/SkBlitRow_D32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698