Home | History | Annotate | Download | only in images

Lines Matching refs:copyWidth

128                                const ColorMapObject* cmap, int transparent, int copyWidth,
136 copyLine(dst, src, cmap, transparent, copyWidth);
149 GifWord copyWidth = frame->ImageDesc.Width;
150 if (frame->ImageDesc.Left + copyWidth > width) {
151 copyWidth = width - frame->ImageDesc.Left;
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);
182 GifWord copyWidth = frame->ImageDesc.Width;
183 if (frame->ImageDesc.Left + copyWidth > width) {
184 copyWidth = width - frame->ImageDesc.Left;
193 copyLine(dst, src, cmap, transparent, copyWidth);
205 GifWord copyWidth = width;
206 if (left + copyWidth > bmWidth) {
207 copyWidth = bmWidth - left;
216 sk_memset32(dst, col, copyWidth);