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

  /external/skia/src/images/
SkMovie_gif.cpp 124 const ColorMapObject* cmap, int transparent, int copyWidth,
132 copyLine(dst, src, cmap, transparent, copyWidth);
145 GifWord copyWidth = frame->ImageDesc.Width;
146 if (frame->ImageDesc.Left + copyWidth > width) {
147 copyWidth = width - frame->ImageDesc.Left;
159 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 0);
162 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 4);
165 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 4, 2);
167 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 2, 1);
177 GifWord copyWidth = frame->ImageDesc.Width
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
SharedBitmap.cpp 303 int copyWidth = std::min<int>(rect.width(), oldWidth - rect.x());
305 if (!copyWidth || !copyHeight)
308 bmpInfo = BitmapInfo::createBottomUp(IntSize(copyWidth, copyHeight), (useAlpha && is32bit()) ? BitmapInfo::BitCount32 : BitmapInfo::BitCount16);
317 StretchDIBits(dcNew.get(), 0, 0, copyWidth, copyHeight, rect.x(), rect.y(), copyWidth, copyHeight,
328 int copyWidth = std::min<int>(rect.width(), oldWidth - rect.x());
330 if (!copyWidth || !copyHeight)
333 RefPtr<SharedBitmap> newBmp = create(IntSize(copyWidth, copyHeight), useAlpha && is32bit() ? BitmapInfo::BitCount32 : BitmapInfo::BitCount16, false);
340 StretchDIBits(dcNew.get(), 0, 0, copyWidth, copyHeight, rect.x(), rect.y(), copyWidth, copyHeight
    [all...]

Completed in 71 milliseconds