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

Side by Side Diff: src/utils/SkGatherPixelRefsAndRects.cpp

Issue 777643003: use ClipOp instead of SkRegion for clipping (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years 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/utils/SkDeferredCanvas.cpp ('k') | src/utils/SkNWayCanvas.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 * Copyright 2014 Google Inc. 2 * Copyright 2014 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkGatherPixelRefsAndRects.h" 8 #include "SkGatherPixelRefsAndRects.h"
9 #include "SkNoSaveLayerCanvas.h" 9 #include "SkNoSaveLayerCanvas.h"
10 #include "SkPictureUtils.h" 10 #include "SkPictureUtils.h"
11 11
12 void SkPictureUtils::GatherPixelRefsAndRects(SkPicture* pict, 12 void SkPictureUtils::GatherPixelRefsAndRects(SkPicture* pict,
13 SkPictureUtils::SkPixelRefContainer * prCont) { 13 SkPictureUtils::SkPixelRefContainer * prCont) {
14 if (pict->cullRect().isEmpty()) { 14 if (pict->cullRect().isEmpty()) {
15 return ; 15 return ;
16 } 16 }
17 17
18 SkGatherPixelRefsAndRectsDevice device(SkScalarCeilToInt(pict->cullRect().wi dth()), 18 SkGatherPixelRefsAndRectsDevice device(SkScalarCeilToInt(pict->cullRect().wi dth()),
19 SkScalarCeilToInt(pict->cullRect().he ight()), 19 SkScalarCeilToInt(pict->cullRect().he ight()),
20 prCont); 20 prCont);
21 SkNoSaveLayerCanvas canvas(&device); 21 SkNoSaveLayerCanvas canvas(&device);
22 22
23 canvas.clipRect(pict->cullRect(), SkRegion::kIntersect_Op, false); 23 canvas.clipRect(pict->cullRect());
24 canvas.drawPicture(pict); 24 canvas.drawPicture(pict);
25 } 25 }
OLDNEW
« no previous file with comments | « src/utils/SkDeferredCanvas.cpp ('k') | src/utils/SkNWayCanvas.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698