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

  /external/skia/src/images/
SkMovie_gif.cpp 125 int copyHeight, const GifImageDesc& imageDesc, int rowStep,
130 for (row = startRow; row < copyHeight; row += rowStep) {
150 GifWord copyHeight = frame->ImageDesc.Height;
151 if (frame->ImageDesc.Top + copyHeight > height) {
152 copyHeight = height - frame->ImageDesc.Top;
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);
182 GifWord copyHeight = frame->ImageDesc.Height
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
SharedBitmap.cpp 304 int copyHeight = std::min<int>(rect.height(), oldHeight - rect.y());
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,
329 int copyHeight = std::min<int>(rect.height(), oldHeight - rect.y());
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 54 milliseconds