Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Side by Side Diff: src/core/SkBBoxHierarchyRecord.cpp

Issue 340403003: SaveFlags be-gone (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: One more baseurl attempt Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/core/SkBBoxHierarchyRecord.h ('k') | src/core/SkCanvas.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #include "SkBBoxHierarchyRecord.h" 9 #include "SkBBoxHierarchyRecord.h"
10 #include "SkPictureStateTree.h" 10 #include "SkPictureStateTree.h"
11 11
12 SkBBoxHierarchyRecord::SkBBoxHierarchyRecord(const SkISize& size, 12 SkBBoxHierarchyRecord::SkBBoxHierarchyRecord(const SkISize& size,
13 uint32_t recordFlags, 13 uint32_t recordFlags,
14 SkBBoxHierarchy* h) 14 SkBBoxHierarchy* h)
15 : INHERITED(size, recordFlags) { 15 : INHERITED(size, recordFlags) {
16 fStateTree = SkNEW(SkPictureStateTree); 16 fStateTree = SkNEW(SkPictureStateTree);
17 fBoundingHierarchy = h; 17 fBoundingHierarchy = h;
18 fBoundingHierarchy->ref(); 18 fBoundingHierarchy->ref();
19 fBoundingHierarchy->setClient(this); 19 fBoundingHierarchy->setClient(this);
20 } 20 }
21 21
22 void SkBBoxHierarchyRecord::handleBBox(const SkRect& bounds) { 22 void SkBBoxHierarchyRecord::handleBBox(const SkRect& bounds) {
23 SkIRect r; 23 SkIRect r;
24 bounds.roundOut(&r); 24 bounds.roundOut(&r);
25 SkPictureStateTree::Draw* draw = fStateTree->appendDraw(this->writeStream(). bytesWritten()); 25 SkPictureStateTree::Draw* draw = fStateTree->appendDraw(this->writeStream(). bytesWritten());
26 fBoundingHierarchy->insert(draw, r, true); 26 fBoundingHierarchy->insert(draw, r, true);
27 } 27 }
28 28
29 void SkBBoxHierarchyRecord::willSave(SaveFlags flags) { 29 void SkBBoxHierarchyRecord::willSave() {
30 fStateTree->appendSave(); 30 fStateTree->appendSave();
31 this->INHERITED::willSave(flags); 31 this->INHERITED::willSave();
32 } 32 }
33 33
34 SkCanvas::SaveLayerStrategy SkBBoxHierarchyRecord::willSaveLayer(const SkRect* b ounds, 34 SkCanvas::SaveLayerStrategy SkBBoxHierarchyRecord::willSaveLayer(const SkRect* b ounds,
35 const SkPaint* paint, 35 const SkPaint* paint,
36 SaveFlags flags ) { 36 SaveFlags flags ) {
37 // For now, assume all filters affect transparent black. 37 // For now, assume all filters affect transparent black.
38 // FIXME: This could be made less conservative as an optimization. 38 // FIXME: This could be made less conservative as an optimization.
39 bool paintAffectsTransparentBlack = NULL != paint && 39 bool paintAffectsTransparentBlack = NULL != paint &&
40 ((NULL != paint->getImageFilter()) || 40 ((NULL != paint->getImageFilter()) ||
41 (NULL != paint->getColorFilter())); 41 (NULL != paint->getColorFilter()));
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 103
104 bool SkBBoxHierarchyRecord::shouldRewind(void* data) { 104 bool SkBBoxHierarchyRecord::shouldRewind(void* data) {
105 // SkBBoxHierarchy::rewindInserts is called by SkPicture after the 105 // SkBBoxHierarchy::rewindInserts is called by SkPicture after the
106 // SkPicture has rewound its command stream. To match that rewind in the 106 // SkPicture has rewound its command stream. To match that rewind in the
107 // BBH, we rewind all draws that reference commands that were recorded 107 // BBH, we rewind all draws that reference commands that were recorded
108 // past the point to which the SkPicture has rewound, which is given by 108 // past the point to which the SkPicture has rewound, which is given by
109 // writeStream().bytesWritten(). 109 // writeStream().bytesWritten().
110 SkPictureStateTree::Draw* draw = static_cast<SkPictureStateTree::Draw*>(data ); 110 SkPictureStateTree::Draw* draw = static_cast<SkPictureStateTree::Draw*>(data );
111 return draw->fOffset >= writeStream().bytesWritten(); 111 return draw->fOffset >= writeStream().bytesWritten();
112 } 112 }
OLDNEW
« no previous file with comments | « src/core/SkBBoxHierarchyRecord.h ('k') | src/core/SkCanvas.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698