Lines Matching refs:copyHeight
129 int copyHeight, const GifImageDesc& imageDesc, int rowStep, in copyInterlaceGroup() argument
134 for (row = startRow; row < copyHeight; row += rowStep) { in copyInterlaceGroup()
154 GifWord copyHeight = frame->ImageDesc.Height; in blitInterlace() local
155 if (frame->ImageDesc.Top + copyHeight > height) { in blitInterlace()
156 copyHeight = height - frame->ImageDesc.Top; in blitInterlace()
163 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 0); in blitInterlace()
166 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 4); in blitInterlace()
169 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 4, 2); in blitInterlace()
171 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 2, 1); in blitInterlace()
187 GifWord copyHeight = frame->ImageDesc.Height; in blitNormal() local
188 if (frame->ImageDesc.Top + copyHeight > height) { in blitNormal()
189 copyHeight = height - frame->ImageDesc.Top; in blitNormal()
192 for (; copyHeight > 0; copyHeight--) { in blitNormal()
210 GifWord copyHeight = height; in fillRect() local
211 if (top + copyHeight > bmHeight) { in fillRect()
212 copyHeight = bmHeight - top; in fillRect()
215 for (; copyHeight > 0; copyHeight--) { in fillRect()