blob: c4c6f20326455f7f102f9ed8f833e3f9c85eb1d3 [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"
robertphillips3afef1f2014-07-08 06:12:22 -070017#include "SkTDArray.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000018
commit-bot@chromium.orgeb9547c2014-03-19 21:24:25 +000019#if SK_SUPPORT_GPU
20class GrContext;
21#endif
22
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;
robertphillipsdb539902014-07-01 08:47:04 -070026class SkPictureData;
reed@android.com8a1c16f2008-12-17 15:59:43 +000027class SkStream;
28class SkWStream;
29
scroggo@google.comf1754ec2013-06-28 21:32:00 +000030struct SkPictInfo;
31
Mike Klein744fb732014-06-23 15:13:26 -040032class SkRecord;
33
robertphillipsd8aa7b72014-10-30 16:45:02 -070034namespace SkRecords {
35 class CollectLayers;
36};
37
reed@android.com8a1c16f2008-12-17 15:59:43 +000038/** \class SkPicture
39
40 The SkPicture class records the drawing commands made to a canvas, to
41 be played back at a later time.
42*/
reed@google.com1a32d4a2011-04-25 20:02:38 +000043class SK_API SkPicture : public SkRefCnt {
reed@android.com8a1c16f2008-12-17 15:59:43 +000044public:
robertphillips@google.com15e9d3e2012-06-21 20:25:03 +000045 SK_DECLARE_INST_COUNT(SkPicture)
46
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +000047 // AccelData provides a base class for device-specific acceleration
robertphillips82365912014-11-12 09:32:34 -080048 // data. It is added to the picture via EXPERIMENTAL_addAccelData.
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +000049 class AccelData : public SkRefCnt {
50 public:
51 typedef uint8_t Domain;
52 typedef uint32_t Key;
53
54 AccelData(Key key) : fKey(key) { }
55
56 const Key& getKey() const { return fKey; }
57
58 // This entry point allows user's to get a unique domain prefix
59 // for their keys
60 static Domain GenerateDomain();
61 private:
62 Key fKey;
63
64 typedef SkRefCnt INHERITED;
65 };
66
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +000067 /** PRIVATE / EXPERIMENTAL -- do not call */
Mike Klein744fb732014-06-23 15:13:26 -040068 void EXPERIMENTAL_addAccelData(const AccelData*) const;
69
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +000070 /** PRIVATE / EXPERIMENTAL -- do not call */
Mike Klein744fb732014-06-23 15:13:26 -040071 const AccelData* EXPERIMENTAL_getAccelData(AccelData::Key) const;
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +000072
reed@google.com34342f62012-06-25 14:36:28 +000073 /**
scroggo@google.comf8d7d272013-02-22 21:38:35 +000074 * Function signature defining a function that sets up an SkBitmap from encoded data. On
75 * success, the SkBitmap should have its Config, width, height, rowBytes and pixelref set.
76 * If the installed pixelref has decoded the data into pixels, then the src buffer need not be
77 * copied. If the pixelref defers the actual decode until its lockPixels() is called, then it
78 * must make a copy of the src buffer.
79 * @param src Encoded data.
80 * @param length Size of the encoded data, in bytes.
81 * @param dst SkBitmap to install the pixel ref on.
82 * @param bool Whether or not a pixel ref was successfully installed.
83 */
84 typedef bool (*InstallPixelRefProc)(const void* src, size_t length, SkBitmap* dst);
85
86 /**
87 * Recreate a picture that was serialized into a stream.
88 * @param SkStream Serialized picture data.
scroggo@google.comf8d7d272013-02-22 21:38:35 +000089 * @param proc Function pointer for installing pixelrefs on SkBitmaps representing the
90 * encoded bitmap data from the stream.
scroggo@google.comf1754ec2013-06-28 21:32:00 +000091 * @return A new SkPicture representing the serialized data, or NULL if the stream is
92 * invalid.
scroggo@google.comf8d7d272013-02-22 21:38:35 +000093 */
scroggo@google.comf1754ec2013-06-28 21:32:00 +000094 static SkPicture* CreateFromStream(SkStream*,
95 InstallPixelRefProc proc = &SkImageDecoder::DecodeMemory);
scroggo@google.comf8d7d272013-02-22 21:38:35 +000096
commit-bot@chromium.org5e0995e2014-02-07 12:20:04 +000097 /**
98 * Recreate a picture that was serialized into a buffer. If the creation requires bitmap
99 * decoding, the decoder must be set on the SkReadBuffer parameter by calling
100 * SkReadBuffer::setBitmapDecoder() before calling SkPicture::CreateFromBuffer().
101 * @param SkReadBuffer Serialized picture data.
102 * @return A new SkPicture representing the serialized data, or NULL if the buffer is
103 * invalid.
104 */
105 static SkPicture* CreateFromBuffer(SkReadBuffer&);
106
reed@android.com8a1c16f2008-12-17 15:59:43 +0000107 virtual ~SkPicture();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000108
robertphillipsc5ba71d2014-09-04 08:42:50 -0700109 /** Replays the drawing commands on the specified canvas. Note that
110 this has the effect of unfurling this picture into the destination
111 canvas. Using the SkCanvas::drawPicture entry point gives the destination
112 canvas the option of just taking a ref.
reed@google.com74babdf2013-05-20 17:02:41 +0000113 @param canvas the canvas receiving the drawing commands.
robertphillipsc5ba71d2014-09-04 08:42:50 -0700114 @param callback a callback that allows interruption of playback
reed@android.com8a1c16f2008-12-17 15:59:43 +0000115 */
robertphillipsc5ba71d2014-09-04 08:42:50 -0700116 void playback(SkCanvas* canvas, SkDrawPictureCallback* = NULL) const;
117
118#ifdef SK_LEGACY_PICTURE_DRAW_API
119 void draw(SkCanvas* canvas, SkDrawPictureCallback* callback = NULL) const {
120 this->playback(canvas, callback);
121 }
122#endif
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000123
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700124#ifdef SK_LEGACY_PICTURE_SIZE_API
125 int width() const { return SkScalarCeilToInt(fCullWidth); }
126 int height() const { return SkScalarCeilToInt(fCullHeight); }
127#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +0000128
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700129 /** Return the cull rect used when creating this picture: { 0, 0, cullWidth, cullHeight }.
130 It does not necessarily reflect the bounds of what has been recorded into the picture.
131 @return the cull rect used to create this picture
reed@android.com8a1c16f2008-12-17 15:59:43 +0000132 */
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700133 const SkRect cullRect() const { return SkRect::MakeWH(fCullWidth, fCullHeight); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000134
skia.committer@gmail.coma9157722014-04-03 03:04:26 +0000135 /** Return a non-zero, unique value representing the picture. This call is
136 only valid when not recording. Between a beginRecording/endRecording
commit-bot@chromium.org2b4e3702014-04-07 18:26:22 +0000137 pair it will just return 0 (the invalid ID). Each beginRecording/
robertphillips@google.comd5500882014-04-02 23:51:13 +0000138 endRecording pair will cause a different generation ID to be returned.
139 */
commit-bot@chromium.org2b4e3702014-04-07 18:26:22 +0000140 uint32_t uniqueID() const;
robertphillips@google.comd5500882014-04-02 23:51:13 +0000141
scroggo@google.com5a7c6be2012-10-04 21:46:08 +0000142 /**
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000143 * Function to encode an SkBitmap to an SkData. A function with this
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000144 * signature can be passed to serialize() and SkWriteBuffer.
145 * Returning NULL will tell the SkWriteBuffer to use
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000146 * SkBitmap::flatten() to store the bitmap.
reed@google.com672588b2014-01-08 15:42:01 +0000147 *
148 * @param pixelRefOffset DEPRECATED -- caller assumes it will return 0.
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000149 * @return SkData If non-NULL, holds encoded data representing the passed
150 * in bitmap. The caller is responsible for calling unref().
scroggo@google.com32ef1312013-02-22 22:04:19 +0000151 */
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000152 typedef SkData* (*EncodeBitmap)(size_t* pixelRefOffset, const SkBitmap& bm);
scroggo@google.com32ef1312013-02-22 22:04:19 +0000153
154 /**
scroggo@google.com5a7c6be2012-10-04 21:46:08 +0000155 * Serialize to a stream. If non NULL, encoder will be used to encode
156 * any bitmaps in the picture.
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000157 * encoder will never be called with a NULL pixelRefOffset.
scroggo@google.com5a7c6be2012-10-04 21:46:08 +0000158 */
scroggo@google.com32ef1312013-02-22 22:04:19 +0000159 void serialize(SkWStream*, EncodeBitmap encoder = NULL) const;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000160
tomhudson@google.com381010e2013-10-24 11:12:47 +0000161 /**
commit-bot@chromium.org5e0995e2014-02-07 12:20:04 +0000162 * Serialize to a buffer.
163 */
164 void flatten(SkWriteBuffer&) const;
165
166 /**
tomhudson@google.com381010e2013-10-24 11:12:47 +0000167 * Returns true if any bitmaps may be produced when this SkPicture
168 * is replayed.
tomhudson@google.com381010e2013-10-24 11:12:47 +0000169 */
170 bool willPlayBackBitmaps() const;
171
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000172 /** Return true if the SkStream/Buffer represents a serialized picture, and
173 fills out SkPictInfo. After this function returns, the data source is not
skia.committer@gmail.comade9a342014-03-04 03:02:32 +0000174 rewound so it will have to be manually reset before passing to
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000175 CreateFromStream or CreateFromBuffer. Note, CreateFromStream and
176 CreateFromBuffer perform this check internally so these entry points are
177 intended for stand alone tools.
178 If false is returned, SkPictInfo is unmodified.
179 */
180 static bool InternalOnly_StreamIsSKP(SkStream*, SkPictInfo*);
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700181 static bool InternalOnly_BufferIsSKP(SkReadBuffer*, SkPictInfo*);
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000182
commit-bot@chromium.orgeb9547c2014-03-19 21:24:25 +0000183 /** Return true if the picture is suitable for rendering on the GPU.
184 */
185
186#if SK_SUPPORT_GPU
commit-bot@chromium.orga1ff26a2014-05-30 21:52:52 +0000187 bool suitableForGpuRasterization(GrContext*, const char ** = NULL) const;
commit-bot@chromium.orgeb9547c2014-03-19 21:24:25 +0000188#endif
189
robertphillipsd771f6b2014-07-22 10:18:06 -0700190 class DeletionListener : public SkRefCnt {
191 public:
192 virtual void onDeletion(uint32_t pictureID) = 0;
193 };
194
195 // Takes ref on listener.
196 void addDeletionListener(DeletionListener* listener) const;
197
mtklein5a246bb2014-08-14 19:17:18 -0700198 /** Return the approximate number of operations in this picture. This
199 * number may be greater or less than the number of SkCanvas calls
200 * recorded: some calls may be recorded as more than one operation, or some
201 * calls may be optimized away.
202 */
203 int approximateOpCount() const;
204
ajuma750ae262014-08-18 12:59:55 -0700205 /** Return true if this picture contains text.
206 */
207 bool hasText() const;
208
robertphillips6daadc72014-07-08 08:38:18 -0700209private:
robertphillips@google.com9a5b5702012-11-13 20:41:18 +0000210 // V2 : adds SkPixelRef's generation ID.
211 // V3 : PictInfo tag at beginning, and EOF tag at the end
212 // V4 : move SkPictInfo to be the header
213 // V5 : don't read/write FunctionPtr on cross-process (we can detect that)
214 // V6 : added serialization of SkPath's bounds (and packed its flags tighter)
215 // V7 : changed drawBitmapRect(IRect) to drawBitmapRectToRect(Rect)
216 // V8 : Add an option for encoding bitmaps
217 // V9 : Allow the reader and writer of an SKP disagree on whether to support
218 // SK_SUPPORT_HINTING_SCALE_FACTOR
reed@google.com4ed0fb72012-12-12 20:48:18 +0000219 // V10: add drawRRect, drawOval, clipRRect
scroggo@google.com74b7ffd2013-04-30 02:32:41 +0000220 // V11: modify how readBitmap and writeBitmap store their info.
reed@google.com277c3f82013-05-31 15:17:50 +0000221 // V12: add conics to SkPath, use new SkPathRef flattening
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000222 // V13: add flag to drawBitmapRectToRect
robertphillips@google.com7ce661d2013-08-27 16:14:03 +0000223 // parameterize blurs by sigma rather than radius
robertphillips@google.comca0c8382013-09-26 12:18:23 +0000224 // V14: Add flags word to PathRef serialization
robertphillips@google.comd5500882014-04-02 23:51:13 +0000225 // V15: Remove A1 bitmap config (and renumber remaining configs)
robertphillips@google.com466310d2013-12-03 16:43:54 +0000226 // V16: Move SkPath's isOval flag to SkPathRef
reed@google.come132f502013-12-13 19:58:46 +0000227 // V17: SkPixelRef now writes SkImageInfo
reed@google.com672588b2014-01-08 15:42:01 +0000228 // V18: SkBitmap now records x,y for its pixelref origin, instead of offset.
commit-bot@chromium.orgfed2ab62014-01-23 15:16:05 +0000229 // V19: encode matrices and regions into the ops stream
commit-bot@chromium.org5e0995e2014-02-07 12:20:04 +0000230 // V20: added bool to SkPictureImageFilter's serialization (to allow SkPicture serialization)
commit-bot@chromium.org210ae2a2014-02-27 17:40:13 +0000231 // V21: add pushCull, popCull
commit-bot@chromium.orgdcb8e542014-03-05 18:25:20 +0000232 // V22: SK_PICT_FACTORY_TAG's size is now the chunk size in bytes
commit-bot@chromium.org85faf502014-04-16 12:58:02 +0000233 // V23: SkPaint::FilterLevel became a real enum
commit-bot@chromium.org44d83c12014-04-21 13:10:25 +0000234 // V24: SkTwoPointConicalGradient now has fFlipped flag for gradient flipping
commit-bot@chromium.orgaec14382014-04-22 15:21:18 +0000235 // V25: SkDashPathEffect now only writes phase and interval array when flattening
commit-bot@chromium.org76a3b2a2014-04-24 16:54:46 +0000236 // V26: Removed boolean from SkColorShader for inheriting color from SkPaint.
commit-bot@chromium.org83f23d82014-05-22 12:27:41 +0000237 // V27: Remove SkUnitMapper from gradients (and skia).
commit-bot@chromium.org968edca2014-05-23 13:21:55 +0000238 // V28: No longer call bitmap::flatten inside SkWriteBuffer::writeBitmap.
Florin Malita5f6102d2014-06-30 10:13:28 -0400239 // V29: Removed SaveFlags parameter from save().
scroggoc870d492014-07-11 10:42:12 -0700240 // V30: Remove redundant SkMatrix from SkLocalMatrixShader.
senorblanco55b6d8b2014-07-30 11:26:46 -0700241 // V31: Add a serialized UniqueID to SkImageFilter.
djsollen3b625542014-08-14 06:29:02 -0700242 // V32: Removed SkPaintOptionsAndroid from SkPaint
fmalitab7425172014-08-26 07:56:44 -0700243 // V33: Serialize only public API of effects.
244 // V34: Add SkTextBlob serialization.
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700245 // V35: Store SkRect (rather then width & height) in header
reedc5e15a12014-09-29 12:10:27 -0700246 // V36: Remove (obsolete) alphatype from SkColorTable
sugoi234f0362014-10-23 13:59:52 -0700247 // V37: Added shadow only option to SkDropShadowImageFilter
commit-bot@chromium.orgd281c922014-02-18 22:08:16 +0000248
249 // Note: If the picture version needs to be increased then please follow the
250 // steps to generate new SKPs in (only accessible to Googlers): http://goo.gl/qATVcw
commit-bot@chromium.orge8d96142014-02-25 02:16:10 +0000251
252 // Only SKPs within the min/current picture version range (inclusive) can be read.
253 static const uint32_t MIN_PICTURE_VERSION = 19;
sugoi234f0362014-10-23 13:59:52 -0700254 static const uint32_t CURRENT_PICTURE_VERSION = 37;
robertphillips@google.com9a5b5702012-11-13 20:41:18 +0000255
commit-bot@chromium.org2b4e3702014-04-07 18:26:22 +0000256 void needsNewGenID() { fUniqueID = SK_InvalidGenID; }
robertphillipsd771f6b2014-07-22 10:18:06 -0700257 void callDeletionListeners();
robertphillips@google.comd5500882014-04-02 23:51:13 +0000258
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000259 void createHeader(SkPictInfo* info) const;
260 static bool IsValidPictInfo(const SkPictInfo& info);
commit-bot@chromium.org5e0995e2014-02-07 12:20:04 +0000261
mtklein5ad6ee12014-08-11 08:08:43 -0700262 // Takes ownership of the SkRecord, refs the (optional) BBH.
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700263 SkPicture(SkScalar width, SkScalar height, SkRecord*, SkBBoxHierarchy*);
mtklein5ad6ee12014-08-11 08:08:43 -0700264
mtkleinc6ad9ee2014-11-17 06:45:18 -0800265 static SkPicture* Forwardport(const SkPictInfo&, const SkPictureData*);
266 static SkPictureData* Backport(const SkRecord&, const SkPictInfo&);
267
268 const SkScalar fCullWidth;
269 const SkScalar fCullHeight;
270 mutable SkAutoTUnref<const AccelData> fAccelData;
271 mutable SkTDArray<DeletionListener*> fDeletionListeners; // pointers are refed
mtklein5ad6ee12014-08-11 08:08:43 -0700272 SkAutoTDelete<SkRecord> fRecord;
273 SkAutoTUnref<SkBBoxHierarchy> fBBH;
tomhudson3a0f2792014-08-20 05:29:41 -0700274 struct Analysis {
mtkleinc551d9f2014-08-20 08:09:46 -0700275 Analysis() {} // Only used by SkPictureData codepath.
276 explicit Analysis(const SkRecord&);
tomhudson3a0f2792014-08-20 05:29:41 -0700277
278 bool suitableForGpuRasterization(const char** reason, int sampleCount) const;
279
280 bool fWillPlaybackBitmaps;
mtkleinc551d9f2014-08-20 08:09:46 -0700281 bool fHasText;
tomhudson3a0f2792014-08-20 05:29:41 -0700282 int fNumPaintWithPathEffectUses;
283 int fNumFastPathDashEffects;
284 int fNumAAConcavePaths;
285 int fNumAAHairlineConcavePaths;
jvanverthf7007b02014-11-04 07:59:01 -0800286 int fNumAADFEligibleConcavePaths;
mtkleinc551d9f2014-08-20 08:09:46 -0700287 } fAnalysis;
mtkleinc6ad9ee2014-11-17 06:45:18 -0800288 mutable uint32_t fUniqueID;
289
290 struct PathCounter;
291
292 friend class SkPictureRecorder; // SkRecord-based constructor.
293 friend class GrLayerHoister; // access to fRecord
294 friend class ReplaceDraw;
295
296 typedef SkRefCnt INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000297};
298
reed@android.com8a1c16f2008-12-17 15:59:43 +0000299#endif