Home | History | Annotate | Download | only in core

Lines Matching defs:playback

129     /*  We want to copy the src's playback. However, if that hasn't been built
177 /* We want to copy the src's playback. However, if that hasn't been built
286 SkPicture::SkPicture(SkPicturePlayback* playback, int width, int height)
287 : fPlayback(playback)
299 SkPicturePlayback* playback;
300 // Check to see if there is a playback to recreate.
302 playback = SkNEW_ARGS(SkPicturePlayback, (stream, info, proc));
304 playback = NULL;
307 return SkNEW_ARGS(SkPicture, (playback, info.fWidth, info.fHeight));
311 SkPicturePlayback* playback = fPlayback;
313 if (NULL == playback && fRecord) {
314 playback = SkNEW_ARGS(SkPicturePlayback, (*fRecord));
331 if (playback) {
333 playback->serialize(stream, encoder);
334 // delete playback if it is a local version (i.e. cons'd up just now)
335 if (playback != fPlayback) {
336 SkDELETE(playback);