HomeSort by relevance Sort by last modified time
    Searched refs:ImageDesc (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/skia/src/images/
SkMovie_gif.cpp 129 int copyHeight, const GifImageDesc& imageDesc, int rowStep,
135 uint32_t* dst = bm->getAddr32(imageDesc.Left, imageDesc.Top + row);
137 src += imageDesc.Width;
141 src += imageDesc.Width * ((imageDesc.Height - row + rowStep - 1) / rowStep);
149 GifWord copyWidth = frame->ImageDesc.Width;
150 if (frame->ImageDesc.Left + copyWidth > width) {
151 copyWidth = width - frame->ImageDesc.Left;
154 GifWord copyHeight = frame->ImageDesc.Height
    [all...]
SkImageDecoder_libgif.cpp 276 const GifImageDesc& desc = image->ImageDesc;
  /external/skia/src/images/
SkMovie_gif.cpp 129 int copyHeight, const GifImageDesc& imageDesc, int rowStep,
135 uint32_t* dst = bm->getAddr32(imageDesc.Left, imageDesc.Top + row);
137 src += imageDesc.Width;
141 src += imageDesc.Width * ((imageDesc.Height - row + rowStep - 1) / rowStep);
149 GifWord copyWidth = frame->ImageDesc.Width;
150 if (frame->ImageDesc.Left + copyWidth > width) {
151 copyWidth = width - frame->ImageDesc.Left;
154 GifWord copyHeight = frame->ImageDesc.Height
    [all...]
SkImageDecoder_libgif.cpp 277 const GifImageDesc& desc = image->ImageDesc;
  /external/giflib/
gifalloc.c 207 register int RasterSize = Image->ImageDesc.Height * Image->ImageDesc.Width;
288 if (sp->ImageDesc.ColorMap != NULL) {
289 GifFreeMapObject(sp->ImageDesc.ColorMap);
290 sp->ImageDesc.ColorMap = NULL;
338 if (sp->ImageDesc.ColorMap != NULL) {
339 sp->ImageDesc.ColorMap = GifMakeMapObject(
340 CopyFrom->ImageDesc.ColorMap->ColorCount,
341 CopyFrom->ImageDesc.ColorMap->Colors);
342 if (sp->ImageDesc.ColorMap == NULL)
    [all...]
dgif_lib.c 403 memcpy(&sp->ImageDesc, &GifFile->Image, sizeof(GifImageDesc));
405 sp->ImageDesc.ColorMap = GifMakeMapObject(
408 if (sp->ImageDesc.ColorMap == NULL) {
    [all...]
gif_lib.h 64 GifImageDesc ImageDesc;
  /frameworks/ex/framesequence/jni/
FrameSequence_gif.cpp 172 static void getCopySize(const GifImageDesc& imageDesc, int maxWidth, int maxHeight,
174 copyWidth = imageDesc.Width;
175 if (imageDesc.Left + copyWidth > maxWidth) {
176 copyWidth = maxWidth - imageDesc.Left;
178 copyHeight = imageDesc.Height;
179 if (imageDesc.Top + copyHeight > maxHeight) {
180 copyHeight = maxHeight - imageDesc.Top;
283 && checkIfCover(frame.ImageDesc, prevFrame.ImageDesc);
288 Color8888* dst = outputPtr + prevFrame.ImageDesc.Left
    [all...]

Completed in 185 milliseconds