diff options
author | Joe Onorato <joeo@google.com> | 2011-01-19 16:18:45 -0800 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2011-01-19 16:18:45 -0800 |
commit | 0e70d358a989a1d88ebf579063cb59153e9f0638 (patch) | |
tree | 5143b9daff9d914b68c66fd16e742f10f816473e /include | |
parent | b5c608b7dc12e41d59bc0654786e224bc7ad6c65 (diff) | |
parent | 67a98d6726e2bcb1d3d7b8863b89ad753ae15774 (diff) | |
download | external_skia-0e70d358a989a1d88ebf579063cb59153e9f0638.zip external_skia-0e70d358a989a1d88ebf579063cb59153e9f0638.tar.gz external_skia-0e70d358a989a1d88ebf579063cb59153e9f0638.tar.bz2 |
am 67a98d67: am 9221e808: Implement SkRegion::toString().
* commit '67a98d6726e2bcb1d3d7b8863b89ad753ae15774':
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. */ |