Searched refs:copyWidth (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/jni/android/graphics/
H A DGIFMovie.cpp133 const ColorMapObject* cmap, int transparent, int copyWidth,
141 copyLine(dst, src, cmap, transparent, copyWidth);
154 GifWord copyWidth = frame->ImageDesc.Width; local
155 if (frame->ImageDesc.Left + copyWidth > width) {
156 copyWidth = width - frame->ImageDesc.Left;
168 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 0);
171 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 4);
174 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 4, 2);
176 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 2, 1);
187 GifWord copyWidth local
132 copyInterlaceGroup(SkBitmap* bm, const unsigned char*& src, const ColorMapObject* cmap, int transparent, int copyWidth, int copyHeight, const GifImageDesc& imageDesc, int rowStep, int startRow) argument
210 GifWord copyWidth = width; local
[all...]
/frameworks/ex/framesequence/jni/
H A DFrameSequence_gif.cpp166 GifWord& copyWidth, GifWord& copyHeight) {
167 copyWidth = imageDesc.Width;
168 if (imageDesc.Left + copyWidth > maxWidth) {
169 copyWidth = maxWidth - imageDesc.Left;
284 GifWord copyWidth, copyHeight; local
285 getCopySize(prevFrame.ImageDesc, width, height, copyWidth, copyHeight);
287 setLineColor(dst, TRANSPARENT, copyWidth);
317 GifWord copyWidth, copyHeight; local
318 getCopySize(frame.ImageDesc, width, height, copyWidth, copyHeight);
320 copyLine(dst, src, cmap, gcb.TransparentColor, copyWidth);
165 getCopySize(const GifImageDesc& imageDesc, int maxWidth, int maxHeight, GifWord& copyWidth, GifWord& copyHeight) argument
[all...]

Completed in 87 milliseconds