Searched defs:SkPicture (Results 1 - 3 of 3) sorted by relevance

/external/skia/include/core/
H A DSkPicture.h27 /** \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 { class in inherits: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 representin
[all...]
/external/skia/src/core/
H A DSkPicture.cpp11 #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) {} function in class:SkPicture
30 SkPicture::~SkPicture() {
36 SkPicture::DeletionMessage msg = { (int32_t)id };
37 SkMessageBus<SkPicture::DeletionMessage>::Post(msg);
41 uint32_t SkPicture
[all...]
H A DSkDevice.cpp259 bool SkBaseDevice::EXPERIMENTAL_drawPicture(SkCanvas*, const SkPicture*, const SkMatrix*, argument

Completed in 755 milliseconds