Lines Matching refs:fPixmap
33 const unsigned maxX = s.fPixmap.width() - 1; in Clamp_S32_opaque_D32_nofilter_DX_shaderproc()
38 const unsigned maxY = s.fPixmap.height() - 1; in Clamp_S32_opaque_D32_nofilter_DX_shaderproc()
43 const SkPMColor* src = s.fPixmap.addr32(0, dstY); in Clamp_S32_opaque_D32_nofilter_DX_shaderproc()
82 SkASSERT(4 == s.fPixmap.info().bytesPerPixel()); in S32_alpha_D32_nofilter_DX()
87 SkASSERT(y < (unsigned)s.fPixmap.height()); in S32_alpha_D32_nofilter_DX()
89 auto row = (const SkPMColor*)( (const char*)s.fPixmap.addr() + y * s.fPixmap.rowBytes() ); in S32_alpha_D32_nofilter_DX()
91 if (1 == s.fPixmap.width()) { in S32_alpha_D32_nofilter_DX()
125 SkASSERT(4 == s.fPixmap.info().bytesPerPixel()); in S32_alpha_D32_nofilter_DXDY()
128 auto src = (const char*)s.fPixmap.addr(); in S32_alpha_D32_nofilter_DXDY()
129 size_t rb = s.fPixmap.rowBytes(); in S32_alpha_D32_nofilter_DXDY()
135 SkASSERT(x < (unsigned)s.fPixmap.width ()); in S32_alpha_D32_nofilter_DXDY()
136 SkASSERT(y < (unsigned)s.fPixmap.height()); in S32_alpha_D32_nofilter_DXDY()
190 fPixmap.reset(); in init()
198 std::tie(fPixmap, fInvMatrix) = access->level(); in init()
202 SkASSERT(fPixmap.addr()); in init()
214 SkMatrixPriv::PostIDiv(&fInvMatrix, fPixmap.width(), fPixmap.height()); in init()
237 (!valid_for_filtering(fPixmap.width() | fPixmap.height()) || integral_translate_only)) { in init()
257 SkASSERT(fPixmap.colorType() == kN32_SkColorType); in chooseProcs()
258 SkASSERT(fPixmap.alphaType() == kPremul_SkAlphaType || in chooseProcs()
259 fPixmap.alphaType() == kOpaque_SkAlphaType); in chooseProcs()
304 const int maxX = s.fPixmap.width() - 1; in Clamp_S32_D32_nofilter_trans_shaderproc()
305 const int maxY = s.fPixmap.height() - 1; in Clamp_S32_D32_nofilter_trans_shaderproc()
308 const SkPMColor* row = s.fPixmap.addr32(0, iy); in Clamp_S32_D32_nofilter_trans_shaderproc()
366 const int stopX = s.fPixmap.width(); in Repeat_S32_D32_nofilter_trans_shaderproc()
367 const int stopY = s.fPixmap.height(); in Repeat_S32_D32_nofilter_trans_shaderproc()
370 const SkPMColor* row = s.fPixmap.addr32(0, iy); in Repeat_S32_D32_nofilter_trans_shaderproc()
417 SkASSERT(1 == s.fPixmap.width()); in S32_D32_constX_shaderproc()
445 yTemp = SkFractionalIntToInt(mapper.fractionalIntY() * s.fPixmap.height()); in S32_D32_constX_shaderproc()
451 const int stopY = s.fPixmap.height(); in S32_D32_constX_shaderproc()
472 iY2 = SkFractionalIntToInt(mapper.fractionalIntY() * s.fPixmap.height()); in S32_D32_constX_shaderproc()
495 const SkPMColor* row0 = s.fPixmap.addr32(0, iY0); in S32_D32_constX_shaderproc()
499 const SkPMColor* row1 = s.fPixmap.addr32(0, iY1); in S32_D32_constX_shaderproc()
543 if (kN32_SkColorType != fPixmap.colorType()) { in chooseShaderProc32()
547 if (1 == fPixmap.width() && fInvMatrix.isScaleTranslate()) { in chooseShaderProc32()
654 proc(bitmapXY, count, state.fPixmap.width(), state.fPixmap.height()); in DebugMatrixProc()