Home | History | Annotate | Download | only in effects

Lines Matching full:displ

50 void computeDisplacement(SkScalar scale, SkBitmap* dst, SkBitmap* displ, SkBitmap* src, const SkIRect& bounds)
60 const SkPMColor* displPtr = displ->getAddr32(bounds.left(), y);
77 SkScalar scale, SkBitmap* dst, SkBitmap* displ, SkBitmap* src, const SkIRect& bounds)
82 scale, dst, displ, src, bounds);
86 scale, dst, displ, src, bounds);
90 scale, dst, displ, src, bounds);
94 scale, dst, displ, src, bounds);
104 SkScalar scale, SkBitmap* dst, SkBitmap* displ, SkBitmap* src, const SkIRect& bounds)
109 yChannelSelector, scale, dst, displ, src, bounds);
113 yChannelSelector, scale, dst, displ, src, bounds);
117 yChannelSelector, scale, dst, displ, src, bounds);
121 yChannelSelector, scale, dst, displ, src, bounds);
186 SkBitmap displ, color = src;
191 !displacementInput->filterImage(proxy, src, ctm, &displ, offset)) {
194 if ((displ.config() != SkBitmap::kARGB_8888_Config) ||
199 SkAutoLockPixels alp_displacement(displ), alp_color(color);
200 if (!displ.getPixels() || !color.getPixels()) {
209 displ.getBounds(&displBounds);
223 computeDisplacement(fXChannelSelector, fYChannelSelector, fScale, dst, &displ, &color, bounds);