blob: 680cc364d25b5cf01b3601fc4f5895023e5bf304 [file] [log] [blame]
robertphillips@google.com105a4a52014-02-11 15:10:40 +00001/*
2 * Copyright 2014 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 "SkMatrixClipStateMgr.h"
9#include "SkPictureRecord.h"
10
skia.committer@gmail.com877c4492014-02-12 03:02:04 +000011bool SkMatrixClipStateMgr::MatrixClipState::ClipInfo::clipPath(SkPictureRecord* picRecord,
12 const SkPath& path,
13 SkRegion::Op op,
14 bool doAA,
commit-bot@chromium.orgc5dada82014-02-12 15:48:04 +000015 int matrixID) {
robertphillips@google.com105a4a52014-02-11 15:10:40 +000016 int pathID = picRecord->addPathToHeap(path);
17
commit-bot@chromium.org9a67a7e2014-02-12 23:22:15 +000018 ClipOp* newClip = fClips.append();
19 newClip->fClipType = kPath_ClipType;
20 newClip->fGeom.fPathID = pathID;
21 newClip->fOp = op;
22 newClip->fDoAA = doAA;
23 newClip->fMatrixID = matrixID;
robertphillips@google.com105a4a52014-02-11 15:10:40 +000024 return false;
25}
26
skia.committer@gmail.com877c4492014-02-12 03:02:04 +000027bool SkMatrixClipStateMgr::MatrixClipState::ClipInfo::clipRegion(SkPictureRecord* picRecord,
commit-bot@chromium.org9a67a7e2014-02-12 23:22:15 +000028 int regionID,
skia.committer@gmail.com877c4492014-02-12 03:02:04 +000029 SkRegion::Op op,
commit-bot@chromium.orgc5dada82014-02-12 15:48:04 +000030 int matrixID) {
commit-bot@chromium.org9a67a7e2014-02-12 23:22:15 +000031 ClipOp* newClip = fClips.append();
32 newClip->fClipType = kRegion_ClipType;
33 newClip->fGeom.fRegionID = regionID;
34 newClip->fOp = op;
35 newClip->fDoAA = true; // not necessary but sanity preserving
36 newClip->fMatrixID = matrixID;
robertphillips@google.com105a4a52014-02-11 15:10:40 +000037 return false;
38}
39
commit-bot@chromium.orgc5dada82014-02-12 15:48:04 +000040void SkMatrixClipStateMgr::writeDeltaMat(int currentMatID, int desiredMatID) {
41 const SkMatrix& current = this->lookupMat(currentMatID);
42 const SkMatrix& desired = this->lookupMat(desiredMatID);
43
robertphillips@google.com105a4a52014-02-11 15:10:40 +000044 SkMatrix delta;
robertphillips@google.com3cd6fdf2014-02-11 15:40:54 +000045 bool result = current.invert(&delta);
46 if (result) {
47 delta.preConcat(desired);
48 }
commit-bot@chromium.orgc5dada82014-02-12 15:48:04 +000049 fPicRecord->recordConcat(delta);
robertphillips@google.com105a4a52014-02-11 15:10:40 +000050}
51
52// Note: this only writes out the clips for the current save state. To get the
53// entire clip stack requires iterating of the entire matrix/clip stack.
skia.committer@gmail.com22ef2c32014-02-13 03:01:57 +000054void SkMatrixClipStateMgr::MatrixClipState::ClipInfo::writeClip(int* curMatID,
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +000055 SkMatrixClipStateMgr* mgr) {
robertphillips@google.com105a4a52014-02-11 15:10:40 +000056 for (int i = 0; i < fClips.count(); ++i) {
57 ClipOp& curClip = fClips[i];
58
commit-bot@chromium.orgc5dada82014-02-12 15:48:04 +000059 // TODO: use the matrix ID to skip writing the identity matrix
60 // over and over, i.e.:
61 // if (*curMatID != curClip.fMatrixID) {
62 // mgr->writeDeltaMat...
63 // *curMatID...
64 // }
65 // Right now this optimization would throw off the testing harness.
robertphillips@google.com105a4a52014-02-11 15:10:40 +000066 // TODO: right now we're writing out the delta matrix from the prior
67 // matrix state. This is a side-effect of writing out the entire
68 // clip stack and should be resolved when that is fixed.
commit-bot@chromium.orgc5dada82014-02-12 15:48:04 +000069 mgr->writeDeltaMat(*curMatID, curClip.fMatrixID);
70 *curMatID = curClip.fMatrixID;
skia.committer@gmail.com877c4492014-02-12 03:02:04 +000071
commit-bot@chromium.orgdcecb162014-04-22 17:54:29 +000072 size_t offset = 0;
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +000073
robertphillips@google.com105a4a52014-02-11 15:10:40 +000074 switch (curClip.fClipType) {
75 case kRect_ClipType:
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +000076 offset = mgr->getPicRecord()->recordClipRect(curClip.fGeom.fRRect.rect(),
77 curClip.fOp, curClip.fDoAA);
robertphillips@google.com105a4a52014-02-11 15:10:40 +000078 break;
79 case kRRect_ClipType:
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +000080 offset = mgr->getPicRecord()->recordClipRRect(curClip.fGeom.fRRect, curClip.fOp,
81 curClip.fDoAA);
robertphillips@google.com105a4a52014-02-11 15:10:40 +000082 break;
83 case kPath_ClipType:
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +000084 offset = mgr->getPicRecord()->recordClipPath(curClip.fGeom.fPathID, curClip.fOp,
85 curClip.fDoAA);
robertphillips@google.com105a4a52014-02-11 15:10:40 +000086 break;
commit-bot@chromium.org9a67a7e2014-02-12 23:22:15 +000087 case kRegion_ClipType: {
88 const SkRegion* region = mgr->lookupRegion(curClip.fGeom.fRegionID);
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +000089 offset = mgr->getPicRecord()->recordClipRegion(*region, curClip.fOp);
robertphillips@google.com105a4a52014-02-11 15:10:40 +000090 break;
commit-bot@chromium.org9a67a7e2014-02-12 23:22:15 +000091 }
robertphillips@google.com105a4a52014-02-11 15:10:40 +000092 default:
93 SkASSERT(0);
94 }
robertphillips@google.com105a4a52014-02-11 15:10:40 +000095
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +000096 mgr->addClipOffset(offset);
robertphillips@google.com105a4a52014-02-11 15:10:40 +000097 }
98}
99
100SkMatrixClipStateMgr::SkMatrixClipStateMgr()
101 : fPicRecord(NULL)
skia.committer@gmail.com877c4492014-02-12 03:02:04 +0000102 , fMatrixClipStack(sizeof(MatrixClipState),
103 fMatrixClipStackStorage,
robertphillips@google.com3cd6fdf2014-02-11 15:40:54 +0000104 sizeof(fMatrixClipStackStorage))
105 , fCurOpenStateID(kIdentityWideOpenStateID) {
commit-bot@chromium.orgc5dada82014-02-12 15:48:04 +0000106
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000107 fSkipOffsets = SkNEW(SkTDArray<int>);
108
commit-bot@chromium.orgc5dada82014-02-12 15:48:04 +0000109 // The first slot in the matrix dictionary is reserved for the identity matrix
110 fMatrixDict.append()->reset();
111
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000112 fCurMCState = (MatrixClipState*)fMatrixClipStack.push_back();
Florin Malita5f6102d2014-06-30 10:13:28 -0400113 new (fCurMCState) MatrixClipState(NULL); // balanced in restore()
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000114
115#ifdef SK_DEBUG
116 fActualDepth = 0;
117#endif
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000118}
119
commit-bot@chromium.org9a67a7e2014-02-12 23:22:15 +0000120SkMatrixClipStateMgr::~SkMatrixClipStateMgr() {
121 for (int i = 0; i < fRegionDict.count(); ++i) {
122 SkDELETE(fRegionDict[i]);
123 }
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000124
125 SkDELETE(fSkipOffsets);
commit-bot@chromium.org9a67a7e2014-02-12 23:22:15 +0000126}
127
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000128
Florin Malita5f6102d2014-06-30 10:13:28 -0400129int SkMatrixClipStateMgr::MCStackPush() {
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000130 MatrixClipState* newTop = (MatrixClipState*)fMatrixClipStack.push_back();
Florin Malita5f6102d2014-06-30 10:13:28 -0400131 new (newTop) MatrixClipState(fCurMCState); // balanced in restore()
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000132 fCurMCState = newTop;
133
134 SkDEBUGCODE(this->validate();)
135
136 return fMatrixClipStack.count();
137}
138
Florin Malita5f6102d2014-06-30 10:13:28 -0400139int SkMatrixClipStateMgr::save() {
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000140 SkDEBUGCODE(this->validate();)
141
Florin Malita5f6102d2014-06-30 10:13:28 -0400142 return this->MCStackPush();
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000143}
144
skia.committer@gmail.com877c4492014-02-12 03:02:04 +0000145int SkMatrixClipStateMgr::saveLayer(const SkRect* bounds, const SkPaint* paint,
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000146 SkCanvas::SaveFlags flags) {
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000147#ifdef SK_DEBUG
148 if (fCurMCState->fIsSaveLayer) {
149 SkASSERT(0 == fSkipOffsets->count());
150 }
151#endif
152
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000153 // Since the saveLayer call draws something we need to potentially dump
154 // out the MC state
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000155 SkDEBUGCODE(bool saved =) this->call(kOther_CallType);
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000156
Florin Malita5f6102d2014-06-30 10:13:28 -0400157 int result = this->MCStackPush();
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000158 ++fCurMCState->fLayerID;
159 fCurMCState->fIsSaveLayer = true;
160
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000161#ifdef SK_DEBUG
162 if (saved) {
163 fCurMCState->fExpectedDepth++; // 1 for nesting save
164 }
165 fCurMCState->fExpectedDepth++; // 1 for saveLayer
166#endif
167
commit-bot@chromium.org6c5f1fd2014-02-24 17:24:15 +0000168 *fStateIDStack.append() = fCurOpenStateID;
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000169 fCurMCState->fSavedSkipOffsets = fSkipOffsets;
170
171 // TODO: recycle these rather then new & deleting them on every saveLayer/
172 // restore
173 fSkipOffsets = SkNEW(SkTDArray<int>);
174
Florin Malita5f6102d2014-06-30 10:13:28 -0400175 fPicRecord->recordSaveLayer(bounds, paint, flags);
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000176#ifdef SK_DEBUG
177 fActualDepth++;
178#endif
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000179 return result;
180}
181
182void SkMatrixClipStateMgr::restore() {
183 SkDEBUGCODE(this->validate();)
184
185 if (fCurMCState->fIsSaveLayer) {
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000186 if (fCurMCState->fHasOpen) {
187 fCurMCState->fHasOpen = false;
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000188 fPicRecord->recordRestore(); // Close the open block inside the saveLayer
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000189#ifdef SK_DEBUG
190 SkASSERT(fActualDepth > 0);
191 fActualDepth--;
192#endif
193 } else {
194 SkASSERT(0 == fSkipOffsets->count());
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000195 }
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000196
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000197 // The saveLayer's don't carry any matrix or clip state in the
198 // new scheme so make sure the saveLayer's recordRestore doesn't
199 // try to finalize them (i.e., fill in their skip offsets).
200 fPicRecord->recordRestore(false); // close of saveLayer
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000201#ifdef SK_DEBUG
202 SkASSERT(fActualDepth > 0);
203 fActualDepth--;
204#endif
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000205
commit-bot@chromium.org6c5f1fd2014-02-24 17:24:15 +0000206 SkASSERT(fStateIDStack.count() >= 1);
207 fCurOpenStateID = fStateIDStack[fStateIDStack.count()-1];
208 fStateIDStack.pop();
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000209
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000210 SkASSERT(0 == fSkipOffsets->count());
211 SkASSERT(NULL != fCurMCState->fSavedSkipOffsets);
212
213 SkDELETE(fSkipOffsets);
214 fSkipOffsets = fCurMCState->fSavedSkipOffsets;
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000215 }
216
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000217 bool prevHadOpen = fCurMCState->fHasOpen;
218 bool prevWasSaveLayer = fCurMCState->fIsSaveLayer;
219
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000220 fCurMCState->~MatrixClipState(); // balanced in save()
221 fMatrixClipStack.pop_back();
222 fCurMCState = (MatrixClipState*)fMatrixClipStack.back();
223
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000224 if (!prevWasSaveLayer) {
225 fCurMCState->fHasOpen = prevHadOpen;
226 }
227
228 if (fCurMCState->fIsSaveLayer) {
229 if (0 != fSkipOffsets->count()) {
230 SkASSERT(fCurMCState->fHasOpen);
231 }
232 }
233
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000234 SkDEBUGCODE(this->validate();)
235}
236
237// kIdentityWideOpenStateID (0) is reserved for the identity/wide-open clip state
238int32_t SkMatrixClipStateMgr::NewMCStateID() {
239 // TODO: guard against wrap around
240 // TODO: make uint32_t
241 static int32_t gMCStateID = kIdentityWideOpenStateID;
242 ++gMCStateID;
243 return gMCStateID;
244}
245
commit-bot@chromium.org6c5f1fd2014-02-24 17:24:15 +0000246bool SkMatrixClipStateMgr::isNestingMCState(int stateID) {
247 return fStateIDStack.count() > 0 && fStateIDStack[fStateIDStack.count()-1] == fCurOpenStateID;
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000248}
249
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000250bool SkMatrixClipStateMgr::call(CallType callType) {
251 SkDEBUGCODE(this->validate();)
252
253 if (kMatrix_CallType == callType || kClip_CallType == callType) {
254 fCurMCState->fMCStateID = NewMCStateID();
255 SkDEBUGCODE(this->validate();)
256 return false;
257 }
258
259 SkASSERT(kOther_CallType == callType);
260
261 if (fCurMCState->fMCStateID == fCurOpenStateID) {
262 // Required MC state is already active one - nothing to do
263 SkDEBUGCODE(this->validate();)
264 return false;
265 }
266
skia.committer@gmail.com7911ade2014-02-22 03:02:18 +0000267 if (kIdentityWideOpenStateID != fCurOpenStateID &&
commit-bot@chromium.org6c5f1fd2014-02-24 17:24:15 +0000268 !this->isNestingMCState(fCurOpenStateID)) {
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000269 // Don't write a restore if the open state is one in which a saveLayer
270 // is nested. The save after the saveLayer's restore will close it.
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000271 fPicRecord->recordRestore(); // Close the open block
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000272 fCurMCState->fHasOpen = false;
273#ifdef SK_DEBUG
274 SkASSERT(fActualDepth > 0);
275 fActualDepth--;
276#endif
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000277 }
skia.committer@gmail.com877c4492014-02-12 03:02:04 +0000278
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000279 // Install the required MC state as the active one
280 fCurOpenStateID = fCurMCState->fMCStateID;
281
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000282 if (kIdentityWideOpenStateID == fCurOpenStateID) {
283 SkASSERT(0 == fActualDepth);
284 SkASSERT(!fCurMCState->fHasOpen);
285 SkASSERT(0 == fSkipOffsets->count());
286 return false;
287 }
288
289 SkASSERT(!fCurMCState->fHasOpen);
290 SkASSERT(0 == fSkipOffsets->count());
291 fCurMCState->fHasOpen = true;
Florin Malita5f6102d2014-06-30 10:13:28 -0400292 fPicRecord->recordSave();
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000293#ifdef SK_DEBUG
294 fActualDepth++;
295 SkASSERT(fActualDepth == fCurMCState->fExpectedDepth);
296#endif
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000297
298 // write out clips
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000299 SkDeque::Iter iter(fMatrixClipStack, SkDeque::Iter::kBack_IterStart);
300 const MatrixClipState* state;
301 // Loop back across the MC states until the last saveLayer. The MC
302 // state in front of the saveLayer has already been written out.
303 for (state = (const MatrixClipState*) iter.prev();
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000304 state != NULL;
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000305 state = (const MatrixClipState*) iter.prev()) {
306 if (state->fIsSaveLayer) {
307 break;
308 }
309 }
310
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000311 int curMatID;
312
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000313 if (NULL == state) {
314 // There was no saveLayer in the MC stack so we need to output them all
315 iter.reset(fMatrixClipStack, SkDeque::Iter::kFront_IterStart);
316 state = (const MatrixClipState*) iter.next();
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000317 curMatID = kIdentityMatID;
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000318 } else {
319 // SkDeque's iterators actually return the previous location so we
320 // need to reverse and go forward one to get back on track.
skia.committer@gmail.comc05d2852014-02-20 03:01:56 +0000321 iter.next();
322 SkDEBUGCODE(const MatrixClipState* test = (const MatrixClipState*)) iter.next();
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000323 SkASSERT(test == state);
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000324
325 curMatID = state->fMatrixInfo->getID(this);
326
327 // TODO: this assumes that, in the case of Save|SaveLayer when the SaveLayer
328 // doesn't save the clip, that the SaveLayer doesn't add any additional clip state.
skia.committer@gmail.com7911ade2014-02-22 03:02:18 +0000329 // This assumption will be removed when we explicitly store the clip state in
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000330 // self-contained objects. It is valid for the small set of skps.
331 if (NULL != state->fPrev && state->fClipInfo == state->fPrev->fClipInfo) {
332 // By the above assumption the SaveLayer's MC state has already been
333 // written out by the prior Save so don't output it again.
334 state = (const MatrixClipState*) iter.next();
335 }
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000336 }
337
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000338 for ( ; state != NULL; state = (const MatrixClipState*) iter.next()) {
339 state->fClipInfo->writeClip(&curMatID, this);
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000340 }
341
342 // write out matrix
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000343 // TODO: this test isn't quite right. It should be:
344 // if (curMatID != fCurMCState->fMatrixInfo->getID(this)) {
345 // but right now the testing harness always expects a matrix if
346 // the matrices are non-I
commit-bot@chromium.orgc5dada82014-02-12 15:48:04 +0000347 if (kIdentityMatID != fCurMCState->fMatrixInfo->getID(this)) {
skia.committer@gmail.com877c4492014-02-12 03:02:04 +0000348 // TODO: writing out the delta matrix here is an artifact of the writing
349 // out of the entire clip stack (with its matrices). Ultimately we will
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000350 // write out the CTM here when the clip state is collapsed to a single path.
commit-bot@chromium.orgc5dada82014-02-12 15:48:04 +0000351 this->writeDeltaMat(curMatID, fCurMCState->fMatrixInfo->getID(this));
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000352 }
353
354 SkDEBUGCODE(this->validate();)
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000355 return true;
356}
357
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000358// Fill in the skip offsets for all the clips written in the current block
359void SkMatrixClipStateMgr::fillInSkips(SkWriter32* writer, int32_t restoreOffset) {
360 for (int i = 0; i < fSkipOffsets->count(); ++i) {
361 SkDEBUGCODE(int32_t peek = writer->readTAt<int32_t>((*fSkipOffsets)[i]);)
362 SkASSERT(-1 == peek);
363 writer->overwriteTAt<int32_t>((*fSkipOffsets)[i], restoreOffset);
364 }
365
366 fSkipOffsets->rewind();
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000367 SkASSERT(0 == fSkipOffsets->count());
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000368}
369
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000370void SkMatrixClipStateMgr::finish() {
371 if (kIdentityWideOpenStateID != fCurOpenStateID) {
372 fPicRecord->recordRestore(); // Close the open block
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000373 fCurMCState->fHasOpen = false;
374#ifdef SK_DEBUG
375 SkASSERT(fActualDepth > 0);
376 fActualDepth--;
377#endif
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000378 fCurOpenStateID = kIdentityWideOpenStateID;
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000379 SkASSERT(!fCurMCState->fHasOpen);
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000380 }
381}
382
383#ifdef SK_DEBUG
384void SkMatrixClipStateMgr::validate() {
commit-bot@chromium.org6c5f1fd2014-02-24 17:24:15 +0000385 if (fCurOpenStateID == fCurMCState->fMCStateID && !this->isNestingMCState(fCurOpenStateID)) {
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000386 // The current state is the active one so it should have a skip
387 // offset for each clip
388 SkDeque::Iter iter(fMatrixClipStack, SkDeque::Iter::kBack_IterStart);
389 int clipCount = 0;
390 for (const MatrixClipState* state = (const MatrixClipState*) iter.prev();
commit-bot@chromium.org1cb6d1a2014-02-18 18:13:34 +0000391 state != NULL;
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000392 state = (const MatrixClipState*) iter.prev()) {
robertphillips@google.comfc4ded92014-02-21 17:46:37 +0000393 if (NULL == state->fPrev || state->fPrev->fClipInfo != state->fClipInfo) {
394 clipCount += state->fClipInfo->numClips();
395 }
396 if (state->fIsSaveLayer) {
397 break;
398 }
commit-bot@chromium.org1cb6d1a2014-02-18 18:13:34 +0000399 }
commit-bot@chromium.org92da60c2014-02-19 15:11:23 +0000400
401 SkASSERT(fSkipOffsets->count() == clipCount);
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000402 }
403}
robertphillips@google.com3cd6fdf2014-02-11 15:40:54 +0000404#endif
commit-bot@chromium.orgc5dada82014-02-12 15:48:04 +0000405
commit-bot@chromium.org9a67a7e2014-02-12 23:22:15 +0000406int SkMatrixClipStateMgr::addRegionToDict(const SkRegion& region) {
407 int index = fRegionDict.count();
408 *fRegionDict.append() = SkNEW(SkRegion(region));
409 return index;
410}
411
commit-bot@chromium.orgc5dada82014-02-12 15:48:04 +0000412int SkMatrixClipStateMgr::addMatToDict(const SkMatrix& mat) {
413 if (mat.isIdentity()) {
414 return kIdentityMatID;
415 }
416
417 *fMatrixDict.append() = mat;
418 return fMatrixDict.count()-1;
419}