Lines Matching refs:dstP
222 bool SkBaseDevice::readPixels(const SkImageInfo& info, void* dstP, size_t rowBytes, int x, int y) { in readPixels() argument
225 SkASSERT(dstP); in readPixels()
233 return this->onReadPixels(info, dstP, rowBytes, x, y); in readPixels()
324 SkPoint srcP[4], dstP[3]; in morphpath() local
330 morphpoints(dstP, srcP, 1, meas, matrix); in morphpath()
331 dst->moveTo(dstP[0]); in morphpath()
337 morphpoints(dstP, srcP, 2, meas, matrix); in morphpath()
338 dst->quadTo(dstP[0], dstP[1]); in morphpath()
341 morphpoints(dstP, &srcP[1], 2, meas, matrix); in morphpath()
342 dst->quadTo(dstP[0], dstP[1]); in morphpath()
345 morphpoints(dstP, &srcP[1], 3, meas, matrix); in morphpath()
346 dst->cubicTo(dstP[0], dstP[1], dstP[2]); in morphpath()