blob: b4644fc2c8c3cdf21efcca09a3fae825c5444c38 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@android.com8a1c16f2008-12-17 15:59:43 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2007 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00004 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00005 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
reed@android.com8a1c16f2008-12-17 15:59:43 +000010#ifndef SkPicture_DEFINED
11#define SkPicture_DEFINED
12
scroggo@google.comf8d7d272013-02-22 21:38:35 +000013#include "SkBitmap.h"
Mike Kleinc11530e2014-06-24 11:29:06 -040014#include "SkDrawPictureCallback.h"
scroggo@google.comf1754ec2013-06-28 21:32:00 +000015#include "SkImageDecoder.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000016#include "SkRefCnt.h"
17
commit-bot@chromium.orgeb9547c2014-03-19 21:24:25 +000018#if SK_SUPPORT_GPU
19class GrContext;
20#endif
21
commit-bot@chromium.org5fb2ce32014-04-17 23:35:06 +000022class SkBBHFactory;
junov@chromium.org35ac0482012-11-01 17:10:32 +000023class SkBBoxHierarchy;
reed@android.com8a1c16f2008-12-17 15:59:43 +000024class SkCanvas;
scroggo@google.com1b1bcc32013-05-21 20:31:23 +000025class SkData;
reed@android.com8a1c16f2008-12-17 15:59:43 +000026class SkPicturePlayback;
27class SkPictureRecord;
28class SkStream;
29class SkWStream;
30
scroggo@google.comf1754ec2013-06-28 21:32:00 +000031struct SkPictInfo;
32
Mike Klein744fb732014-06-23 15:13:26 -040033class SkRecord;
34
reed@android.com8a1c16f2008-12-17 15:59:43 +000035/** \class SkPicture
36
37 The SkPicture class records the drawing commands made to a canvas, to
38 be played back at a later time.
39*/
reed@google.com1a32d4a2011-04-25 20:02:38 +000040class SK_API SkPicture : public SkRefCnt {
reed@android.com8a1c16f2008-12-17 15:59:43 +000041public:
robertphillips@google.com15e9d3e2012-06-21 20:25:03 +000042 SK_DECLARE_INST_COUNT(SkPicture)
43
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +000044 // AccelData provides a base class for device-specific acceleration
skia.committer@gmail.comeb849e52014-03-17 03:02:17 +000045 // data. It is added to the picture via a call to a device's optimize
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +000046 // method.
47 class AccelData : public SkRefCnt {
48 public:
49 typedef uint8_t Domain;
50 typedef uint32_t Key;
51
52 AccelData(Key key) : fKey(key) { }
53
54 const Key& getKey() const { return fKey; }
55
56 // This entry point allows user's to get a unique domain prefix
57 // for their keys
58 static Domain GenerateDomain();
59 private:
60 Key fKey;
61
62 typedef SkRefCnt INHERITED;
63 };
64
reed@android.com8a1c16f2008-12-17 15:59:43 +000065 SkPicture();
66 /** Make a copy of the contents of src. If src records more drawing after
67 this call, those elements will not appear in this picture.
68 */
69 SkPicture(const SkPicture& src);
scroggo@google.comf8d7d272013-02-22 21:38:35 +000070
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +000071 /** PRIVATE / EXPERIMENTAL -- do not call */
Mike Klein744fb732014-06-23 15:13:26 -040072 void EXPERIMENTAL_addAccelData(const AccelData*) const;
73
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +000074 /** PRIVATE / EXPERIMENTAL -- do not call */
Mike Klein744fb732014-06-23 15:13:26 -040075 const AccelData* EXPERIMENTAL_getAccelData(AccelData::Key) const;
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +000076
reed@google.com34342f62012-06-25 14:36:28 +000077 /**
scroggo@google.comf8d7d272013-02-22 21:38:35 +000078 * Function signature defining a function that sets up an SkBitmap from encoded data. On
79 * success, the SkBitmap should have its Config, width, height, rowBytes and pixelref set.
80 * If the installed pixelref has decoded the data into pixels, then the src buffer need not be
81 * copied. If the pixelref defers the actual decode until its lockPixels() is called, then it
82 * must make a copy of the src buffer.
83 * @param src Encoded data.
84 * @param length Size of the encoded data, in bytes.
85 * @param dst SkBitmap to install the pixel ref on.
86 * @param bool Whether or not a pixel ref was successfully installed.
87 */
88 typedef bool (*InstallPixelRefProc)(const void* src, size_t length, SkBitmap* dst);
89
90 /**
91 * Recreate a picture that was serialized into a stream.
92 * @param SkStream Serialized picture data.
scroggo@google.comf8d7d272013-02-22 21:38:35 +000093 * @param proc Function pointer for installing pixelrefs on SkBitmaps representing the
94 * encoded bitmap data from the stream.
scroggo@google.comf1754ec2013-06-28 21:32:00 +000095 * @return A new SkPicture representing the serialized data, or NULL if the stream is
96 * invalid.
scroggo@google.comf8d7d272013-02-22 21:38:35 +000097 */
scroggo@google.comf1754ec2013-06-28 21:32:00 +000098 static SkPicture* CreateFromStream(SkStream*,
99 InstallPixelRefProc proc = &SkImageDecoder::DecodeMemory);
scroggo@google.comf8d7d272013-02-22 21:38:35 +0000100
commit-bot@chromium.org5e0995e2014-02-07 12:20:04 +0000101 /**
102 * Recreate a picture that was serialized into a buffer. If the creation requires bitmap
103 * decoding, the decoder must be set on the SkReadBuffer parameter by calling
104 * SkReadBuffer::setBitmapDecoder() before calling SkPicture::CreateFromBuffer().
105 * @param SkReadBuffer Serialized picture data.
106 * @return A new SkPicture representing the serialized data, or NULL if the buffer is
107 * invalid.
108 */
109 static SkPicture* CreateFromBuffer(SkReadBuffer&);
110
reed@android.com8a1c16f2008-12-17 15:59:43 +0000111 virtual ~SkPicture();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000112
mtkleind3e474e2014-06-27 12:34:44 -0700113#ifdef SK_SUPPORT_LEGACY_PICTURE_CLONE
reed@android.com8a1c16f2008-12-17 15:59:43 +0000114 /**
djsollen@google.comc9ab9872012-08-29 18:52:07 +0000115 * Creates a thread-safe clone of the picture that is ready for playback.
116 */
117 SkPicture* clone() const;
118
119 /**
120 * Creates multiple thread-safe clones of this picture that are ready for
121 * playback. The resulting clones are stored in the provided array of
122 * SkPictures.
123 */
124 void clone(SkPicture* pictures, int count) const;
mtkleind3e474e2014-06-27 12:34:44 -0700125#endif
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000126
robertphillips643b8bd2014-06-08 05:55:05 -0700127 /** Replays the drawing commands on the specified canvas.
reed@google.com74babdf2013-05-20 17:02:41 +0000128 @param canvas the canvas receiving the drawing commands.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000129 */
robertphillips9b14f262014-06-04 05:40:44 -0700130 void draw(SkCanvas* canvas, SkDrawPictureCallback* = NULL) const;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000131
reed@android.com8a1c16f2008-12-17 15:59:43 +0000132 /** Return the width of the picture's recording canvas. This
133 value reflects what was passed to setSize(), and does not necessarily
134 reflect the bounds of what has been recorded into the picture.
135 @return the width of the picture's recording canvas
136 */
137 int width() const { return fWidth; }
138
139 /** Return the height of the picture's recording canvas. This
140 value reflects what was passed to setSize(), and does not necessarily
141 reflect the bounds of what has been recorded into the picture.
142 @return the height of the picture's recording canvas
143 */
144 int height() const { return fHeight; }
145
skia.committer@gmail.coma9157722014-04-03 03:04:26 +0000146 /** Return a non-zero, unique value representing the picture. This call is
147 only valid when not recording. Between a beginRecording/endRecording
commit-bot@chromium.org2b4e3702014-04-07 18:26:22 +0000148 pair it will just return 0 (the invalid ID). Each beginRecording/
robertphillips@google.comd5500882014-04-02 23:51:13 +0000149 endRecording pair will cause a different generation ID to be returned.
150 */
commit-bot@chromium.org2b4e3702014-04-07 18:26:22 +0000151 uint32_t uniqueID() const;
robertphillips@google.comd5500882014-04-02 23:51:13 +0000152
scroggo@google.com5a7c6be2012-10-04 21:46:08 +0000153 /**
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000154 * Function to encode an SkBitmap to an SkData. A function with this
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000155 * signature can be passed to serialize() and SkWriteBuffer.
156 * Returning NULL will tell the SkWriteBuffer to use
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000157 * SkBitmap::flatten() to store the bitmap.
reed@google.com672588b2014-01-08 15:42:01 +0000158 *
159 * @param pixelRefOffset DEPRECATED -- caller assumes it will return 0.
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000160 * @return SkData If non-NULL, holds encoded data representing the passed
161 * in bitmap. The caller is responsible for calling unref().
scroggo@google.com32ef1312013-02-22 22:04:19 +0000162 */
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000163 typedef SkData* (*EncodeBitmap)(size_t* pixelRefOffset, const SkBitmap& bm);
scroggo@google.com32ef1312013-02-22 22:04:19 +0000164
165 /**
scroggo@google.com5a7c6be2012-10-04 21:46:08 +0000166 * Serialize to a stream. If non NULL, encoder will be used to encode
167 * any bitmaps in the picture.
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000168 * encoder will never be called with a NULL pixelRefOffset.
scroggo@google.com5a7c6be2012-10-04 21:46:08 +0000169 */
scroggo@google.com32ef1312013-02-22 22:04:19 +0000170 void serialize(SkWStream*, EncodeBitmap encoder = NULL) const;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000171
tomhudson@google.com381010e2013-10-24 11:12:47 +0000172 /**
commit-bot@chromium.org5e0995e2014-02-07 12:20:04 +0000173 * Serialize to a buffer.
174 */
175 void flatten(SkWriteBuffer&) const;
176
177 /**
tomhudson@google.com381010e2013-10-24 11:12:47 +0000178 * Returns true if any bitmaps may be produced when this SkPicture
179 * is replayed.
180 * Returns false if called while still recording.
181 */
182 bool willPlayBackBitmaps() const;
183
djsollen@google.comd9b0f482013-02-01 16:18:09 +0000184#ifdef SK_BUILD_FOR_ANDROID
reed@android.com8a1c16f2008-12-17 15:59:43 +0000185 /** Signals that the caller is prematurely done replaying the drawing
186 commands. This can be called from a canvas virtual while the picture
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000187 is drawing. Has no effect if the picture is not drawing.
djsollen@google.comd9b0f482013-02-01 16:18:09 +0000188 @deprecated preserving for legacy purposes
reed@android.com8a1c16f2008-12-17 15:59:43 +0000189 */
190 void abortPlayback();
djsollen@google.comd9b0f482013-02-01 16:18:09 +0000191#endif
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000192
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000193 /** Return true if the SkStream/Buffer represents a serialized picture, and
194 fills out SkPictInfo. After this function returns, the data source is not
skia.committer@gmail.comade9a342014-03-04 03:02:32 +0000195 rewound so it will have to be manually reset before passing to
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000196 CreateFromStream or CreateFromBuffer. Note, CreateFromStream and
197 CreateFromBuffer perform this check internally so these entry points are
198 intended for stand alone tools.
199 If false is returned, SkPictInfo is unmodified.
200 */
201 static bool InternalOnly_StreamIsSKP(SkStream*, SkPictInfo*);
202 static bool InternalOnly_BufferIsSKP(SkReadBuffer&, SkPictInfo*);
203
commit-bot@chromium.orgeb9547c2014-03-19 21:24:25 +0000204 /** Return true if the picture is suitable for rendering on the GPU.
205 */
206
207#if SK_SUPPORT_GPU
commit-bot@chromium.orga1ff26a2014-05-30 21:52:52 +0000208 bool suitableForGpuRasterization(GrContext*, const char ** = NULL) const;
commit-bot@chromium.orgeb9547c2014-03-19 21:24:25 +0000209#endif
210
scroggo@google.com2983ddd2013-05-07 14:45:40 +0000211protected:
robertphillips@google.com9a5b5702012-11-13 20:41:18 +0000212 // V2 : adds SkPixelRef's generation ID.
213 // V3 : PictInfo tag at beginning, and EOF tag at the end
214 // V4 : move SkPictInfo to be the header
215 // V5 : don't read/write FunctionPtr on cross-process (we can detect that)
216 // V6 : added serialization of SkPath's bounds (and packed its flags tighter)
217 // V7 : changed drawBitmapRect(IRect) to drawBitmapRectToRect(Rect)
218 // V8 : Add an option for encoding bitmaps
219 // V9 : Allow the reader and writer of an SKP disagree on whether to support
220 // SK_SUPPORT_HINTING_SCALE_FACTOR
reed@google.com4ed0fb72012-12-12 20:48:18 +0000221 // V10: add drawRRect, drawOval, clipRRect
scroggo@google.com74b7ffd2013-04-30 02:32:41 +0000222 // V11: modify how readBitmap and writeBitmap store their info.
reed@google.com277c3f82013-05-31 15:17:50 +0000223 // V12: add conics to SkPath, use new SkPathRef flattening
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000224 // V13: add flag to drawBitmapRectToRect
robertphillips@google.com7ce661d2013-08-27 16:14:03 +0000225 // parameterize blurs by sigma rather than radius
robertphillips@google.comca0c8382013-09-26 12:18:23 +0000226 // V14: Add flags word to PathRef serialization
robertphillips@google.comd5500882014-04-02 23:51:13 +0000227 // V15: Remove A1 bitmap config (and renumber remaining configs)
robertphillips@google.com466310d2013-12-03 16:43:54 +0000228 // V16: Move SkPath's isOval flag to SkPathRef
reed@google.come132f502013-12-13 19:58:46 +0000229 // V17: SkPixelRef now writes SkImageInfo
reed@google.com672588b2014-01-08 15:42:01 +0000230 // V18: SkBitmap now records x,y for its pixelref origin, instead of offset.
commit-bot@chromium.orgfed2ab62014-01-23 15:16:05 +0000231 // V19: encode matrices and regions into the ops stream
commit-bot@chromium.org5e0995e2014-02-07 12:20:04 +0000232 // V20: added bool to SkPictureImageFilter's serialization (to allow SkPicture serialization)
commit-bot@chromium.org210ae2a2014-02-27 17:40:13 +0000233 // V21: add pushCull, popCull
commit-bot@chromium.orgdcb8e542014-03-05 18:25:20 +0000234 // V22: SK_PICT_FACTORY_TAG's size is now the chunk size in bytes
commit-bot@chromium.org85faf502014-04-16 12:58:02 +0000235 // V23: SkPaint::FilterLevel became a real enum
commit-bot@chromium.org44d83c12014-04-21 13:10:25 +0000236 // V24: SkTwoPointConicalGradient now has fFlipped flag for gradient flipping
commit-bot@chromium.orgaec14382014-04-22 15:21:18 +0000237 // V25: SkDashPathEffect now only writes phase and interval array when flattening
commit-bot@chromium.org76a3b2a2014-04-24 16:54:46 +0000238 // V26: Removed boolean from SkColorShader for inheriting color from SkPaint.
commit-bot@chromium.org83f23d82014-05-22 12:27:41 +0000239 // V27: Remove SkUnitMapper from gradients (and skia).
commit-bot@chromium.org968edca2014-05-23 13:21:55 +0000240 // V28: No longer call bitmap::flatten inside SkWriteBuffer::writeBitmap.
Florin Malita5f6102d2014-06-30 10:13:28 -0400241 // V29: Removed SaveFlags parameter from save().
commit-bot@chromium.orgd281c922014-02-18 22:08:16 +0000242
243 // Note: If the picture version needs to be increased then please follow the
244 // steps to generate new SKPs in (only accessible to Googlers): http://goo.gl/qATVcw
commit-bot@chromium.orge8d96142014-02-25 02:16:10 +0000245
246 // Only SKPs within the min/current picture version range (inclusive) can be read.
247 static const uint32_t MIN_PICTURE_VERSION = 19;
Florin Malita5f6102d2014-06-30 10:13:28 -0400248 static const uint32_t CURRENT_PICTURE_VERSION = 29;
robertphillips@google.com9a5b5702012-11-13 20:41:18 +0000249
commit-bot@chromium.org2b4e3702014-04-07 18:26:22 +0000250 mutable uint32_t fUniqueID;
robertphillips@google.comd5500882014-04-02 23:51:13 +0000251
Mike Klein744fb732014-06-23 15:13:26 -0400252 // fPlayback, fWidth & fHeight are protected to allow derived classes to
skia.committer@gmail.comfbb0ed92012-11-13 21:46:06 +0000253 // install their own SkPicturePlayback-derived players,SkPictureRecord-derived
robertphillips@google.com9a5b5702012-11-13 20:41:18 +0000254 // recorders and set the picture size
Mike Klein744fb732014-06-23 15:13:26 -0400255 SkAutoTDelete<SkPicturePlayback> fPlayback;
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000256 int fWidth, fHeight;
Mike Klein744fb732014-06-23 15:13:26 -0400257 mutable SkAutoTUnref<const AccelData> fAccelData;
robertphillips@google.com63f11272012-10-24 19:30:41 +0000258
commit-bot@chromium.org2b4e3702014-04-07 18:26:22 +0000259 void needsNewGenID() { fUniqueID = SK_InvalidGenID; }
robertphillips@google.comd5500882014-04-02 23:51:13 +0000260
scroggo@google.comf1754ec2013-06-28 21:32:00 +0000261 // Create a new SkPicture from an existing SkPicturePlayback. Ref count of
262 // playback is unchanged.
263 SkPicture(SkPicturePlayback*, int width, int height);
264
robertphillipse26e65e2014-06-12 05:51:22 -0700265 SkPicture(int width, int height, const SkPictureRecord& record, bool deepCopyOps);
robertphillips0bdbea72014-06-11 11:37:55 -0700266
reed@android.com8a1c16f2008-12-17 15:59:43 +0000267private:
commit-bot@chromium.org8f831f22014-04-23 22:35:42 +0000268 static void WriteTagSize(SkWriteBuffer& buffer, uint32_t tag, size_t size);
269 static void WriteTagSize(SkWStream* stream, uint32_t tag, size_t size);
270
commit-bot@chromium.org70512af2014-03-18 17:45:32 +0000271 // An OperationList encapsulates a set of operation offsets into the picture byte
272 // stream along with the CTMs needed for those operation.
commit-bot@chromium.orge3beb6b2014-04-07 19:34:38 +0000273 class OperationList : ::SkNoncopyable {
commit-bot@chromium.org70512af2014-03-18 17:45:32 +0000274 public:
275 virtual ~OperationList() {}
276
277 // If valid returns false then there is no optimization data
278 // present. All the draw operations need to be issued.
279 virtual bool valid() const { return false; }
280
281 // The following three entry points should only be accessed if
282 // 'valid' returns true.
283 virtual int numOps() const { SkASSERT(false); return 0; };
284 // The offset in the picture of the operation to execute.
285 virtual uint32_t offset(int index) const { SkASSERT(false); return 0; };
286 // The CTM that must be installed for the operation to behave correctly
287 virtual const SkMatrix& matrix(int index) const { SkASSERT(false); return SkMatrix::I(); }
288
289 static const OperationList& InvalidList();
commit-bot@chromium.org70512af2014-03-18 17:45:32 +0000290 };
291
292 /** PRIVATE / EXPERIMENTAL -- do not call
293 Return the operations required to render the content inside 'queryRect'.
294 */
robertphillips9b14f262014-06-04 05:40:44 -0700295 const OperationList& EXPERIMENTAL_getActiveOps(const SkIRect& queryRect) const;
commit-bot@chromium.org70512af2014-03-18 17:45:32 +0000296
commit-bot@chromium.org75cf29b2014-03-24 19:40:49 +0000297 /** PRIVATE / EXPERIMENTAL -- do not call
298 Return the ID of the operation currently being executed when playing
299 back. 0 indicates no call is active.
300 */
301 size_t EXPERIMENTAL_curOpID() const;
302
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000303 void createHeader(SkPictInfo* info) const;
304 static bool IsValidPictInfo(const SkPictInfo& info);
commit-bot@chromium.org5e0995e2014-02-07 12:20:04 +0000305
reed@android.com8a1c16f2008-12-17 15:59:43 +0000306 friend class SkFlatPicture;
307 friend class SkPicturePlayback;
robertphillips0bdbea72014-06-11 11:37:55 -0700308 friend class SkPictureRecorder; // just for SkPicture-based constructor
commit-bot@chromium.org70512af2014-03-18 17:45:32 +0000309 friend class SkGpuDevice;
robertphillips@google.combeb1af22014-05-07 21:31:09 +0000310 friend class GrGatherCanvas;
commit-bot@chromium.org75cf29b2014-03-24 19:40:49 +0000311 friend class GrGatherDevice;
312 friend class SkDebugCanvas;
robertphillips@google.com15e9d3e2012-06-21 20:25:03 +0000313
314 typedef SkRefCnt INHERITED;
Mike Klein744fb732014-06-23 15:13:26 -0400315
316 SkPicture(int width, int height, SkRecord*); // Takes ownership.
317 SkAutoTDelete<SkRecord> fRecord;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000318};
319
reed@android.com8a1c16f2008-12-17 15:59:43 +0000320#endif