blob: 2c34d360d6e58f0093d4aae59c51d616defe8e84 [file] [log] [blame]
djsollen@google.com5587ac02013-08-29 20:20:40 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkCanvasStateUtils.h"
9
djsollen@google.com5587ac02013-08-29 20:20:40 +000010#include "SkCanvas.h"
djsollen@google.com339e79f2013-09-04 17:16:00 +000011#include "SkCanvasStack.h"
robertphillips9a53fd72015-06-22 09:46:59 -070012#include "SkDevice.h"
commit-bot@chromium.org07f6cf32013-09-18 20:15:12 +000013#include "SkErrorInternals.h"
djsollen@google.com5587ac02013-08-29 20:20:40 +000014#include "SkWriter32.h"
15
djsollen@google.com5587ac02013-08-29 20:20:40 +000016/*
17 * WARNING: The structs below are part of a stable ABI and as such we explicitly
18 * use unambigious primitives (e.g. int32_t instead of an enum).
19 *
scroggo352c2182014-07-15 12:34:26 -070020 * ANY CHANGES TO THE STRUCTS BELOW THAT IMPACT THE ABI SHOULD RESULT IN A NEW
21 * NEW SUBCLASS OF SkCanvasState. SUCH CHANGES SHOULD ONLY BE MADE IF ABSOLUTELY
22 * NECESSARY!
scroggo24519372014-07-22 12:38:55 -070023 *
24 * In order to test changes, run the CanvasState tests. gyp/canvas_state_lib.gyp
25 * describes how to create a library to pass to the CanvasState tests. The tests
26 * should succeed when building the library with your changes and passing that to
27 * the tests running in the unchanged Skia.
djsollen@google.com5587ac02013-08-29 20:20:40 +000028 */
29enum RasterConfigs {
30 kUnknown_RasterConfig = 0,
31 kRGB_565_RasterConfig = 1,
32 kARGB_8888_RasterConfig = 2
33};
34typedef int32_t RasterConfig;
35
36enum CanvasBackends {
37 kUnknown_CanvasBackend = 0,
38 kRaster_CanvasBackend = 1,
39 kGPU_CanvasBackend = 2,
40 kPDF_CanvasBackend = 3
41};
42typedef int32_t CanvasBackend;
43
44struct ClipRect {
45 int32_t left, top, right, bottom;
46};
47
48struct SkMCState {
49 float matrix[9];
50 // NOTE: this only works for non-antialiased clips
51 int32_t clipRectCount;
52 ClipRect* clipRects;
53};
54
scroggo352c2182014-07-15 12:34:26 -070055// NOTE: If you add more members, create a new subclass of SkCanvasState with a
56// new CanvasState::version.
djsollen@google.com5587ac02013-08-29 20:20:40 +000057struct SkCanvasLayerState {
58 CanvasBackend type;
59 int32_t x, y;
60 int32_t width;
61 int32_t height;
62
63 SkMCState mcState;
64
65 union {
66 struct {
67 RasterConfig config; // pixel format: a value from RasterConfigs.
scroggo352c2182014-07-15 12:34:26 -070068 uint64_t rowBytes; // Number of bytes from start of one line to next.
djsollen@google.com5587ac02013-08-29 20:20:40 +000069 void* pixels; // The pixels, all (height * rowBytes) of them.
70 } raster;
71 struct {
72 int32_t textureID;
73 } gpu;
74 };
75};
76
77class SkCanvasState {
78public:
scroggo352c2182014-07-15 12:34:26 -070079 SkCanvasState(int32_t version, SkCanvas* canvas) {
djsollen@google.com5587ac02013-08-29 20:20:40 +000080 SkASSERT(canvas);
scroggo352c2182014-07-15 12:34:26 -070081 this->version = version;
82 width = canvas->getBaseLayerSize().width();
83 height = canvas->getBaseLayerSize().height();
djsollen@google.com5587ac02013-08-29 20:20:40 +000084
djsollen@google.com5587ac02013-08-29 20:20:40 +000085 }
86
scroggo352c2182014-07-15 12:34:26 -070087 /**
88 * The version this struct was built with. This field must always appear
89 * first in the struct so that when the versions don't match (and the
90 * remaining contents and size are potentially different) we can still
91 * compare the version numbers.
92 */
93 int32_t version;
94 int32_t width;
95 int32_t height;
96 int32_t alignmentPadding;
97};
98
99class SkCanvasState_v1 : public SkCanvasState {
100public:
101 static const int32_t kVersion = 1;
102
103 SkCanvasState_v1(SkCanvas* canvas)
104 : INHERITED(kVersion, canvas)
105 {
106 layerCount = 0;
halcanary96fcdcc2015-08-27 07:41:13 -0700107 layers = nullptr;
scroggo352c2182014-07-15 12:34:26 -0700108 mcState.clipRectCount = 0;
halcanary96fcdcc2015-08-27 07:41:13 -0700109 mcState.clipRects = nullptr;
scroggo352c2182014-07-15 12:34:26 -0700110 originalCanvas = SkRef(canvas);
111 }
112
113 ~SkCanvasState_v1() {
djsollen@google.com5587ac02013-08-29 20:20:40 +0000114 // loop through the layers and free the data allocated to the clipRects
115 for (int i = 0; i < layerCount; ++i) {
116 sk_free(layers[i].mcState.clipRects);
117 }
118
119 sk_free(mcState.clipRects);
120 sk_free(layers);
121
122 // it is now safe to free the canvas since there should be no remaining
123 // references to the content that is referenced by this canvas (e.g. pixels)
124 originalCanvas->unref();
125 }
126
djsollen@google.com5587ac02013-08-29 20:20:40 +0000127 SkMCState mcState;
128
129 int32_t layerCount;
130 SkCanvasLayerState* layers;
djsollen@google.com5587ac02013-08-29 20:20:40 +0000131private:
132 SkCanvas* originalCanvas;
scroggo352c2182014-07-15 12:34:26 -0700133 typedef SkCanvasState INHERITED;
djsollen@google.com5587ac02013-08-29 20:20:40 +0000134};
135
136////////////////////////////////////////////////////////////////////////////////
137
138class ClipValidator : public SkCanvas::ClipVisitor {
139public:
140 ClipValidator() : fFailed(false) {}
141 bool failed() { return fFailed; }
142
143 // ClipVisitor
mtklein36352bf2015-03-25 18:17:31 -0700144 void clipRect(const SkRect& rect, SkRegion::Op op, bool antialias) override {
djsollen@google.com5587ac02013-08-29 20:20:40 +0000145 fFailed |= antialias;
146 }
147
mtklein36352bf2015-03-25 18:17:31 -0700148 void clipRRect(const SkRRect& rrect, SkRegion::Op op, bool antialias) override {
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000149 fFailed |= antialias;
150 }
151
mtklein36352bf2015-03-25 18:17:31 -0700152 void clipPath(const SkPath&, SkRegion::Op, bool antialias) override {
djsollen@google.com5587ac02013-08-29 20:20:40 +0000153 fFailed |= antialias;
154 }
155
156private:
157 bool fFailed;
158};
159
160static void setup_MC_state(SkMCState* state, const SkMatrix& matrix, const SkRegion& clip) {
161 // initialize the struct
162 state->clipRectCount = 0;
163
164 // capture the matrix
165 for (int i = 0; i < 9; i++) {
166 state->matrix[i] = matrix.get(i);
167 }
168
169 /*
170 * capture the clip
171 *
172 * storage is allocated on the stack for the first 4 rects. This value was
173 * chosen somewhat arbitrarily, but does allow us to represent simple clips
174 * and some more common complex clips (e.g. a clipRect with a sub-rect
175 * clipped out of its interior) without needing to malloc any additional memory.
176 */
commit-bot@chromium.org19382422014-01-14 20:51:26 +0000177 SkSWriter32<4*sizeof(ClipRect)> clipWriter;
djsollen@google.com5587ac02013-08-29 20:20:40 +0000178
179 if (!clip.isEmpty()) {
180 // only returns the b/w clip so aa clips fail
181 SkRegion::Iterator clip_iterator(clip);
182 for (; !clip_iterator.done(); clip_iterator.next()) {
183 // this assumes the SkIRect is stored in l,t,r,b ordering which
184 // matches the ordering of our ClipRect struct
185 clipWriter.writeIRect(clip_iterator.rect());
186 state->clipRectCount++;
187 }
188 }
189
190 // allocate memory for the clip then and copy them to the struct
reed@google.com44699382013-10-31 17:28:30 +0000191 state->clipRects = (ClipRect*) sk_malloc_throw(clipWriter.bytesWritten());
djsollen@google.com5587ac02013-08-29 20:20:40 +0000192 clipWriter.flatten(state->clipRects);
193}
194
195
196
197SkCanvasState* SkCanvasStateUtils::CaptureCanvasState(SkCanvas* canvas) {
198 SkASSERT(canvas);
199
200 // Check the clip can be decomposed into rectangles (i.e. no soft clips).
201 ClipValidator validator;
202 canvas->replayClips(&validator);
203 if (validator.failed()) {
commit-bot@chromium.org07f6cf32013-09-18 20:15:12 +0000204 SkErrorInternals::SetError(kInvalidOperation_SkError,
205 "CaptureCanvasState does not support canvases with antialiased clips.\n");
halcanary96fcdcc2015-08-27 07:41:13 -0700206 return nullptr;
djsollen@google.com5587ac02013-08-29 20:20:40 +0000207 }
208
halcanary385fe4d2015-08-26 13:07:48 -0700209 SkAutoTDelete<SkCanvasState_v1> canvasState(new SkCanvasState_v1(canvas));
djsollen@google.com5587ac02013-08-29 20:20:40 +0000210
211 // decompose the total matrix and clip
commit-bot@chromium.org5c70cdc2014-03-08 03:57:19 +0000212 setup_MC_state(&canvasState->mcState, canvas->getTotalMatrix(),
213 canvas->internal_private_getTotalClip());
djsollen@google.com5587ac02013-08-29 20:20:40 +0000214
215 /*
216 * decompose the layers
217 *
218 * storage is allocated on the stack for the first 3 layers. It is common in
219 * some view systems (e.g. Android) that a few non-clipped layers are present
220 * and we will not need to malloc any additional memory in those cases.
221 */
commit-bot@chromium.org19382422014-01-14 20:51:26 +0000222 SkSWriter32<3*sizeof(SkCanvasLayerState)> layerWriter;
djsollen@google.com5587ac02013-08-29 20:20:40 +0000223 int layerCount = 0;
224 for (SkCanvas::LayerIter layer(canvas, true/*skipEmptyClips*/); !layer.done(); layer.next()) {
225
226 // we currently only work for bitmap backed devices
reed9572a102015-05-26 19:22:17 -0700227 SkPixmap pmap;
228 if (!layer.device()->accessPixels(&pmap) || 0 == pmap.width() || 0 == pmap.height()) {
halcanary96fcdcc2015-08-27 07:41:13 -0700229 return nullptr;
djsollen@google.com5587ac02013-08-29 20:20:40 +0000230 }
231
232 SkCanvasLayerState* layerState =
233 (SkCanvasLayerState*) layerWriter.reserve(sizeof(SkCanvasLayerState));
234 layerState->type = kRaster_CanvasBackend;
235 layerState->x = layer.x();
236 layerState->y = layer.y();
reed9572a102015-05-26 19:22:17 -0700237 layerState->width = pmap.width();
238 layerState->height = pmap.height();
djsollen@google.com5587ac02013-08-29 20:20:40 +0000239
reed9572a102015-05-26 19:22:17 -0700240 switch (pmap.colorType()) {
commit-bot@chromium.org28fcae22014-04-11 17:15:40 +0000241 case kN32_SkColorType:
djsollen@google.com5587ac02013-08-29 20:20:40 +0000242 layerState->raster.config = kARGB_8888_RasterConfig;
243 break;
commit-bot@chromium.orge24ad232014-02-16 22:03:38 +0000244 case kRGB_565_SkColorType:
djsollen@google.com5587ac02013-08-29 20:20:40 +0000245 layerState->raster.config = kRGB_565_RasterConfig;
246 break;
247 default:
halcanary96fcdcc2015-08-27 07:41:13 -0700248 return nullptr;
djsollen@google.com5587ac02013-08-29 20:20:40 +0000249 }
reed9572a102015-05-26 19:22:17 -0700250 layerState->raster.rowBytes = pmap.rowBytes();
251 layerState->raster.pixels = pmap.writable_addr();
djsollen@google.com5587ac02013-08-29 20:20:40 +0000252
253 setup_MC_state(&layerState->mcState, layer.matrix(), layer.clip());
254 layerCount++;
255 }
256
257 // allocate memory for the layers and then and copy them to the struct
reed@google.com44699382013-10-31 17:28:30 +0000258 SkASSERT(layerWriter.bytesWritten() == layerCount * sizeof(SkCanvasLayerState));
djsollen@google.com5587ac02013-08-29 20:20:40 +0000259 canvasState->layerCount = layerCount;
reed@google.com44699382013-10-31 17:28:30 +0000260 canvasState->layers = (SkCanvasLayerState*) sk_malloc_throw(layerWriter.bytesWritten());
djsollen@google.com5587ac02013-08-29 20:20:40 +0000261 layerWriter.flatten(canvasState->layers);
262
mtklein18300a32016-03-16 13:53:35 -0700263 return canvasState.release();
djsollen@google.com5587ac02013-08-29 20:20:40 +0000264}
265
266////////////////////////////////////////////////////////////////////////////////
267
268static void setup_canvas_from_MC_state(const SkMCState& state, SkCanvas* canvas) {
269 // reconstruct the matrix
270 SkMatrix matrix;
271 for (int i = 0; i < 9; i++) {
272 matrix.set(i, state.matrix[i]);
273 }
274
275 // reconstruct the clip
276 SkRegion clip;
277 for (int i = 0; i < state.clipRectCount; ++i) {
278 clip.op(SkIRect::MakeLTRB(state.clipRects[i].left,
279 state.clipRects[i].top,
280 state.clipRects[i].right,
281 state.clipRects[i].bottom),
282 SkRegion::kUnion_Op);
283 }
284
285 canvas->setMatrix(matrix);
286 canvas->setClipRegion(clip);
287}
288
289static SkCanvas* create_canvas_from_canvas_layer(const SkCanvasLayerState& layerState) {
290 SkASSERT(kRaster_CanvasBackend == layerState.type);
291
292 SkBitmap bitmap;
commit-bot@chromium.orge24ad232014-02-16 22:03:38 +0000293 SkColorType colorType =
commit-bot@chromium.org28fcae22014-04-11 17:15:40 +0000294 layerState.raster.config == kARGB_8888_RasterConfig ? kN32_SkColorType :
commit-bot@chromium.orge24ad232014-02-16 22:03:38 +0000295 layerState.raster.config == kRGB_565_RasterConfig ? kRGB_565_SkColorType :
296 kUnknown_SkColorType;
djsollen@google.com5587ac02013-08-29 20:20:40 +0000297
commit-bot@chromium.orge24ad232014-02-16 22:03:38 +0000298 if (colorType == kUnknown_SkColorType) {
halcanary96fcdcc2015-08-27 07:41:13 -0700299 return nullptr;
djsollen@google.com5587ac02013-08-29 20:20:40 +0000300 }
301
commit-bot@chromium.orge24ad232014-02-16 22:03:38 +0000302 bitmap.installPixels(SkImageInfo::Make(layerState.width, layerState.height,
303 colorType, kPremul_SkAlphaType),
scroggo352c2182014-07-15 12:34:26 -0700304 layerState.raster.pixels, (size_t) layerState.raster.rowBytes);
djsollen@google.com5587ac02013-08-29 20:20:40 +0000305
306 SkASSERT(!bitmap.empty());
307 SkASSERT(!bitmap.isNull());
308
halcanary385fe4d2015-08-26 13:07:48 -0700309 SkAutoTUnref<SkCanvas> canvas(new SkCanvas(bitmap));
djsollen@google.com5587ac02013-08-29 20:20:40 +0000310
311 // setup the matrix and clip
312 setup_canvas_from_MC_state(layerState.mcState, canvas.get());
313
mtklein18300a32016-03-16 13:53:35 -0700314 return canvas.release();
djsollen@google.com5587ac02013-08-29 20:20:40 +0000315}
316
317SkCanvas* SkCanvasStateUtils::CreateFromCanvasState(const SkCanvasState* state) {
318 SkASSERT(state);
scroggo352c2182014-07-15 12:34:26 -0700319 // Currently there is only one possible version.
320 SkASSERT(SkCanvasState_v1::kVersion == state->version);
djsollen@google.com5587ac02013-08-29 20:20:40 +0000321
scroggo352c2182014-07-15 12:34:26 -0700322 const SkCanvasState_v1* state_v1 = static_cast<const SkCanvasState_v1*>(state);
djsollen@google.com5587ac02013-08-29 20:20:40 +0000323
scroggo352c2182014-07-15 12:34:26 -0700324 if (state_v1->layerCount < 1) {
halcanary96fcdcc2015-08-27 07:41:13 -0700325 return nullptr;
djsollen@google.com5587ac02013-08-29 20:20:40 +0000326 }
327
halcanary385fe4d2015-08-26 13:07:48 -0700328 SkAutoTUnref<SkCanvasStack> canvas(new SkCanvasStack(state->width, state->height));
djsollen@google.com5587ac02013-08-29 20:20:40 +0000329
330 // setup the matrix and clip on the n-way canvas
scroggo352c2182014-07-15 12:34:26 -0700331 setup_canvas_from_MC_state(state_v1->mcState, canvas);
djsollen@google.com5587ac02013-08-29 20:20:40 +0000332
333 // Iterate over the layers and add them to the n-way canvas
scroggo352c2182014-07-15 12:34:26 -0700334 for (int i = state_v1->layerCount - 1; i >= 0; --i) {
335 SkAutoTUnref<SkCanvas> canvasLayer(create_canvas_from_canvas_layer(state_v1->layers[i]));
djsollen@google.com5587ac02013-08-29 20:20:40 +0000336 if (!canvasLayer.get()) {
halcanary96fcdcc2015-08-27 07:41:13 -0700337 return nullptr;
djsollen@google.com5587ac02013-08-29 20:20:40 +0000338 }
scroggo352c2182014-07-15 12:34:26 -0700339 canvas->pushCanvas(canvasLayer.get(), SkIPoint::Make(state_v1->layers[i].x,
340 state_v1->layers[i].y));
djsollen@google.com5587ac02013-08-29 20:20:40 +0000341 }
342
mtklein18300a32016-03-16 13:53:35 -0700343 return canvas.release();
djsollen@google.com5587ac02013-08-29 20:20:40 +0000344}
345
346////////////////////////////////////////////////////////////////////////////////
347
348void SkCanvasStateUtils::ReleaseCanvasState(SkCanvasState* state) {
scroggo352c2182014-07-15 12:34:26 -0700349 SkASSERT(!state || SkCanvasState_v1::kVersion == state->version);
350 // Upcast to the correct version of SkCanvasState. This avoids having a virtual destructor on
351 // SkCanvasState. That would be strange since SkCanvasState has no other virtual functions, and
352 // instead uses the field "version" to determine how to behave.
halcanary385fe4d2015-08-26 13:07:48 -0700353 delete static_cast<SkCanvasState_v1*>(state);
djsollen@google.com5587ac02013-08-29 20:20:40 +0000354}