blob: 3f8a7480d848428a3123cc78ee00f836c644e800 [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};
140
141///////////////////////////////////////////////////////////////////////////////
142
scroggo@google.com284bf502012-07-17 16:10:34 +0000143class BitmapInfo : SkNoncopyable {
144public:
145 BitmapInfo(SkBitmap* bitmap, uint32_t genID, int toBeDrawnCount)
146 : fBitmap(bitmap)
147 , fGenID(genID)
scroggo@google.com15011ee2012-07-26 20:03:32 +0000148 , fBytesAllocated(0)
scroggo@google.com284bf502012-07-17 16:10:34 +0000149 , fMoreRecentlyUsed(NULL)
150 , fLessRecentlyUsed(NULL)
151 , fToBeDrawnCount(toBeDrawnCount)
152 {}
153
154 ~BitmapInfo() {
155 SkASSERT(0 == fToBeDrawnCount);
156 SkDELETE(fBitmap);
157 }
158
159 void addDraws(int drawsToAdd) {
160 if (0 == fToBeDrawnCount) {
161 // The readers will only ever decrement the count, so once the
162 // count is zero, the writer will be the only one modifying it,
163 // so it does not need to be an atomic operation.
164 fToBeDrawnCount = drawsToAdd;
165 } else {
166 sk_atomic_add(&fToBeDrawnCount, drawsToAdd);
167 }
168 }
169
170 void decDraws() {
171 sk_atomic_dec(&fToBeDrawnCount);
172 }
173
174 int drawCount() const {
175 return fToBeDrawnCount;
176 }
177
178 SkBitmap* fBitmap;
179 // Store the generation ID of the original bitmap, since copying does
180 // not copy this field, so fBitmap's generation ID will not be useful
181 // for comparing.
scroggo@google.com15011ee2012-07-26 20:03:32 +0000182 // FIXME: Is it reasonable to make copying a bitmap/pixelref copy the
183 // generation ID?
scroggo@google.com284bf502012-07-17 16:10:34 +0000184 uint32_t fGenID;
scroggo@google.com15011ee2012-07-26 20:03:32 +0000185 // Keep track of the bytes allocated for this bitmap. When replacing the
186 // bitmap or removing this BitmapInfo we know how much memory has been
187 // reclaimed.
188 size_t fBytesAllocated;
scroggo@google.com284bf502012-07-17 16:10:34 +0000189 // TODO: Generalize the LRU caching mechanism
190 BitmapInfo* fMoreRecentlyUsed;
191 BitmapInfo* fLessRecentlyUsed;
192private:
193 int fToBeDrawnCount;
194};
195
scroggo@google.com565254b2012-06-28 15:41:32 +0000196static inline bool shouldFlattenBitmaps(uint32_t flags) {
scroggo@google.com3cb969f2012-07-27 20:39:19 +0000197 return SkToBool(flags & SkGPipeWriter::kCrossProcess_Flag
198 && !(flags & SkGPipeWriter::kSharedAddressSpace_Flag));
scroggo@google.com565254b2012-06-28 15:41:32 +0000199}
200
201///////////////////////////////////////////////////////////////////////////////
202
reed@google.combb6992a2011-04-26 17:41:56 +0000203enum PaintOps {
204 kReset_PaintOp, // no arg
205
206 kFlags_PaintOp, // arg inline
207 kColor_PaintOp, // arg 32
208 kStyle_PaintOp, // arg inline
209 kJoin_PaintOp, // arg inline
210 kCap_PaintOp, // arg inline
211 kWidth_PaintOp, // arg scalar
212 kMiter_PaintOp,// arg scalar
213
214 kEncoding_PaintOp, // arg inline - text
215 kHinting_PaintOp, // arg inline - text
216 kAlign_PaintOp, // arg inline - text
217 kTextSize_PaintOp, // arg scalar - text
218 kTextScaleX_PaintOp,// arg scalar - text
219 kTextSkewX_PaintOp, // arg scalar - text
reed@google.comf5842f72011-05-04 18:30:04 +0000220 kTypeface_PaintOp, // arg inline (index) - text
221
reed@google.comb55d1182011-05-11 00:42:04 +0000222 kFlatIndex_PaintOp, // flags=paintflat, data=index
reed@google.combb6992a2011-04-26 17:41:56 +0000223};
224
225#define PAINTOPS_OP_BITS 8
226#define PAINTOPS_FLAG_BITS 4
227#define PAINTOPS_DATA_BITS 20
228
229#define PAINTOPS_OP_MASK ((1 << PAINTOPS_OP_BITS) - 1)
230#define PAINTOPS_FLAG_MASK ((1 << PAINTOPS_FLAG_BITS) - 1)
231#define PAINTOPS_DATA_MASK ((1 << PAINTOPS_DATA_BITS) - 1)
232
caryclark@google.com920901d2012-06-06 12:04:11 +0000233static inline unsigned PaintOp_unpackOp(uint32_t op32) {
reed@google.combb6992a2011-04-26 17:41:56 +0000234 return (op32 >> (PAINTOPS_FLAG_BITS + PAINTOPS_DATA_BITS));
235}
236
caryclark@google.com920901d2012-06-06 12:04:11 +0000237static inline unsigned PaintOp_unpackFlags(uint32_t op32) {
reed@google.combb6992a2011-04-26 17:41:56 +0000238 return (op32 >> PAINTOPS_DATA_BITS) & PAINTOPS_FLAG_MASK;
239}
240
caryclark@google.com920901d2012-06-06 12:04:11 +0000241static inline unsigned PaintOp_unpackData(uint32_t op32) {
reed@google.combb6992a2011-04-26 17:41:56 +0000242 return op32 & PAINTOPS_DATA_MASK;
243}
244
caryclark@google.com920901d2012-06-06 12:04:11 +0000245static inline uint32_t PaintOp_packOp(PaintOps op) {
reed@google.combb6992a2011-04-26 17:41:56 +0000246 SkASSERT(0 == (op & ~PAINTOPS_OP_MASK));
247
reed@google.com67908f22011-06-27 14:47:50 +0000248 return op << (PAINTOPS_FLAG_BITS + PAINTOPS_DATA_BITS);
reed@google.combb6992a2011-04-26 17:41:56 +0000249}
250
caryclark@google.com920901d2012-06-06 12:04:11 +0000251static inline uint32_t PaintOp_packOpData(PaintOps op, unsigned data) {
reed@google.combb6992a2011-04-26 17:41:56 +0000252 SkASSERT(0 == (op & ~PAINTOPS_OP_MASK));
253 SkASSERT(0 == (data & ~PAINTOPS_DATA_MASK));
254
reed@google.com67908f22011-06-27 14:47:50 +0000255 return (op << (PAINTOPS_FLAG_BITS + PAINTOPS_DATA_BITS)) | data;
reed@google.combb6992a2011-04-26 17:41:56 +0000256}
257
caryclark@google.com920901d2012-06-06 12:04:11 +0000258static inline uint32_t PaintOp_packOpFlagData(PaintOps op, unsigned flags, unsigned data) {
reed@google.combb6992a2011-04-26 17:41:56 +0000259 SkASSERT(0 == (op & ~PAINTOPS_OP_MASK));
260 SkASSERT(0 == (flags & ~PAINTOPS_FLAG_MASK));
261 SkASSERT(0 == (data & ~PAINTOPS_DATA_MASK));
262
reed@google.com67908f22011-06-27 14:47:50 +0000263 return (op << (PAINTOPS_FLAG_BITS + PAINTOPS_DATA_BITS)) |
reed@google.combb6992a2011-04-26 17:41:56 +0000264 (flags << PAINTOPS_DATA_BITS) |
265 data;
266}
267
reed@google.combb6992a2011-04-26 17:41:56 +0000268#endif