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

  /external/chromium_org/third_party/skia/src/core/
SkRecording.cpp 17 SkPlayback::SkPlayback(const SkRecord* record) : fRecord(record) {}
19 SkPlayback::~SkPlayback() {}
21 void SkPlayback::draw(SkCanvas* canvas) const {
31 SkPlayback* SkRecording::releasePlayback() {
35 return SkNEW_ARGS(SkPlayback, (fRecord.detach()));
  /external/chromium_org/third_party/skia/include/record/
SkRecording.h 32 * scoped_ptr<const SkPlayback> playback(recording->releasePlayback());
36 * SkPlayback is thread safe; SkRecording is not.
39 class SK_API SkPlayback : SkNoncopyable {
41 // Remember, if you've got an SkPlayback*, you probably own it. Don't forget to delete it!
42 ~SkPlayback();
48 explicit SkPlayback(const SkRecord*);
60 // Draws issued to this canvas will be replayed by SkPlayback::draw().
64 // Release exclusive ownership of an SkPlayback to the caller.
66 SkPlayback* releasePlayback();

Completed in 277 milliseconds