Lines Matching refs:copyWidth
133 const ColorMapObject* cmap, int transparent, int copyWidth, in copyInterlaceGroup() argument
141 copyLine(dst, src, cmap, transparent, copyWidth); in copyInterlaceGroup()
154 GifWord copyWidth = frame->ImageDesc.Width; in blitInterlace() local
155 if (frame->ImageDesc.Left + copyWidth > width) { in blitInterlace()
156 copyWidth = width - frame->ImageDesc.Left; in blitInterlace()
168 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 0); in blitInterlace()
171 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 4); in blitInterlace()
174 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 4, 2); in blitInterlace()
176 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 2, 1); in blitInterlace()
187 GifWord copyWidth = frame->ImageDesc.Width; in blitNormal() local
188 if (frame->ImageDesc.Left + copyWidth > width) { in blitNormal()
189 copyWidth = width - frame->ImageDesc.Left; in blitNormal()
198 copyLine(dst, src, cmap, transparent, copyWidth); in blitNormal()
210 GifWord copyWidth = width; in fillRect() local
211 if (left + copyWidth > bmWidth) { in fillRect()
212 copyWidth = bmWidth - left; in fillRect()
221 sk_memset32(dst, col, copyWidth); in fillRect()