blob: 08320bf7b45f7cfdc4cf6bc3c7065307a6821d27 [file] [log] [blame]
reed@android.com8a1c16f2008-12-17 15:59:43 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2010 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00003 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00004 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00006 */
7
8#ifndef SkDevice_DEFINED
9#define SkDevice_DEFINED
10
11#include "SkRefCnt.h"
12#include "SkBitmap.h"
13#include "SkCanvas.h"
14#include "SkColor.h"
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +000015#include "SkImageFilter.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000016
reed@google.com46799cd2011-02-22 20:56:26 +000017class SkClipStack;
reed@android.com8a1c16f2008-12-17 15:59:43 +000018class SkDraw;
19struct SkIRect;
20class SkMatrix;
reed@google.coma7d94852011-03-30 21:23:07 +000021class SkMetaData;
reed@android.com8a1c16f2008-12-17 15:59:43 +000022class SkRegion;
reede010f1c2014-09-17 10:49:38 -070023struct SkDeviceProperties;
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +000024class GrRenderTarget;
bsalomon@google.comd9f826c2011-07-18 15:25:04 +000025
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000026class SK_API SkBaseDevice : public SkRefCnt {
reed@android.com8a1c16f2008-12-17 15:59:43 +000027public:
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000028 SK_DECLARE_INST_COUNT(SkBaseDevice)
robertphillips@google.com15e9d3e2012-06-21 20:25:03 +000029
reed@google.comaf951c92011-06-16 19:10:39 +000030 /**
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000031 * Construct a new device.
reed@android.com8a1c16f2008-12-17 15:59:43 +000032 */
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000033 SkBaseDevice();
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000034 virtual ~SkBaseDevice();
reed@android.com8a1c16f2008-12-17 15:59:43 +000035
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000036 SkBaseDevice* createCompatibleDevice(const SkImageInfo&);
bsalomon@google.come97f0852011-06-17 13:10:25 +000037
bungeman@google.com88edf1e2011-08-08 19:41:56 +000038 SkMetaData& getMetaData();
39
reed@google.comd51bfa02011-08-30 15:56:11 +000040 /**
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +000041 * Return ImageInfo for this device. If the canvas is not backed by pixels
42 * (cpu or gpu), then the info's ColorType will be kUnknown_SkColorType.
43 */
44 virtual SkImageInfo imageInfo() const;
45
46 /**
reed@google.comd51bfa02011-08-30 15:56:11 +000047 * Return the bounds of the device in the coordinate space of the root
48 * canvas. The root device will have its top-left at 0,0, but other devices
49 * such as those associated with saveLayer may have a non-zero origin.
50 */
reed@google.comec3ca872013-11-13 16:02:18 +000051 void getGlobalBounds(SkIRect* bounds) const {
52 SkASSERT(bounds);
53 const SkIPoint& origin = this->getOrigin();
54 bounds->setXYWH(origin.x(), origin.y(), this->width(), this->height());
55 }
skia.committer@gmail.com73a5d532013-11-14 07:02:31 +000056
reedf252f642014-06-14 04:24:56 -070057 int width() const {
58 return this->imageInfo().width();
59 }
reed620fc602014-07-07 13:51:48 -070060
reedf252f642014-06-14 04:24:56 -070061 int height() const {
62 return this->imageInfo().height();
63 }
reed620fc602014-07-07 13:51:48 -070064
reedf252f642014-06-14 04:24:56 -070065 bool isOpaque() const {
66 return this->imageInfo().isOpaque();
67 }
skia.committer@gmail.com772c4e62013-08-30 07:01:34 +000068
reed@android.com8a1c16f2008-12-17 15:59:43 +000069 /** Return the bitmap associated with this device. Call this each time you need
70 to access the bitmap, as it notifies the subclass to perform any flushing
71 etc. before you examine the pixels.
72 @param changePixels set to true if the caller plans to change the pixels
73 @return the device's bitmap
74 */
75 const SkBitmap& accessBitmap(bool changePixels);
76
commit-bot@chromium.org4ef54f82014-03-17 17:03:18 +000077 bool writePixels(const SkImageInfo&, const void*, size_t rowBytes, int x, int y);
reed@android.com8a1c16f2008-12-17 15:59:43 +000078
reed@google.com9c135db2014-03-12 18:28:35 +000079 void* accessPixels(SkImageInfo* info, size_t* rowBytes);
80
bsalomon@google.comd9f826c2011-07-18 15:25:04 +000081 /**
82 * Return the device's associated gpu render target, or NULL.
reed@android.comf2b98d62010-12-20 18:26:13 +000083 */
reed89443ab2014-06-27 11:34:19 -070084 virtual GrRenderTarget* accessRenderTarget() { return NULL; }
reed@android.comf2b98d62010-12-20 18:26:13 +000085
bungeman@google.com88edf1e2011-08-08 19:41:56 +000086
87 /**
88 * Return the device's origin: its offset in device coordinates from
89 * the default origin in its canvas' matrix/clip
90 */
91 const SkIPoint& getOrigin() const { return fOrigin; }
92
rmistry@google.comfbfcd562012-08-23 18:09:54 +000093 /**
robertphillips@google.com40a1ae42012-07-13 15:36:15 +000094 * onAttachToCanvas is invoked whenever a device is installed in a canvas
95 * (i.e., setDevice, saveLayer (for the new device created by the save),
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000096 * and SkCanvas' SkBaseDevice & SkBitmap -taking ctors). It allows the
robertphillips@google.com40a1ae42012-07-13 15:36:15 +000097 * devices to prepare for drawing (e.g., locking their pixels, etc.)
98 */
sugoi@google.come0e385c2013-03-11 18:50:03 +000099 virtual void onAttachToCanvas(SkCanvas*) {
bsalomon@google.com405d0f42012-08-29 21:26:13 +0000100 SkASSERT(!fAttachedToCanvas);
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000101 this->lockPixels();
102#ifdef SK_DEBUG
103 fAttachedToCanvas = true;
104#endif
105 };
106
107 /**
108 * onDetachFromCanvas notifies a device that it will no longer be drawn to.
109 * It gives the device a chance to clean up (e.g., unlock its pixels). It
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000110 * is invoked from setDevice (for the displaced device), restore and
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000111 * possibly from SkCanvas' dtor.
112 */
113 virtual void onDetachFromCanvas() {
bsalomon@google.com405d0f42012-08-29 21:26:13 +0000114 SkASSERT(fAttachedToCanvas);
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000115 this->unlockPixels();
116#ifdef SK_DEBUG
117 fAttachedToCanvas = false;
118#endif
119 };
120
caryclark@google.comd53f7c22012-01-05 17:05:05 +0000121protected:
122 enum Usage {
123 kGeneral_Usage,
tomhudson@google.com1f902872012-06-01 13:15:47 +0000124 kSaveLayer_Usage // <! internal use only
caryclark@google.comd53f7c22012-01-05 17:05:05 +0000125 };
126
bungeman@google.com88edf1e2011-08-08 19:41:56 +0000127 struct TextFlags {
reed3375c802014-09-16 12:27:55 -0700128 uint32_t fFlags; // SkPaint::getFlags()
bungeman@google.com88edf1e2011-08-08 19:41:56 +0000129 };
130
131 /**
132 * Device may filter the text flags for drawing text here. If it wants to
133 * make a change to the specified values, it should write them into the
134 * textflags parameter (output) and return true. If the paint is fine as
135 * is, then ignore the textflags parameter and return false.
bungeman@google.com88edf1e2011-08-08 19:41:56 +0000136 */
reed89443ab2014-06-27 11:34:19 -0700137 virtual bool filterTextFlags(const SkPaint& paint, TextFlags*) { return false; }
bungeman@google.com88edf1e2011-08-08 19:41:56 +0000138
robertphillips@google.com3fffb2e2012-10-09 22:30:18 +0000139 /**
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000140 *
141 * DEPRECATED: This will be removed in a future change. Device subclasses
142 * should use the matrix and clip from the SkDraw passed to draw functions.
143 *
robertphillips@google.com3fffb2e2012-10-09 22:30:18 +0000144 * Called with the correct matrix and clip before this device is drawn
145 * to using those settings. If your subclass overrides this, be sure to
146 * call through to the base class as well.
147 *
148 * The clipstack is another view of the clip. It records the actual
149 * geometry that went into building the region. It is present for devices
150 * that want to parse it, but is not required: the region is a complete
151 * picture of the current clip. (i.e. if you regionize all of the geometry
152 * in the clipstack, you will arrive at an equivalent region to the one
153 * passed in).
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000154 */
155 virtual void setMatrixClip(const SkMatrix&, const SkRegion&,
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000156 const SkClipStack&) {};
robertphillips@google.com3fffb2e2012-10-09 22:30:18 +0000157
bungeman@google.com88edf1e2011-08-08 19:41:56 +0000158 /** Clears the entire device to the specified color (including alpha).
159 * Ignores the clip.
reed@android.comf2b98d62010-12-20 18:26:13 +0000160 */
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000161 virtual void clear(SkColor color) = 0;
reed@android.comf2b98d62010-12-20 18:26:13 +0000162
tfarina@chromium.org62f10482014-01-15 00:19:21 +0000163 SK_ATTR_DEPRECATED("use clear() instead")
bungeman@google.com88edf1e2011-08-08 19:41:56 +0000164 void eraseColor(SkColor eraseColor) { this->clear(eraseColor); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000165
166 /** These are called inside the per-device-layer loop for each draw call.
167 When these are called, we have already applied any saveLayer operations,
168 and are handling any looping from the paint, and any effects from the
169 DrawFilter.
170 */
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000171 virtual void drawPaint(const SkDraw&, const SkPaint& paint) = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000172 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count,
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000173 const SkPoint[], const SkPaint& paint) = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000174 virtual void drawRect(const SkDraw&, const SkRect& r,
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000175 const SkPaint& paint) = 0;
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000176 virtual void drawOval(const SkDraw&, const SkRect& oval,
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000177 const SkPaint& paint) = 0;
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000178 virtual void drawRRect(const SkDraw&, const SkRRect& rr,
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000179 const SkPaint& paint) = 0;
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000180
commit-bot@chromium.orged9806f2014-02-21 02:32:36 +0000181 // Default impl calls drawPath()
182 virtual void drawDRRect(const SkDraw&, const SkRRect& outer,
183 const SkRRect& inner, const SkPaint&);
184
reed@google.com7ff8d812011-03-25 15:08:16 +0000185 /**
186 * If pathIsMutable, then the implementation is allowed to cast path to a
187 * non-const pointer and modify it in place (as an optimization). Canvas
188 * may do this to implement helpers such as drawOval, by placing a temp
189 * path on the stack to hold the representation of the oval.
190 *
191 * If prePathMatrix is not null, it should logically be applied before any
192 * stroking or other effects. If there are no effects on the paint that
193 * affect the geometry/rasterization, then the pre matrix can just be
194 * pre-concated with the current matrix.
195 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000196 virtual void drawPath(const SkDraw&, const SkPath& path,
reed@android.comf2b98d62010-12-20 18:26:13 +0000197 const SkPaint& paint,
198 const SkMatrix* prePathMatrix = NULL,
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000199 bool pathIsMutable = false) = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000200 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000201 const SkMatrix& matrix, const SkPaint& paint) = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000202 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000203 int x, int y, const SkPaint& paint) = 0;
reed@google.com33535f32012-09-25 15:37:50 +0000204
205 /**
206 * The default impl. will create a bitmap-shader from the bitmap,
207 * and call drawRect with it.
208 */
209 virtual void drawBitmapRect(const SkDraw&, const SkBitmap&,
210 const SkRect* srcOrNull, const SkRect& dst,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000211 const SkPaint& paint,
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000212 SkCanvas::DrawBitmapRectFlags flags) = 0;
reed@google.com33535f32012-09-25 15:37:50 +0000213
bungeman@google.com52c748b2011-08-22 21:30:43 +0000214 /**
215 * Does not handle text decoration.
216 * Decorations (underline and stike-thru) will be handled by SkCanvas.
217 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000218 virtual void drawText(const SkDraw&, const void* text, size_t len,
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000219 SkScalar x, SkScalar y, const SkPaint& paint) = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000220 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
221 const SkScalar pos[], SkScalar constY,
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000222 int scalarsPerPos, const SkPaint& paint) = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000223 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len,
224 const SkPath& path, const SkMatrix* matrix,
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000225 const SkPaint& paint) = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000226 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
227 const SkPoint verts[], const SkPoint texs[],
228 const SkColor colors[], SkXfermode* xmode,
229 const uint16_t indices[], int indexCount,
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000230 const SkPaint& paint) = 0;
fmalitaaa1b9122014-08-28 14:32:24 -0700231 // default implementation unrolls the blob runs.
232 virtual void drawTextBlob(const SkDraw&, const SkTextBlob*, SkScalar x, SkScalar y,
233 const SkPaint& paint);
dandovecfff212014-08-04 10:02:00 -0700234 // default implementation calls drawVertices
dandovb3c9d1c2014-08-12 08:34:29 -0700235 virtual void drawPatch(const SkDraw&, const SkPoint cubics[12], const SkColor colors[4],
236 const SkPoint texCoords[4], SkXfermode* xmode, const SkPaint& paint);
robertphillips@google.com9b051a32013-08-20 20:06:40 +0000237 /** The SkDevice passed will be an SkDevice which was returned by a call to
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000238 onCreateDevice on this device with kSaveLayer_Usage.
bungeman@google.com88edf1e2011-08-08 19:41:56 +0000239 */
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000240 virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y,
241 const SkPaint&) = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000242
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000243 bool readPixels(const SkImageInfo&, void* dst, size_t rowBytes, int x, int y);
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000244
reed@google.com3636ed52011-01-25 23:50:57 +0000245 ///////////////////////////////////////////////////////////////////////////
246
junov@chromium.org1f9767c2012-02-07 16:27:57 +0000247 /** Update as needed the pixel value in the bitmap, so that the caller can
skia.committer@gmail.com772c4e62013-08-30 07:01:34 +0000248 access the pixels directly.
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000249 @return The device contents as a bitmap
reed@android.com8a1c16f2008-12-17 15:59:43 +0000250 */
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000251 virtual const SkBitmap& onAccessBitmap() = 0;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000252
robertphillips@google.com07f81a52013-09-17 12:26:23 +0000253 /** Called when this device is installed into a Canvas. Balanced by a call
bungeman@google.com88edf1e2011-08-08 19:41:56 +0000254 to unlockPixels() when the device is removed from a Canvas.
255 */
reed89443ab2014-06-27 11:34:19 -0700256 virtual void lockPixels() {}
257 virtual void unlockPixels() {}
bungeman@google.com88edf1e2011-08-08 19:41:56 +0000258
reed@google.com76dd2772012-01-05 21:15:07 +0000259 /**
reed@google.comb55deeb2012-01-06 14:43:09 +0000260 * Returns true if the device allows processing of this imagefilter. If
261 * false is returned, then the filter is ignored. This may happen for
262 * some subclasses that do not support pixel manipulations after drawing
263 * has occurred (e.g. printing). The default implementation returns true.
264 */
reed89443ab2014-06-27 11:34:19 -0700265 virtual bool allowImageFilter(const SkImageFilter*) { return true; }
reed@google.comb55deeb2012-01-06 14:43:09 +0000266
267 /**
reed@google.com8926b162012-03-23 15:36:36 +0000268 * Override and return true for filters that the device can handle
269 * intrinsically. Doing so means that SkCanvas will pass-through this
270 * filter to drawSprite and drawDevice (and potentially filterImage).
271 * Returning false means the SkCanvas will have apply the filter itself,
272 * and just pass the resulting image to the device.
reed@google.com76dd2772012-01-05 21:15:07 +0000273 */
reed89443ab2014-06-27 11:34:19 -0700274 virtual bool canHandleImageFilter(const SkImageFilter*) { return false; }
reed@google.com8926b162012-03-23 15:36:36 +0000275
276 /**
277 * Related (but not required) to canHandleImageFilter, this method returns
278 * true if the device could apply the filter to the src bitmap and return
279 * the result (and updates offset as needed).
280 * If the device does not recognize or support this filter,
281 * it just returns false and leaves result and offset unchanged.
282 */
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +0000283 virtual bool filterImage(const SkImageFilter*, const SkBitmap&,
284 const SkImageFilter::Context& ctx,
reed89443ab2014-06-27 11:34:19 -0700285 SkBitmap* result, SkIPoint* offset) {
286 return false;
287 }
robertphillips@google.com9b051a32013-08-20 20:06:40 +0000288
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +0000289protected:
reed@google.com76f10a32014-02-05 15:32:21 +0000290 // default impl returns NULL
reed3716fd02014-09-21 09:39:55 -0700291 virtual SkSurface* newSurface(const SkImageInfo&, const SkSurfaceProps&);
skia.committer@gmail.com02d6f542014-02-14 03:02:05 +0000292
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000293 // default impl returns NULL
294 virtual const void* peekPixels(SkImageInfo*, size_t* rowBytes);
skia.committer@gmail.com02d6f542014-02-14 03:02:05 +0000295
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +0000296 /**
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000297 * The caller is responsible for "pre-clipping" the dst. The impl can assume that the dst
298 * image at the specified x,y offset will fit within the device's bounds.
299 *
300 * This is explicitly asserted in readPixels(), the public way to call this.
301 */
302 virtual bool onReadPixels(const SkImageInfo&, void*, size_t, int x, int y);
commit-bot@chromium.org2cccf832014-03-12 03:04:08 +0000303
304 /**
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000305 * The caller is responsible for "pre-clipping" the src. The impl can assume that the src
306 * image at the specified x,y offset will fit within the device's bounds.
307 *
308 * This is explicitly asserted in writePixelsDirect(), the public way to call this.
309 */
310 virtual bool onWritePixels(const SkImageInfo&, const void*, size_t, int x, int y);
311
312 /**
reed@google.com9c135db2014-03-12 18:28:35 +0000313 * Default impl returns NULL.
314 */
315 virtual void* onAccessPixels(SkImageInfo* info, size_t* rowBytes);
316
317 /**
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +0000318 * Leaky properties are those which the device should be applying but it isn't.
319 * These properties will be applied by the draw, when and as it can.
320 * If the device does handle a property, that property should be set to the identity value
321 * for that property, effectively making it non-leaky.
322 */
reede010f1c2014-09-17 10:49:38 -0700323 const SkDeviceProperties& getLeakyProperties() const {
324 return *fLeakyProperties;
325 }
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +0000326
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000327 /**
328 * PRIVATE / EXPERIMENTAL -- do not call
329 * Construct an acceleration object and attach it to 'picture'
330 */
robertphillips9b14f262014-06-04 05:40:44 -0700331 virtual void EXPERIMENTAL_optimize(const SkPicture* picture);
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000332
333 /**
334 * PRIVATE / EXPERIMENTAL -- do not call
335 * This entry point gives the backend an opportunity to take over the rendering
336 * of 'picture'. If optimization data is available (due to an earlier
337 * 'optimize' call) this entry point should make use of it and return true
338 * if all rendering has been done. If false is returned, SkCanvas will
skia.committer@gmail.comeb849e52014-03-17 03:02:17 +0000339 * perform its own rendering pass. It is acceptable for the backend
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000340 * to perform some device-specific warm up tasks and then let SkCanvas
341 * perform the main rendering loop (by return false from here).
342 */
reedd5fa1a42014-08-09 11:08:05 -0700343 virtual bool EXPERIMENTAL_drawPicture(SkCanvas*, const SkPicture*, const SkMatrix*,
344 const SkPaint*);
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000345
reed3716fd02014-09-21 09:39:55 -0700346 void setPixelGeometry(SkPixelGeometry geo);
347
reed@android.com8a1c16f2008-12-17 15:59:43 +0000348private:
reed@google.com6f8f2922011-03-04 22:27:10 +0000349 friend class SkCanvas;
robertphillips@google.com3fffb2e2012-10-09 22:30:18 +0000350 friend struct DeviceCM; //for setMatrixClip
bungeman@google.com88edf1e2011-08-08 19:41:56 +0000351 friend class SkDraw;
352 friend class SkDrawIter;
353 friend class SkDeviceFilteredPaint;
senorblanco@chromium.org9c397442012-09-27 21:57:45 +0000354 friend class SkDeviceImageFilterProxy;
reed@google.com9c135db2014-03-12 18:28:35 +0000355 friend class SkDeferredDevice; // for newSurface
bungeman@google.com88edf1e2011-08-08 19:41:56 +0000356
reed@google.com97af1a62012-08-28 12:19:02 +0000357 friend class SkSurface_Raster;
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000358
reed@google.com97af1a62012-08-28 12:19:02 +0000359 // used to change the backend's pixels (and possibly config/rowbytes)
360 // but cannot change the width/height, so there should be no change to
361 // any clip information.
reed@google.comec3ca872013-11-13 16:02:18 +0000362 // TODO: move to SkBitmapDevice
reed89443ab2014-06-27 11:34:19 -0700363 virtual void replaceBitmapBackendForRasterSurface(const SkBitmap&) {}
robertphillips@google.com9b051a32013-08-20 20:06:40 +0000364
reedd9544982014-09-09 18:46:22 -0700365 virtual bool forceConservativeRasterClip() const { return false; }
366
robertphillips@google.com9b051a32013-08-20 20:06:40 +0000367 // just called by SkCanvas when built as a layer
368 void setOrigin(int x, int y) { fOrigin.set(x, y); }
369 // just called by SkCanvas for saveLayer
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000370 SkBaseDevice* createCompatibleDeviceForSaveLayer(const SkImageInfo&);
reed@google.com6f8f2922011-03-04 22:27:10 +0000371
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000372 virtual SkBaseDevice* onCreateDevice(const SkImageInfo&, Usage) {
373 return NULL;
374 }
bungeman@google.com88edf1e2011-08-08 19:41:56 +0000375
376 /** Causes any deferred drawing to the device to be completed.
377 */
reed89443ab2014-06-27 11:34:19 -0700378 virtual void flush() {}
bungeman@google.com88edf1e2011-08-08 19:41:56 +0000379
senorblancobe129b22014-08-08 07:14:35 -0700380 virtual SkImageFilter::Cache* getImageFilterCache() { return NULL; }
senorblanco55b6d8b2014-07-30 11:26:46 -0700381
robertphillips@google.com9b051a32013-08-20 20:06:40 +0000382 SkIPoint fOrigin;
383 SkMetaData* fMetaData;
reede010f1c2014-09-17 10:49:38 -0700384 SkDeviceProperties* fLeakyProperties; // will always exist.
robertphillips@google.com15e9d3e2012-06-21 20:25:03 +0000385
robertphillips@google.com9b051a32013-08-20 20:06:40 +0000386#ifdef SK_DEBUG
387 bool fAttachedToCanvas;
388#endif
389
390 typedef SkRefCnt INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000391};
392
reed@android.com8a1c16f2008-12-17 15:59:43 +0000393#endif