• Home
  • Raw
  • Download

Lines Matching refs:displ

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