aboutsummaryrefslogtreecommitdiffhomepage
path: root/debugger/SkDrawCommand.h
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-01-17 16:07:04 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-01-17 16:07:04 +0000
commit2da95b2ac5554c89690062340498aa86f661c3ea (patch)
tree41404e3f70ab09b3621706dff588bbf7fad728c0 /debugger/SkDrawCommand.h
parent2b16570bda716725e08ad2e92a852f043179c13c (diff)
Fix debugger handling of clip rrects
Diffstat (limited to 'debugger/SkDrawCommand.h')
-rw-r--r--debugger/SkDrawCommand.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/debugger/SkDrawCommand.h b/debugger/SkDrawCommand.h
index 9e73ce1a38..98cfbc9530 100644
--- a/debugger/SkDrawCommand.h
+++ b/debugger/SkDrawCommand.h
@@ -103,7 +103,7 @@ public:
ClipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA);
virtual void execute(SkCanvas* canvas) SK_OVERRIDE;
private:
- const SkRRect* fRRect;
+ SkRRect fRRect;
SkRegion::Op fOp;
bool fDoAA;
};