Home | History | Annotate | Download | only in effects

Lines Matching refs:picture

17      *  Refs the passed-in picture.
19 static SkPictureImageFilter* Create(SkPicture* picture) {
20 return SkNEW_ARGS(SkPictureImageFilter, (picture));
24 * Refs the passed-in picture. cropRect can be used to crop or expand the destination rect when
25 * the picture is drawn. (No scaling is implied by the dest rect; only the CTM is applied.)
27 static SkPictureImageFilter* Create(SkPicture* picture, const SkRect& cropRect) {
28 return SkNEW_ARGS(SkPictureImageFilter, (picture, cropRect));
34 explicit SkPictureImageFilter(SkPicture* picture);
35 SkPictureImageFilter(SkPicture* picture, const SkRect& cropRect);
41 * @param SkReadBuffer Serialized picture data.