blob: d9a36e9c86a23a746e83664a2d93fd9b21afe1d1 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@google.combb6992a2011-04-26 17:41:56 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2011 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.
reed@google.combb6992a2011-04-26 17:41:56 +00007 */
8
9
epoger@google.comec3ed6a2011-07-28 14:26:00 +000010
reed@google.combb6992a2011-04-26 17:41:56 +000011#ifndef SkGPipePriv_DEFINED
12#define SkGPipePriv_DEFINED
13
14#include "SkTypes.h"
15
16#define UNIMPLEMENTED
17
reed@google.comb55d1182011-05-11 00:42:04 +000018// these must be contiguous, 0...N-1
19enum PaintFlats {
20 kColorFilter_PaintFlat,
reed@google.com0faac1e2011-05-11 05:58:58 +000021 kDrawLooper_PaintFlat,
reed@google.comb55d1182011-05-11 00:42:04 +000022 kMaskFilter_PaintFlat,
23 kPathEffect_PaintFlat,
24 kRasterizer_PaintFlat,
25 kShader_PaintFlat,
scroggo@google.com16d1d0b2012-05-02 19:09:40 +000026 kImageFilter_PaintFlat,
reed@google.comb55d1182011-05-11 00:42:04 +000027 kXfermode_PaintFlat,
28
29 kLast_PaintFlat = kXfermode_PaintFlat
30};
31#define kCount_PaintFlats (kLast_PaintFlat + 1)
32
reed@google.combb6992a2011-04-26 17:41:56 +000033enum DrawOps {
reed@google.comacd471f2011-05-03 21:26:46 +000034 kSkip_DrawOp, // skip an addition N bytes (N == data)
35
reed@google.combb6992a2011-04-26 17:41:56 +000036 // these match Canvas apis
37 kClipPath_DrawOp,
38 kClipRegion_DrawOp,
39 kClipRect_DrawOp,
40 kConcat_DrawOp,
41 kDrawBitmap_DrawOp,
42 kDrawBitmapMatrix_DrawOp,
scroggo@google.com16d1d0b2012-05-02 19:09:40 +000043 kDrawBitmapNine_DrawOp,
reed@google.combb6992a2011-04-26 17:41:56 +000044 kDrawBitmapRect_DrawOp,
45 kDrawClear_DrawOp,
46 kDrawData_DrawOp,
47 kDrawPaint_DrawOp,
48 kDrawPath_DrawOp,
49 kDrawPicture_DrawOp,
50 kDrawPoints_DrawOp,
51 kDrawPosText_DrawOp,
52 kDrawPosTextH_DrawOp,
53 kDrawRect_DrawOp,
reed@google.combb6992a2011-04-26 17:41:56 +000054 kDrawSprite_DrawOp,
55 kDrawText_DrawOp,
56 kDrawTextOnPath_DrawOp,
57 kDrawVertices_DrawOp,
58 kRestore_DrawOp,
59 kRotate_DrawOp,
60 kSave_DrawOp,
61 kSaveLayer_DrawOp,
62 kScale_DrawOp,
63 kSetMatrix_DrawOp,
64 kSkew_DrawOp,
65 kTranslate_DrawOp,
66
reed@google.combb6992a2011-04-26 17:41:56 +000067 kPaintOp_DrawOp,
scroggo@google.com3cb969f2012-07-27 20:39:19 +000068 kSetTypeface_DrawOp,
reed@google.combb6793b2011-05-05 15:18:15 +000069
reed@google.combb6793b2011-05-05 15:18:15 +000070 kDef_Typeface_DrawOp,
reed@google.com0faac1e2011-05-11 05:58:58 +000071 kDef_Flattenable_DrawOp,
scroggo@google.com16d1d0b2012-05-02 19:09:40 +000072 kDef_Bitmap_DrawOp,
reed@google.combb6992a2011-04-26 17:41:56 +000073
74 // these are signals to playback, not drawing verbs
scroggo@google.com565254b2012-06-28 15:41:32 +000075 kReportFlags_DrawOp,
reed@google.combb6992a2011-04-26 17:41:56 +000076 kDone_DrawOp,
77};
78
79/**
80 * DrawOp packs into a 32bit int as follows
81 *
82 * DrawOp:8 - Flags:4 - Data:20
83 *
84 * Flags and Data are called out separately, so we can reuse Data between
85 * different Ops that might have different Flags. e.g. Data might be a Paint
86 * index for both drawRect (no flags) and saveLayer (does have flags).
87 *
88 * All Ops that take a SkPaint use their Data field to store the index to
89 * the paint (previously defined with kPaintOp_DrawOp).
90 */
91
92#define DRAWOPS_OP_BITS 8
93#define DRAWOPS_FLAG_BITS 4
94#define DRAWOPS_DATA_BITS 20
95
96#define DRAWOPS_OP_MASK ((1 << DRAWOPS_OP_BITS) - 1)
97#define DRAWOPS_FLAG_MASK ((1 << DRAWOPS_FLAG_BITS) - 1)
98#define DRAWOPS_DATA_MASK ((1 << DRAWOPS_DATA_BITS) - 1)
99
caryclark@google.com920901d2012-06-06 12:04:11 +0000100static inline unsigned DrawOp_unpackOp(uint32_t op32) {
reed@google.combb6992a2011-04-26 17:41:56 +0000101 return (op32 >> (DRAWOPS_FLAG_BITS + DRAWOPS_DATA_BITS));
102}
103
caryclark@google.com920901d2012-06-06 12:04:11 +0000104static inline unsigned DrawOp_unpackFlags(uint32_t op32) {
reed@google.combb6992a2011-04-26 17:41:56 +0000105 return (op32 >> DRAWOPS_DATA_BITS) & DRAWOPS_FLAG_MASK;
106}
107
caryclark@google.com920901d2012-06-06 12:04:11 +0000108static inline unsigned DrawOp_unpackData(uint32_t op32) {
reed@google.combb6992a2011-04-26 17:41:56 +0000109 return op32 & DRAWOPS_DATA_MASK;
110}
111
caryclark@google.com920901d2012-06-06 12:04:11 +0000112static inline uint32_t DrawOp_packOpFlagData(DrawOps op, unsigned flags, unsigned data) {
reed@google.combb6992a2011-04-26 17:41:56 +0000113 SkASSERT(0 == (op & ~DRAWOPS_OP_MASK));
114 SkASSERT(0 == (flags & ~DRAWOPS_FLAG_MASK));
115 SkASSERT(0 == (data & ~DRAWOPS_DATA_MASK));
116
reed@google.com67908f22011-06-27 14:47:50 +0000117 return (op << (DRAWOPS_FLAG_BITS + DRAWOPS_DATA_BITS)) |
reed@google.combb6992a2011-04-26 17:41:56 +0000118 (flags << DRAWOPS_DATA_BITS) |
119 data;
120}
121
122/** DrawOp specific flag bits
123 */
124
125enum {
126 kSaveLayer_HasBounds_DrawOpFlag = 1 << 0,
127 kSaveLayer_HasPaint_DrawOpFlag = 1 << 1,
128};
129enum {
130 kClear_HasColor_DrawOpFlag = 1 << 0
131};
132enum {
133 kDrawTextOnPath_HasMatrix_DrawOpFlag = 1 << 0
134};
135enum {
136 kDrawVertices_HasTexs_DrawOpFlag = 1 << 0,
137 kDrawVertices_HasColors_DrawOpFlag = 1 << 1,
138 kDrawVertices_HasIndices_DrawOpFlag = 1 << 2,
139};
scroggo@google.com58be6822012-07-30 14:40:01 +0000140enum {
141 kDrawBitmap_HasPaint_DrawOpsFlag = 1 << 0,
142 // Specific to drawBitmapRect, but needs to be different from HasPaint,
143 // which is used for all drawBitmap calls, so include it here.
144 kDrawBitmap_HasSrcRect_DrawOpsFlag = 1 << 1,
145};
reed@google.combb6992a2011-04-26 17:41:56 +0000146
147///////////////////////////////////////////////////////////////////////////////
148
scroggo@google.com284bf502012-07-17 16:10:34 +0000149class BitmapInfo : SkNoncopyable {
150public:
151 BitmapInfo(SkBitmap* bitmap, uint32_t genID, int toBeDrawnCount)
152 : fBitmap(bitmap)
153 , fGenID(genID)
scroggo@google.com15011ee2012-07-26 20:03:32 +0000154 , fBytesAllocated(0)
scroggo@google.com284bf502012-07-17 16:10:34 +0000155 , fMoreRecentlyUsed(NULL)
156 , fLessRecentlyUsed(NULL)
157 , fToBeDrawnCount(toBeDrawnCount)
158 {}
159
160 ~BitmapInfo() {
161 SkASSERT(0 == fToBeDrawnCount);
162 SkDELETE(fBitmap);
163 }
164
165 void addDraws(int drawsToAdd) {
166 if (0 == fToBeDrawnCount) {
167 // The readers will only ever decrement the count, so once the
168 // count is zero, the writer will be the only one modifying it,
169 // so it does not need to be an atomic operation.
170 fToBeDrawnCount = drawsToAdd;
171 } else {
172 sk_atomic_add(&fToBeDrawnCount, drawsToAdd);
173 }
174 }
175
176 void decDraws() {
177 sk_atomic_dec(&fToBeDrawnCount);
178 }
179
180 int drawCount() const {
181 return fToBeDrawnCount;
182 }
183
184 SkBitmap* fBitmap;
185 // Store the generation ID of the original bitmap, since copying does
186 // not copy this field, so fBitmap's generation ID will not be useful
187 // for comparing.
scroggo@google.com15011ee2012-07-26 20:03:32 +0000188 // FIXME: Is it reasonable to make copying a bitmap/pixelref copy the
189 // generation ID?
scroggo@google.com284bf502012-07-17 16:10:34 +0000190 uint32_t fGenID;
scroggo@google.com15011ee2012-07-26 20:03:32 +0000191 // Keep track of the bytes allocated for this bitmap. When replacing the
192 // bitmap or removing this BitmapInfo we know how much memory has been
193 // reclaimed.
194 size_t fBytesAllocated;
scroggo@google.com284bf502012-07-17 16:10:34 +0000195 // TODO: Generalize the LRU caching mechanism
196 BitmapInfo* fMoreRecentlyUsed;
197 BitmapInfo* fLessRecentlyUsed;
198private:
199 int fToBeDrawnCount;
200};
201
scroggo@google.com565254b2012-06-28 15:41:32 +0000202static inline bool shouldFlattenBitmaps(uint32_t flags) {
scroggo@google.com3cb969f2012-07-27 20:39:19 +0000203 return SkToBool(flags & SkGPipeWriter::kCrossProcess_Flag
204 && !(flags & SkGPipeWriter::kSharedAddressSpace_Flag));
scroggo@google.com565254b2012-06-28 15:41:32 +0000205}
206
207///////////////////////////////////////////////////////////////////////////////
208
reed@google.combb6992a2011-04-26 17:41:56 +0000209enum PaintOps {
210 kReset_PaintOp, // no arg
211
212 kFlags_PaintOp, // arg inline
213 kColor_PaintOp, // arg 32
214 kStyle_PaintOp, // arg inline
215 kJoin_PaintOp, // arg inline
216 kCap_PaintOp, // arg inline
217 kWidth_PaintOp, // arg scalar
218 kMiter_PaintOp,// arg scalar
219
220 kEncoding_PaintOp, // arg inline - text
221 kHinting_PaintOp, // arg inline - text
222 kAlign_PaintOp, // arg inline - text
223 kTextSize_PaintOp, // arg scalar - text
224 kTextScaleX_PaintOp,// arg scalar - text
225 kTextSkewX_PaintOp, // arg scalar - text
reed@google.comf5842f72011-05-04 18:30:04 +0000226 kTypeface_PaintOp, // arg inline (index) - text
227
reed@google.comb55d1182011-05-11 00:42:04 +0000228 kFlatIndex_PaintOp, // flags=paintflat, data=index
reed@google.combb6992a2011-04-26 17:41:56 +0000229};
230
231#define PAINTOPS_OP_BITS 8
232#define PAINTOPS_FLAG_BITS 4
233#define PAINTOPS_DATA_BITS 20
234
235#define PAINTOPS_OP_MASK ((1 << PAINTOPS_OP_BITS) - 1)
236#define PAINTOPS_FLAG_MASK ((1 << PAINTOPS_FLAG_BITS) - 1)
237#define PAINTOPS_DATA_MASK ((1 << PAINTOPS_DATA_BITS) - 1)
238
caryclark@google.com920901d2012-06-06 12:04:11 +0000239static inline unsigned PaintOp_unpackOp(uint32_t op32) {
reed@google.combb6992a2011-04-26 17:41:56 +0000240 return (op32 >> (PAINTOPS_FLAG_BITS + PAINTOPS_DATA_BITS));
241}
242
caryclark@google.com920901d2012-06-06 12:04:11 +0000243static inline unsigned PaintOp_unpackFlags(uint32_t op32) {
reed@google.combb6992a2011-04-26 17:41:56 +0000244 return (op32 >> PAINTOPS_DATA_BITS) & PAINTOPS_FLAG_MASK;
245}
246
caryclark@google.com920901d2012-06-06 12:04:11 +0000247static inline unsigned PaintOp_unpackData(uint32_t op32) {
reed@google.combb6992a2011-04-26 17:41:56 +0000248 return op32 & PAINTOPS_DATA_MASK;
249}
250
caryclark@google.com920901d2012-06-06 12:04:11 +0000251static inline uint32_t PaintOp_packOp(PaintOps op) {
reed@google.combb6992a2011-04-26 17:41:56 +0000252 SkASSERT(0 == (op & ~PAINTOPS_OP_MASK));
253
reed@google.com67908f22011-06-27 14:47:50 +0000254 return op << (PAINTOPS_FLAG_BITS + PAINTOPS_DATA_BITS);
reed@google.combb6992a2011-04-26 17:41:56 +0000255}
256
caryclark@google.com920901d2012-06-06 12:04:11 +0000257static inline uint32_t PaintOp_packOpData(PaintOps op, unsigned data) {
reed@google.combb6992a2011-04-26 17:41:56 +0000258 SkASSERT(0 == (op & ~PAINTOPS_OP_MASK));
259 SkASSERT(0 == (data & ~PAINTOPS_DATA_MASK));
260
reed@google.com67908f22011-06-27 14:47:50 +0000261 return (op << (PAINTOPS_FLAG_BITS + PAINTOPS_DATA_BITS)) | data;
reed@google.combb6992a2011-04-26 17:41:56 +0000262}
263
caryclark@google.com920901d2012-06-06 12:04:11 +0000264static inline uint32_t PaintOp_packOpFlagData(PaintOps op, unsigned flags, unsigned data) {
reed@google.combb6992a2011-04-26 17:41:56 +0000265 SkASSERT(0 == (op & ~PAINTOPS_OP_MASK));
266 SkASSERT(0 == (flags & ~PAINTOPS_FLAG_MASK));
267 SkASSERT(0 == (data & ~PAINTOPS_DATA_MASK));
268
reed@google.com67908f22011-06-27 14:47:50 +0000269 return (op << (PAINTOPS_FLAG_BITS + PAINTOPS_DATA_BITS)) |
reed@google.combb6992a2011-04-26 17:41:56 +0000270 (flags << PAINTOPS_DATA_BITS) |
271 data;
272}
273
reed@google.combb6992a2011-04-26 17:41:56 +0000274#endif