aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrPath.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/GrPath.h')
-rw-r--r--src/gpu/GrPath.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gpu/GrPath.h b/src/gpu/GrPath.h
index ad3a5c30e0..c7e7f92064 100644
--- a/src/gpu/GrPath.h
+++ b/src/gpu/GrPath.h
@@ -1,4 +1,3 @@
-
/*
* Copyright 2012 Google Inc.
*
@@ -10,7 +9,7 @@
#define GrPath_DEFINED
#include "GrResource.h"
-#include "GrRect.h"
+#include "SkRect.h"
class GrPath : public GrResource {
public:
@@ -18,10 +17,10 @@ public:
GrPath(GrGpu* gpu, bool isWrapped) : INHERITED(gpu, isWrapped) {}
- const GrRect& getBounds() const { return fBounds; }
+ const SkRect& getBounds() const { return fBounds; }
protected:
- GrRect fBounds;
+ SkRect fBounds;
private:
typedef GrResource INHERITED;