Lines Matching refs:copyWidth
137 const ColorMapObject* cmap, int transparent, int copyWidth, in copyInterlaceGroup() argument
145 copyLine(dst, src, cmap, transparent, copyWidth); in copyInterlaceGroup()
158 GifWord copyWidth = frame->ImageDesc.Width; in blitInterlace() local
159 if (frame->ImageDesc.Left + copyWidth > width) { in blitInterlace()
160 copyWidth = width - frame->ImageDesc.Left; in blitInterlace()
172 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 0); in blitInterlace()
175 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 4); in blitInterlace()
178 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 4, 2); in blitInterlace()
180 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 2, 1); in blitInterlace()
191 GifWord copyWidth = frame->ImageDesc.Width; in blitNormal() local
192 if (frame->ImageDesc.Left + copyWidth > width) { in blitNormal()
193 copyWidth = width - frame->ImageDesc.Left; in blitNormal()
202 copyLine(dst, src, cmap, transparent, copyWidth); in blitNormal()
214 GifWord copyWidth = width; in fillRect() local
215 if (left + copyWidth > bmWidth) { in fillRect()
216 copyWidth = bmWidth - left; in fillRect()
224 size_t bytes = copyWidth * SkColorTypeBytesPerPixel(bm->colorType()); in fillRect()