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

Side by Side Diff: src/gpu/GrClipData.cpp

Issue 212933002: Actually identify required saveLayers in SkGpuDevice::EXPERIMENTAL_drawPicture (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Addressed code review issue Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « src/core/SkDevice.cpp ('k') | src/gpu/GrPictureUtils.h » ('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 2010 Google Inc. 2 * Copyright 2010 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 "GrClipData.h" 8 #include "GrClipData.h"
9 9
10 #include "GrSurface.h" 10 #include "GrSurface.h"
11 #include "SkRect.h" 11 #include "SkRect.h"
12 12
13 /////////////////////////////////////////////////////////////////////////////// 13 ///////////////////////////////////////////////////////////////////////////////
14 14
15 /** 15 /**
16 * getConservativeBounds returns the conservative bounding box of the clip 16 * getConservativeBounds returns the conservative bounding box of the clip
17 * in device (as opposed to canvas) coordinates. If the bounding box is 17 * in device (as opposed to canvas) coordinates. If the bounding box is
18 * the result of purely intersections of rects (with an initial replace) 18 * the result of purely intersections of rects (with an initial replace)
19 * isIntersectionOfRects will be set to true. 19 * isIntersectionOfRects will be set to true.
20 */ 20 */
21 void GrClipData::getConservativeBounds(const GrSurface* surface, 21 void GrClipData::getConservativeBounds(int width, int height,
22 SkIRect* devResult, 22 SkIRect* devResult,
23 bool* isIntersectionOfRects) const { 23 bool* isIntersectionOfRects) const {
24 SkRect devBounds; 24 SkRect devBounds;
25 25
26 fClipStack->getConservativeBounds(-fOrigin.fX, 26 fClipStack->getConservativeBounds(-fOrigin.fX,
27 -fOrigin.fY, 27 -fOrigin.fY,
28 surface->width(), 28 width,
29 surface->height(), 29 height,
30 &devBounds, 30 &devBounds,
31 isIntersectionOfRects); 31 isIntersectionOfRects);
32 32
33 devBounds.roundOut(devResult); 33 devBounds.roundOut(devResult);
34 } 34 }
OLDNEW
« no previous file with comments | « src/core/SkDevice.cpp ('k') | src/gpu/GrPictureUtils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698