// An implementation of SkPicture supporting an arbitrary number of drawing commands. // This is called "big" because there used to be a "mini" that only supported a subset of the // calls as an optimization. class SkBigPicture final : public SkPicture { public: // An array of refcounted const SkPicture pointers. class SnapshotArray : ::SkNoncopyable { public:
SnapshotArray(const SkPicture* pics[], int count) : fPics(pics), fCount(count) {}
~SnapshotArray() { for (int i = 0; i < fCount; i++) { fPics[i]->unref(); } }
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.