Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/jni/
DGIFMovie.cpp133 const ColorMapObject* cmap, int transparent, int copyWidth, in copyInterlaceGroup() argument
141 copyLine(dst, src, cmap, transparent, copyWidth); in copyInterlaceGroup()
154 GifWord copyWidth = frame->ImageDesc.Width; in blitInterlace() local
155 if (frame->ImageDesc.Left + copyWidth > width) { in blitInterlace()
156 copyWidth = width - frame->ImageDesc.Left; in blitInterlace()
168 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 0); in blitInterlace()
171 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 4); in blitInterlace()
174 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 4, 2); in blitInterlace()
176 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 2, 1); in blitInterlace()
187 GifWord copyWidth = frame->ImageDesc.Width; in blitNormal() local
[all …]
/frameworks/ex/framesequence/jni/
DFrameSequence_gif.cpp166 GifWord& copyWidth, GifWord& copyHeight) { in getCopySize() argument
167 copyWidth = imageDesc.Width; in getCopySize()
168 if (imageDesc.Left + copyWidth > maxWidth) { in getCopySize()
169 copyWidth = maxWidth - imageDesc.Left; in getCopySize()
284 GifWord copyWidth, copyHeight; in drawFrame() local
285 getCopySize(prevFrame.ImageDesc, width, height, copyWidth, copyHeight); in drawFrame()
287 setLineColor(dst, TRANSPARENT, copyWidth); in drawFrame()
317 GifWord copyWidth, copyHeight; in drawFrame() local
318 getCopySize(frame.ImageDesc, width, height, copyWidth, copyHeight); in drawFrame()
320 copyLine(dst, src, cmap, gcb.TransparentColor, copyWidth); in drawFrame()