Home | History | Annotate | Download | only in images

Lines Matching refs:copyHeight

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