Lines Matching refs:copyWidth
134 const ColorMapObject* cmap, int transparent, int copyWidth, in copyInterlaceGroup() argument
142 copyLine(dst, src, cmap, transparent, copyWidth); in copyInterlaceGroup()
155 GifWord copyWidth = frame->ImageDesc.Width; in blitInterlace() local
156 if (frame->ImageDesc.Left + copyWidth > width) { in blitInterlace()
157 copyWidth = width - frame->ImageDesc.Left; in blitInterlace()
169 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 0); in blitInterlace()
172 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 4); in blitInterlace()
175 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 4, 2); in blitInterlace()
177 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 2, 1); in blitInterlace()
188 GifWord copyWidth = frame->ImageDesc.Width; in blitNormal() local
189 if (frame->ImageDesc.Left + copyWidth > width) { in blitNormal()
190 copyWidth = width - frame->ImageDesc.Left; in blitNormal()
199 copyLine(dst, src, cmap, transparent, copyWidth); in blitNormal()
211 GifWord copyWidth = width; in fillRect() local
212 if (left + copyWidth > bmWidth) { in fillRect()
213 copyWidth = bmWidth - left; in fillRect()
222 sk_memset32(dst, col, copyWidth); in fillRect()