Home | History | Annotate | Download | only in core

Lines Matching refs:blitter

52     /** If the blitter just sets a single value for each pixel, return the
59 * Special method just to identify the null blitter, which is returned
73 * This function returns the number of rows that this blitter could optimally
80 * This function allocates memory for the blitter that the blitter then owns.
82 * released when the blitter's destructor is called. This function returns
83 * NULL if no persistent memory is needed by the blitter.
96 Return the correct blitter to use given the specified context.
118 /** This blitter silently never draws anything.
132 /** Wraps another (real) blitter, and ensures that the real blitter is only
138 void init(SkBlitter* blitter, const SkIRect& clipRect) {
140 fBlitter = blitter;
167 /** Wraps another (real) blitter, and ensures that the real blitter is only
173 void init(SkBlitter* blitter, const SkRegion* clipRgn) {
175 fBlitter = blitter;
202 /** Factory to set up the appropriate most-efficient wrapper blitter
208 SkBlitter* apply(SkBlitter* blitter, const SkRegion* clip,