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

Side by Side Diff: skia/sgl/SkBlitRow.h

Issue 113827: Remove the remainder of the skia source code from the Chromium repo.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « skia/sgl/SkBlitBWMaskTemplate.h ('k') | skia/sgl/SkBlitRow_D16.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef SkBlitRow_DEFINED
2 #define SkBlitRow_DEFINED
3
4 #include "SkBitmap.h"
5 #include "SkColor.h"
6
7 class SkBlitRow {
8 public:
9 enum {
10 kGlobalAlpha_Flag = 0x01,
11 kSrcPixelAlpha_Flag = 0x02,
12 kDither_Flag = 0x04
13 };
14
15 typedef void (*Proc)(uint16_t* SK_RESTRICT dst,
16 const SkPMColor* SK_RESTRICT src,
17 int count, U8CPU alpha, int x, int y);
18
19 static Proc Factory(unsigned flags, SkBitmap::Config);
20 };
21
22 #endif
OLDNEW
« no previous file with comments | « skia/sgl/SkBlitBWMaskTemplate.h ('k') | skia/sgl/SkBlitRow_D16.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698