Home | History | Annotate | Download | only in QT

Lines Matching defs:playback

158 // The timed picture playback uses the SkPicturePlayback's profiling stubs
167 SkAutoTDelete<SkTimedPicturePlayback> playback(SkNEW_ARGS(SkTimedPicturePlayback,
169 if (!playback->parseStream(stream, proc)) {
172 return playback.detach();
273 // Check to see if there is a playback to recreate.
275 SkTimedPicturePlayback* playback = SkTimedPicturePlayback::CreateFromStream(
279 if (NULL == playback) {
283 return SkNEW_ARGS(SkTimedPicture, (playback, info.fWidth, info.fHeight));
303 // Private ctor only used by CreateTimedPicture, which has created the playback.
304 SkTimedPicture(SkTimedPicturePlayback* playback, int width, int height)
305 : INHERITED(playback, width, height) {}