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

Side by Side Diff: src/gpu/GrRectanizer.h

Issue 19449002: Replace all instances of GrRect with SkRect. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « src/gpu/GrPathUtils.cpp ('k') | src/gpu/GrRenderTarget.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
2 /* 1 /*
3 * Copyright 2010 Google Inc. 2 * Copyright 2010 Google Inc.
4 * 3 *
5 * 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
6 * found in the LICENSE file. 5 * found in the LICENSE file.
7 */ 6 */
8 7
9
10
11 #ifndef GrRectanizer_DEFINED 8 #ifndef GrRectanizer_DEFINED
12 #define GrRectanizer_DEFINED 9 #define GrRectanizer_DEFINED
13 10
14 #include "GrRect.h" 11 #include "GrPoint.h"
15 12
16 class GrRectanizerPurgeListener { 13 class GrRectanizerPurgeListener {
17 public: 14 public:
18 virtual ~GrRectanizerPurgeListener() {} 15 virtual ~GrRectanizerPurgeListener() {}
19 16
20 virtual void notifyPurgeStrip(void*, int yCoord) = 0; 17 virtual void notifyPurgeStrip(void*, int yCoord) = 0;
21 }; 18 };
22 19
23 class GrRectanizer { 20 class GrRectanizer {
24 public: 21 public:
(...skipping 20 matching lines...) Expand all
45 * Our factory, which returns the subclass du jour 42 * Our factory, which returns the subclass du jour
46 */ 43 */
47 static GrRectanizer* Factory(int width, int height); 44 static GrRectanizer* Factory(int width, int height);
48 45
49 private: 46 private:
50 int fWidth; 47 int fWidth;
51 int fHeight; 48 int fHeight;
52 }; 49 };
53 50
54 #endif 51 #endif
OLDNEW
« no previous file with comments | « src/gpu/GrPathUtils.cpp ('k') | src/gpu/GrRenderTarget.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698