HomeSort by relevance Sort by last modified time
    Searched defs:SkPicture (Results 1 - 2 of 2) sorted by null

  /external/skia/src/core/
SkPicture.cpp 11 #include "SkPicture.h"
24 DECLARE_SKMESSAGEBUS_MESSAGE(SkPicture::DeletionMessage);
26 /* SkPicture impl. This handles generic responsibilities like unique IDs and serialization. */
28 SkPicture::SkPicture() : fUniqueID(0) {}
30 SkPicture::~SkPicture() {
36 SkPicture::DeletionMessage msg = { (int32_t)id };
37 SkMessageBus<SkPicture::DeletionMessage>::Post(msg);
41 uint32_t SkPicture::uniqueID() const
    [all...]
  /external/skia/include/core/
SkPicture.h 27 /** \class SkPicture
29 An SkPicture records drawing commands made to a canvas to be played back at a later time.
32 class SK_API SkPicture : public SkRefCnt {
34 virtual ~SkPicture();
54 * @return A new SkPicture representing the serialized data, or NULL if the stream is
57 static SkPicture* CreateFromStream(SkStream*, InstallPixelRefProc proc);
66 * @return A new SkPicture representing the serialized data, or NULL if the stream is
69 static SkPicture* CreateFromStream(SkStream*);
74 * SkReadBuffer::setBitmapDecoder() before calling SkPicture::CreateFromBuffer().
76 * @return A new SkPicture representing the serialized data, or NULL if the buffer i
    [all...]

Completed in 249 milliseconds