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

Side by Side Diff: src/core/SkBlitMask.h

Issue 1164373003: Revert of change SkDraw and all Blitters to use pixmap instead of bitmap (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « src/core/SkBlitBWMaskTemplate.h ('k') | src/core/SkBlitMask_D32.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkBlitMask_DEFINED 8 #ifndef SkBlitMask_DEFINED
9 #define SkBlitMask_DEFINED 9 #define SkBlitMask_DEFINED
10 10
11 #include "SkBitmap.h"
11 #include "SkColor.h" 12 #include "SkColor.h"
12 #include "SkMask.h" 13 #include "SkMask.h"
13 #include "SkPixmap.h"
14 14
15 class SkBlitMask { 15 class SkBlitMask {
16 public: 16 public:
17 /** 17 /**
18 * Returns true if the device config and mask format were supported. 18 * Returns true if the device config and mask format were supported.
19 * else return false (nothing was drawn) 19 * else return false (nothing was drawn)
20 */ 20 */
21 static bool BlitColor(const SkPixmap& device, const SkMask& mask, 21 static bool BlitColor(const SkBitmap& device, const SkMask& mask,
22 const SkIRect& clip, SkColor color); 22 const SkIRect& clip, SkColor color);
23 23
24 /** 24 /**
25 * Function pointer that blits the mask into a device (dst) colorized 25 * Function pointer that blits the mask into a device (dst) colorized
26 * by color. The number of pixels to blit is specified by width and height, 26 * by color. The number of pixels to blit is specified by width and height,
27 * but each scanline is offset by dstRB (rowbytes) and srcRB respectively. 27 * but each scanline is offset by dstRB (rowbytes) and srcRB respectively.
28 */ 28 */
29 typedef void (*ColorProc)(void* dst, size_t dstRB, 29 typedef void (*ColorProc)(void* dst, size_t dstRB,
30 const void* mask, size_t maskRB, 30 const void* mask, size_t maskRB,
31 SkColor color, int width, int height); 31 SkColor color, int width, int height);
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 static RowProc RowFactory(SkColorType, SkMask::Format, RowFlags); 81 static RowProc RowFactory(SkColorType, SkMask::Format, RowFlags);
82 82
83 /** 83 /**
84 * Return either platform specific optimized blitmask RowProc, 84 * Return either platform specific optimized blitmask RowProc,
85 * or NULL if no optimized routine is available. 85 * or NULL if no optimized routine is available.
86 */ 86 */
87 static RowProc PlatformRowProcs(SkColorType, SkMask::Format, RowFlags); 87 static RowProc PlatformRowProcs(SkColorType, SkMask::Format, RowFlags);
88 }; 88 };
89 89
90 #endif 90 #endif
OLDNEW
« no previous file with comments | « src/core/SkBlitBWMaskTemplate.h ('k') | src/core/SkBlitMask_D32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698