diff options
author | Joe Onorato <joeo@google.com> | 2011-01-19 16:16:15 -0800 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2011-01-19 16:16:15 -0800 |
commit | 67a98d6726e2bcb1d3d7b8863b89ad753ae15774 (patch) | |
tree | ac421f3009c984b0febaa2d885ad26406b7a082f /include | |
parent | 9f6d5271a26ebd94c962d3121376bad17265e5ac (diff) | |
parent | 9221e8085d77b0850a07c6585275ec7bb7e0931a (diff) | |
download | external_skia-67a98d6726e2bcb1d3d7b8863b89ad753ae15774.zip external_skia-67a98d6726e2bcb1d3d7b8863b89ad753ae15774.tar.gz external_skia-67a98d6726e2bcb1d3d7b8863b89ad753ae15774.tar.bz2 |
am 9221e808: Implement SkRegion::toString().
* commit '9221e8085d77b0850a07c6585275ec7bb7e0931a':
Implement SkRegion::toString().
Diffstat (limited to 'include')
-rw-r--r-- | include/core/SkRegion.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/core/SkRegion.h b/include/core/SkRegion.h index 8b15a89..09b835d 100644 --- a/include/core/SkRegion.h +++ b/include/core/SkRegion.h @@ -242,6 +242,10 @@ public: */ bool op(const SkRegion& rgna, const SkRegion& rgnb, Op op); + /** Returns a new char* containing the list of rectangles in this region + */ + char* toString(); + /** Returns the sequence of rectangles, sorted in Y and X, that make up this region. */ |