blob: ea1da257b7baca75830288469fe70e56f779aac1 [file] [log] [blame]
reed@google.com58af9a62011-10-12 13:43:52 +00001/*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkBlitMask_DEFINED
9#define SkBlitMask_DEFINED
10
11#include "SkBitmap.h"
reed@google.come901b4c2011-11-14 21:56:45 +000012#include "SkColor.h"
reed@google.com58af9a62011-10-12 13:43:52 +000013#include "SkMask.h"
14
15class SkBlitMask {
16public:
17 /**
reed@google.comedb606c2011-10-18 13:56:50 +000018 * Returns true if the device config and mask format were supported.
19 * else return false (nothing was drawn)
20 */
21 static bool BlitColor(const SkBitmap& device, const SkMask& mask,
22 const SkIRect& clip, SkColor color);
23
24 /**
reed@google.com58af9a62011-10-12 13:43:52 +000025 * 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,
27 * but each scanline is offset by dstRB (rowbytes) and srcRB respectively.
28 */
reed@google.come901b4c2011-11-14 21:56:45 +000029 typedef void (*ColorProc)(void* dst, size_t dstRB,
30 const void* mask, size_t maskRB,
31 SkColor color, int width, int height);
rmistry@google.comfbfcd562012-08-23 18:09:54 +000032
tomhudson@google.comd6770e62012-02-14 16:01:15 +000033 /**
rmistry@google.comfbfcd562012-08-23 18:09:54 +000034 * Function pointer that blits a row of mask(lcd16) into a row of dst
tomhudson@google.comd6770e62012-02-14 16:01:15 +000035 * colorized by a single color. The number of pixels to blit is specified
36 * by width.
37 */
38 typedef void (*BlitLCD16RowProc)(SkPMColor dst[], const uint16_t src[],
rmistry@google.comfbfcd562012-08-23 18:09:54 +000039 SkColor color, int width,
tomhudson@google.comd6770e62012-02-14 16:01:15 +000040 SkPMColor opaqueDst);
reed@google.com58af9a62011-10-12 13:43:52 +000041
reed@google.comedb606c2011-10-18 13:56:50 +000042 /**
reed@google.come901b4c2011-11-14 21:56:45 +000043 * Function pointer that blits a row of src colors through a row of a mask
44 * onto a row of dst colors. The RowFactory that returns this function ptr
45 * will have been told the formats for the mask and the dst.
46 */
47 typedef void (*RowProc)(void* dst, const void* mask,
48 const SkPMColor* src, int width);
rmistry@google.comfbfcd562012-08-23 18:09:54 +000049
reed@google.come901b4c2011-11-14 21:56:45 +000050 /**
51 * Public entry-point to return a blitmask ColorProc.
reed@google.comedb606c2011-10-18 13:56:50 +000052 * May return NULL if config or format are not supported.
reed@google.com58af9a62011-10-12 13:43:52 +000053 */
reed@google.come901b4c2011-11-14 21:56:45 +000054 static ColorProc ColorFactory(SkBitmap::Config, SkMask::Format, SkColor);
rmistry@google.comfbfcd562012-08-23 18:09:54 +000055
reed@google.comedb606c2011-10-18 13:56:50 +000056 /**
reed@google.come901b4c2011-11-14 21:56:45 +000057 * Return either platform specific optimized blitmask ColorProc,
reed@google.comedb606c2011-10-18 13:56:50 +000058 * or NULL if no optimized routine is available.
reed@google.com58af9a62011-10-12 13:43:52 +000059 */
reed@google.come901b4c2011-11-14 21:56:45 +000060 static ColorProc PlatformColorProcs(SkBitmap::Config, SkMask::Format, SkColor);
rmistry@google.comfbfcd562012-08-23 18:09:54 +000061
tomhudson@google.comd6770e62012-02-14 16:01:15 +000062 /**
63 * Public entry-point to return a blitcolor BlitLCD16RowProc.
64 */
65 static BlitLCD16RowProc BlitLCD16RowFactory(bool isOpaque);
66
67 /**
68 * Return either platform specific optimized blitcolor BlitLCD16RowProc,
69 * or NULL if no optimized routine is available.
70 */
71 static BlitLCD16RowProc PlatformBlitRowProcs16(bool isOpaque);
reed@google.com1750bf12011-11-15 19:51:02 +000072
73 enum RowFlags {
74 kSrcIsOpaque_RowFlag = 1 << 0
75 };
76
77 /**
78 * Public entry-point to return a blitmask RowProc.
79 * May return NULL if config or format are not supported.
80 */
81 static RowProc RowFactory(SkBitmap::Config, SkMask::Format, RowFlags);
rmistry@google.comfbfcd562012-08-23 18:09:54 +000082
reed@google.come901b4c2011-11-14 21:56:45 +000083 /**
84 * Return either platform specific optimized blitmask RowProc,
85 * or NULL if no optimized routine is available.
86 */
reed@google.com1750bf12011-11-15 19:51:02 +000087 static RowProc PlatformRowProcs(SkBitmap::Config, SkMask::Format, RowFlags);
reed@google.com58af9a62011-10-12 13:43:52 +000088};
89
90#endif