diff options
author | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-02-14 13:53:53 +0000 |
---|---|---|
committer | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-02-14 13:53:53 +0000 |
commit | 791f12e6cf558e0dd1689fbb0a6b5eddac9f42ad (patch) | |
tree | 9505692c2a103db80fea30c516a7d3057e40542f /src/effects | |
parent | 024e523a5ff78ec4d86d0b373bfb9adf8978ef4d (diff) |
Move SkPaint::toString from debugger to SkPaint
https://codereview.appspot.com/7314092/
git-svn-id: http://skia.googlecode.com/svn/trunk@7732 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/effects')
-rw-r--r-- | src/effects/SkLayerDrawLooper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effects/SkLayerDrawLooper.cpp b/src/effects/SkLayerDrawLooper.cpp index 0ffc08ecf6..ddd73083ad 100644 --- a/src/effects/SkLayerDrawLooper.cpp +++ b/src/effects/SkLayerDrawLooper.cpp @@ -338,7 +338,7 @@ void SkLayerDrawLooper::toString(SkString* str) const { str->append("false "); } - // TODO: add "rec->fPaint.toString(str);" when SkPaint::toString is added + rec->fPaint.toString(str); rec = rec->fNext; } } |