commit | 728302281920727b96e6cec0bfc7575900f34a8b | [log] [tgz] |
---|---|---|
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Wed Jan 23 20:25:22 2013 +0000 |
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Wed Jan 23 20:25:22 2013 +0000 |
tree | e6db912047f689e3a89e8e26b55c1fab27a42ff3 | |
parent | f91c63e116fda7385d9265a00d3302f46baf25c2 [diff] [blame] |
Make GrResource know whether 3D objects' lifetimes are managed by Skia or not. Review URL: https://codereview.appspot.com/7201046 git-svn-id: http://skia.googlecode.com/svn/trunk@7348 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/GrPath.h b/src/gpu/GrPath.h index e8f0d58..ad3a5c3 100644 --- a/src/gpu/GrPath.h +++ b/src/gpu/GrPath.h
@@ -16,7 +16,7 @@ public: SK_DECLARE_INST_COUNT(GrPath); - GrPath(GrGpu* gpu) : INHERITED(gpu) {} + GrPath(GrGpu* gpu, bool isWrapped) : INHERITED(gpu, isWrapped) {} const GrRect& getBounds() const { return fBounds; }