aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-04-25 19:04:27 +0000
committerGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-04-25 19:04:27 +0000
commit739456585a0cc52b335cd1c0a9fc6b01782a7f89 (patch)
tree54bbb925b8a340e66e39489d7111f8fc7d613e8d /include
parent4711a7ae9533c9d755296c3991339dfcbf46b0df (diff)
devolve flattening parameters to their base classes
e.g. FlattenableReadBufer -> Reader32 git-svn-id: http://skia.googlecode.com/svn/trunk@1174 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r--include/core/SkPath.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/core/SkPath.h b/include/core/SkPath.h
index d9a7093a81..2ebc59d3eb 100644
--- a/include/core/SkPath.h
+++ b/include/core/SkPath.h
@@ -28,8 +28,8 @@
#define GEN_ID_PTR_INC(ptr)
#endif
-class SkFlattenableReadBuffer;
-class SkFlattenableWriteBuffer;
+class SkReader32;
+class SkWriter32;
class SkAutoPathBoundsUpdate;
class SkString;
@@ -579,8 +579,8 @@ public:
void dump(bool forceClose, const char title[] = NULL) const;
void dump() const;
- void flatten(SkFlattenableWriteBuffer&) const;
- void unflatten(SkFlattenableReadBuffer&);
+ void flatten(SkWriter32&) const;
+ void unflatten(SkReader32&);
/** Subdivide the path so that no segment is longer that dist.
If bendLines is true, then turn all line segments into curves.