blob: 1d181555e0bd882652e5c199e2a8b34c4c30d540 [file] [log] [blame]
robertphillips@google.com9241e332013-08-21 13:54:44 +00001
2/*
3 * Copyright 2013 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9#ifndef SkBitmapDevice_DEFINED
10#define SkBitmapDevice_DEFINED
11
12#include "SkDevice.h"
13
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000014///////////////////////////////////////////////////////////////////////////////
15class SK_API SkBitmapDevice : public SkBaseDevice {
16public:
17 SK_DECLARE_INST_COUNT(SkBitmapDevice)
18
19 /**
20 * Construct a new device with the specified bitmap as its backend. It is
21 * valid for the bitmap to have no pixels associated with it. In that case,
22 * any drawing to this device will have no effect.
23 */
24 SkBitmapDevice(const SkBitmap& bitmap);
25
26 /**
27 * Construct a new device with the specified bitmap as its backend. It is
28 * valid for the bitmap to have no pixels associated with it. In that case,
29 * any drawing to this device will have no effect.
30 */
31 SkBitmapDevice(const SkBitmap& bitmap, const SkDeviceProperties& deviceProperties);
32
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000033#ifdef SK_SUPPORT_LEGACY_COMPATIBLEDEVICE_CONFIG
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000034 /**
35 * Create a new raster device and have the pixels be automatically
36 * allocated. The rowBytes of the device will be computed automatically
37 * based on the config and the width.
38 *
39 * @param config The desired config for the pixels. If the request cannot
40 * be met, the closest matching support config will be used.
41 * @param width width (in pixels) of the device
42 * @param height height (in pixels) of the device
43 * @param isOpaque Set to true if it is known that all of the pixels will
44 * be drawn to opaquely. Used as an accelerator when drawing
45 * these pixels to another device.
46 */
47 SkBitmapDevice(SkBitmap::Config config, int width, int height, bool isOpaque = false);
48
49 /**
50 * Create a new raster device and have the pixels be automatically
51 * allocated. The rowBytes of the device will be computed automatically
52 * based on the config and the width.
53 *
54 * @param config The desired config for the pixels. If the request cannot
55 * be met, the closest matching support config will be used.
56 * @param width width (in pixels) of the device
57 * @param height height (in pixels) of the device
58 * @param isOpaque Set to true if it is known that all of the pixels will
59 * be drawn to opaquely. Used as an accelerator when drawing
60 * these pixels to another device.
61 * @param deviceProperties Properties which affect compositing.
62 */
63 SkBitmapDevice(SkBitmap::Config config, int width, int height, bool isOpaque,
64 const SkDeviceProperties& deviceProperties);
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000065#endif
66 static SkBitmapDevice* Create(const SkImageInfo&,
67 const SkDeviceProperties* = NULL);
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000068
69 virtual uint32_t getDeviceCapabilities() SK_OVERRIDE { return 0; }
70
71 /** Return the width of the device (in pixels).
72 */
73 virtual int width() const SK_OVERRIDE { return fBitmap.width(); }
74 /** Return the height of the device (in pixels).
75 */
76 virtual int height() const SK_OVERRIDE { return fBitmap.height(); }
77
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000078 /** Returns true if the device's bitmap's config treats every pixels as
79 implicitly opaque.
80 */
81 virtual bool isOpaque() const SK_OVERRIDE { return fBitmap.isOpaque(); }
82
83 /** Return the bitmap config of the device's pixels
84 */
reed@google.com44699382013-10-31 17:28:30 +000085 virtual SkBitmap::Config config() const SK_OVERRIDE { return fBitmap.config(); }
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000086
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +000087 virtual SkImageInfo imageInfo() const SK_OVERRIDE;
88
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000089 /**
90 * DEPRECATED: This will be made protected once WebKit stops using it.
91 * Instead use Canvas' writePixels method.
92 *
93 * Similar to draw sprite, this method will copy the pixels in bitmap onto
94 * the device, with the top/left corner specified by (x, y). The pixel
95 * values in the device are completely replaced: there is no blending.
96 *
97 * Currently if bitmap is backed by a texture this is a no-op. This may be
98 * relaxed in the future.
99 *
100 * If the bitmap has config kARGB_8888_Config then the config8888 param
101 * will determines how the pixel valuess are intepreted. If the bitmap is
102 * not kARGB_8888_Config then this parameter is ignored.
103 */
104 virtual void writePixels(const SkBitmap& bitmap, int x, int y,
105 SkCanvas::Config8888 config8888) SK_OVERRIDE;
106
107 /**
108 * Return the device's associated gpu render target, or NULL.
109 */
110 virtual GrRenderTarget* accessRenderTarget() SK_OVERRIDE { return NULL; }
111
112protected:
113 /**
114 * Device may filter the text flags for drawing text here. If it wants to
115 * make a change to the specified values, it should write them into the
116 * textflags parameter (output) and return true. If the paint is fine as
117 * is, then ignore the textflags parameter and return false.
118 *
119 * The baseclass SkDevice filters based on its depth and blitters.
120 */
121 virtual bool filterTextFlags(const SkPaint& paint, TextFlags*) SK_OVERRIDE;
122
123 /** Clears the entire device to the specified color (including alpha).
124 * Ignores the clip.
125 */
126 virtual void clear(SkColor color) SK_OVERRIDE;
127
128 /** These are called inside the per-device-layer loop for each draw call.
129 When these are called, we have already applied any saveLayer operations,
130 and are handling any looping from the paint, and any effects from the
131 DrawFilter.
132 */
133 virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE;
134 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count,
135 const SkPoint[], const SkPaint& paint) SK_OVERRIDE;
136 virtual void drawRect(const SkDraw&, const SkRect& r,
137 const SkPaint& paint) SK_OVERRIDE;
138 virtual void drawOval(const SkDraw&, const SkRect& oval,
139 const SkPaint& paint) SK_OVERRIDE;
140 virtual void drawRRect(const SkDraw&, const SkRRect& rr,
141 const SkPaint& paint) SK_OVERRIDE;
142
143 /**
144 * If pathIsMutable, then the implementation is allowed to cast path to a
145 * non-const pointer and modify it in place (as an optimization). Canvas
146 * may do this to implement helpers such as drawOval, by placing a temp
147 * path on the stack to hold the representation of the oval.
148 *
149 * If prePathMatrix is not null, it should logically be applied before any
150 * stroking or other effects. If there are no effects on the paint that
151 * affect the geometry/rasterization, then the pre matrix can just be
152 * pre-concated with the current matrix.
153 */
154 virtual void drawPath(const SkDraw&, const SkPath& path,
155 const SkPaint& paint,
156 const SkMatrix* prePathMatrix = NULL,
157 bool pathIsMutable = false) SK_OVERRIDE;
158 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
159 const SkMatrix& matrix, const SkPaint& paint) SK_OVERRIDE;
160 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
161 int x, int y, const SkPaint& paint) SK_OVERRIDE;
162
163 /**
164 * The default impl. will create a bitmap-shader from the bitmap,
165 * and call drawRect with it.
166 */
167 virtual void drawBitmapRect(const SkDraw&, const SkBitmap&,
168 const SkRect* srcOrNull, const SkRect& dst,
169 const SkPaint& paint,
170 SkCanvas::DrawBitmapRectFlags flags) SK_OVERRIDE;
171
172 /**
173 * Does not handle text decoration.
174 * Decorations (underline and stike-thru) will be handled by SkCanvas.
175 */
176 virtual void drawText(const SkDraw&, const void* text, size_t len,
177 SkScalar x, SkScalar y, const SkPaint& paint) SK_OVERRIDE;
178 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
179 const SkScalar pos[], SkScalar constY,
180 int scalarsPerPos, const SkPaint& paint) SK_OVERRIDE;
181 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len,
182 const SkPath& path, const SkMatrix* matrix,
183 const SkPaint& paint) SK_OVERRIDE;
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000184 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
185 const SkPoint verts[], const SkPoint texs[],
186 const SkColor colors[], SkXfermode* xmode,
187 const uint16_t indices[], int indexCount,
188 const SkPaint& paint) SK_OVERRIDE;
189 /** The SkBaseDevice passed will be an SkBaseDevice which was returned by a call to
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000190 onCreateDevice on this device with kSaveLayer_Usage.
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000191 */
192 virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y,
193 const SkPaint&) SK_OVERRIDE;
194
195 ///////////////////////////////////////////////////////////////////////////
196
197 /** Update as needed the pixel value in the bitmap, so that the caller can
198 access the pixels directly. Note: only the pixels field should be
199 altered. The config/width/height/rowbytes must remain unchanged.
200 @return the device contents as a bitmap
201 */
202 virtual const SkBitmap& onAccessBitmap() SK_OVERRIDE;
203
204 SkPixelRef* getPixelRef() const { return fBitmap.pixelRef(); }
205 // just for subclasses, to assign a custom pixelref
reed@google.com672588b2014-01-08 15:42:01 +0000206 SkPixelRef* setPixelRef(SkPixelRef* pr) {
207 fBitmap.setPixelRef(pr);
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000208 return pr;
209 }
210
211 /**
212 * Implements readPixels API. The caller will ensure that:
213 * 1. bitmap has pixel config kARGB_8888_Config.
214 * 2. bitmap has pixels.
215 * 3. The rectangle (x, y, x + bitmap->width(), y + bitmap->height()) is
216 * contained in the device bounds.
217 */
218 virtual bool onReadPixels(const SkBitmap& bitmap,
219 int x, int y,
220 SkCanvas::Config8888 config8888) SK_OVERRIDE;
221
222 /** Called when this device is installed into a Canvas. Balanced by a call
223 to unlockPixels() when the device is removed from a Canvas.
224 */
225 virtual void lockPixels() SK_OVERRIDE;
226 virtual void unlockPixels() SK_OVERRIDE;
227
228 /**
229 * Returns true if the device allows processing of this imagefilter. If
230 * false is returned, then the filter is ignored. This may happen for
231 * some subclasses that do not support pixel manipulations after drawing
232 * has occurred (e.g. printing). The default implementation returns true.
233 */
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +0000234 virtual bool allowImageFilter(const SkImageFilter*) SK_OVERRIDE;
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000235
236 /**
237 * Override and return true for filters that the device can handle
238 * intrinsically. Doing so means that SkCanvas will pass-through this
239 * filter to drawSprite and drawDevice (and potentially filterImage).
240 * Returning false means the SkCanvas will have apply the filter itself,
241 * and just pass the resulting image to the device.
242 */
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +0000243 virtual bool canHandleImageFilter(const SkImageFilter*) SK_OVERRIDE;
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000244
245 /**
246 * Related (but not required) to canHandleImageFilter, this method returns
247 * true if the device could apply the filter to the src bitmap and return
248 * the result (and updates offset as needed).
249 * If the device does not recognize or support this filter,
250 * it just returns false and leaves result and offset unchanged.
251 */
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +0000252 virtual bool filterImage(const SkImageFilter*, const SkBitmap&, const SkMatrix&,
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000253 SkBitmap* result, SkIPoint* offset) SK_OVERRIDE;
254
255private:
256 friend class SkCanvas;
257 friend struct DeviceCM; //for setMatrixClip
258 friend class SkDraw;
259 friend class SkDrawIter;
260 friend class SkDeviceFilteredPaint;
261 friend class SkDeviceImageFilterProxy;
262
263 friend class SkSurface_Raster;
264
265 // used to change the backend's pixels (and possibly config/rowbytes)
266 // but cannot change the width/height, so there should be no change to
267 // any clip information.
268 virtual void replaceBitmapBackendForRasterSurface(const SkBitmap&) SK_OVERRIDE;
269
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000270#ifdef SK_SUPPORT_LEGACY_COMPATIBLEDEVICE_CONFIG
271 // in support of legacy constructors
272 void init(SkBitmap::Config config, int width, int height, bool isOpaque);
273#endif
274
275 virtual SkBaseDevice* onCreateDevice(const SkImageInfo&, Usage) SK_OVERRIDE;
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000276
277 /** Causes any deferred drawing to the device to be completed.
278 */
279 virtual void flush() SK_OVERRIDE {}
280
reed@google.com76f10a32014-02-05 15:32:21 +0000281 virtual SkSurface* newSurface(const SkImageInfo&) SK_OVERRIDE;
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000282 virtual const void* peekPixels(SkImageInfo*, size_t* rowBytes) SK_OVERRIDE;
reed@google.com76f10a32014-02-05 15:32:21 +0000283
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000284 SkBitmap fBitmap;
285
286 typedef SkBaseDevice INHERITED;
287};
robertphillips@google.com9241e332013-08-21 13:54:44 +0000288
289#endif // SkBitmapDevice_DEFINED