aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkRRect.h
diff options
context:
space:
mode:
authorGravatar mike@reedtribe.org <mike@reedtribe.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-12-17 02:34:28 +0000
committerGravatar mike@reedtribe.org <mike@reedtribe.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-12-17 02:34:28 +0000
commitc3442d53dabf2a692f4c9efba5e8be7bbb43d3ef (patch)
treef19fa2e2151d8b1c541c5515988292fe6e9d4357 /include/core/SkRRect.h
parent37071640f6bdcb1bfb193f85b9ca615b29679425 (diff)
move inset out of SkRRect.h for now, and add experimental versions to gm
git-svn-id: http://skia.googlecode.com/svn/trunk@6833 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/core/SkRRect.h')
-rw-r--r--include/core/SkRRect.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/core/SkRRect.h b/include/core/SkRRect.h
index ac2b7a2810..b09d27ac20 100644
--- a/include/core/SkRRect.h
+++ b/include/core/SkRRect.h
@@ -220,6 +220,7 @@ public:
*/
bool contains(SkScalar x, SkScalar y) const;
+#if 0
void inset(SkScalar dx, SkScalar dy, SkRRect* dst) const;
void inset(SkScalar dx, SkScalar dy) {
this->inset(dx, dy, this);
@@ -230,6 +231,7 @@ public:
void outset(SkScalar dx, SkScalar dy) {
this->inset(-dx, -dy, this);
}
+#endif
SkDEBUGCODE(void validate() const;)