Lines Matching defs:image
91 // Returns a GrSurfaceProxyView representation of the image, if possible. This also returns
92 // a color type. This may be different than the image's color type when the image is not
102 * draw the image. SkSamplingOptions indicates the filter and SkTileMode[] indicates the x and
103 * y tile modes. The passed matrix is applied to the coordinates before sampling the image.
104 * Optional 'subset' indicates whether the tile modes should be applied to a subset of the image
105 * Optional 'domain' is a bound on the coordinates of the image that will be required and can be
117 // If this image is the current cached image snapshot of a surface then this is called when the
152 // Call when this image is part of the key to a resourcecache entry. This allows the cache
192 * using the image unique ID. A subsequent call with the same unique ID will return the cached
222 static inline SkImage_Base* as_IB(SkImage* image) {
223 return static_cast<SkImage_Base*>(image);
226 static inline SkImage_Base* as_IB(const sk_sp<SkImage>& image) {
227 return static_cast<SkImage_Base*>(image.get());
230 static inline const SkImage_Base* as_IB(const SkImage* image) {
231 return static_cast<const SkImage_Base*>(image);