aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrPath.h
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-06-28 18:48:06 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-06-28 18:48:06 +0000
commitded4f4b163f5aa19c22c871178c55ecb34623846 (patch)
tree20c052999f9345c8cc8d0196e92760a5f4ca9273 /src/gpu/GrPath.h
parent28060e7c940b07038bdaa3c5f8d1d87cf199e228 (diff)
Initial support for GL_NV_path_renering. Experimental, there are still some issues to resolve, set gyp variable skia_nv_path_rendering=1 or build flag GR_GL_USE_NV_PATH_RENDERING to enable.
Diffstat (limited to 'src/gpu/GrPath.h')
-rw-r--r--src/gpu/GrPath.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/GrPath.h b/src/gpu/GrPath.h
index 872859d982..1404546b73 100644
--- a/src/gpu/GrPath.h
+++ b/src/gpu/GrPath.h
@@ -16,10 +16,10 @@ class GrPath : public GrResource {
public:
GrPath(GrGpu* gpu) : INHERITED(gpu) {}
- const GrIRect& getBounds() const { return fBounds; }
+ const GrRect& getBounds() const { return fBounds; }
protected:
- GrIRect fBounds;
+ GrRect fBounds;
private:
typedef GrResource INHERITED;