Lines Matching refs:copyHeight
138 int copyHeight, const GifImageDesc& imageDesc, int rowStep, in copyInterlaceGroup() argument
143 for (row = startRow; row < copyHeight; row += rowStep) { in copyInterlaceGroup()
163 GifWord copyHeight = frame->ImageDesc.Height; in blitInterlace() local
164 if (frame->ImageDesc.Top + copyHeight > height) { in blitInterlace()
165 copyHeight = height - frame->ImageDesc.Top; 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()
196 GifWord copyHeight = frame->ImageDesc.Height; in blitNormal() local
197 if (frame->ImageDesc.Top + copyHeight > height) { in blitNormal()
198 copyHeight = height - frame->ImageDesc.Top; in blitNormal()
201 for (; copyHeight > 0; copyHeight--) { in blitNormal()
219 GifWord copyHeight = height; in fillRect() local
220 if (top + copyHeight > bmHeight) { in fillRect()
221 copyHeight = bmHeight - top; in fillRect()
225 for (; copyHeight > 0; copyHeight--) { in fillRect()