aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkRecords.h
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2014-08-21 09:11:37 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-08-21 09:11:38 -0700
commit53fecfb15d254397ab03032b888daa9d15c487b6 (patch)
tree369d07782c33d2a1547b155f46c6d4beb1a2686e /src/core/SkRecords.h
parentc2d04e1bb8e8a0973e74d17811c6a9b586719766 (diff)
Our SkPicture::Analysis visitors should recurse into nested pictures.
BUG=skia: R=tomhudson@google.com, mtklein@google.com, reed@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/495793002
Diffstat (limited to 'src/core/SkRecords.h')
-rw-r--r--src/core/SkRecords.h30
1 files changed, 16 insertions, 14 deletions
diff --git a/src/core/SkRecords.h b/src/core/SkRecords.h
index 6baabe6b76..f3d96d4aa9 100644
--- a/src/core/SkRecords.h
+++ b/src/core/SkRecords.h
@@ -14,18 +14,6 @@
namespace SkRecords {
-template <typename T>
-class RefBox : SkNoncopyable {
-public:
- RefBox(const T* obj) : fObj(SkRef(obj)) {}
- ~RefBox() { fObj->unref(); }
-
- operator const T*() const { return fObj; }
-
-private:
- const T* fObj;
-};
-
// A list of all the types of canvas calls we can record.
// Each of these is reified into a struct below.
//
@@ -132,6 +120,18 @@ struct T { \
T* operator->() { return ptr; } \
const T* operator->() const { return ptr; }
+template <typename T>
+class RefBox : SkNoncopyable {
+public:
+ RefBox(T* obj) : fObj(SkRef(obj)) {}
+ ~RefBox() { fObj->unref(); }
+
+ ACT_AS_PTR(fObj);
+
+private:
+ T* fObj;
+};
+
// An Optional doesn't own the pointer's memory, but may need to destroy non-POD data.
template <typename T>
class Optional : SkNoncopyable {
@@ -231,7 +231,9 @@ RECORD2(DrawOval, SkPaint, paint, SkRect, oval);
RECORD1(DrawPaint, SkPaint, paint);
RECORD2(DrawPath, SkPaint, paint, SkPath, path);
//RECORD2(DrawPatch, SkPaint, paint, SkPatch, patch);
-RECORD3(DrawPicture, Optional<SkPaint>, paint, RefBox<SkPicture>, picture, Optional<SkMatrix>, matrix);
+RECORD3(DrawPicture, Optional<SkPaint>, paint,
+ RefBox<const SkPicture>, picture,
+ Optional<SkMatrix>, matrix);
RECORD4(DrawPoints, SkPaint, paint, SkCanvas::PointMode, mode, size_t, count, SkPoint*, pts);
RECORD4(DrawPosText, SkPaint, paint,
PODArray<char>, text,
@@ -251,7 +253,7 @@ RECORD5(DrawText, SkPaint, paint,
SkScalar, x,
SkScalar, y);
RECORD4(DrawTextBlob, SkPaint, paint,
- RefBox<SkTextBlob>, blob,
+ RefBox<const SkTextBlob>, blob,
SkScalar, x,
SkScalar, y);
RECORD5(DrawTextOnPath, SkPaint, paint,