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

/external/skia/src/images/
H A DSkMovie_gif.cpp125 int copyHeight, const GifImageDesc& imageDesc, int rowStep,
130 for (row = startRow; row < copyHeight; row += rowStep) {
150 GifWord copyHeight = frame->ImageDesc.Height; local
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 local
123 copyInterlaceGroup(SkBitmap* bm, const unsigned char*& src, const ColorMapObject* cmap, int transparent, int copyWidth, int copyHeight, const GifImageDesc& imageDesc, int rowStep, int startRow) argument
208 GifWord copyHeight = height; local
[all...]
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DSharedBitmap.cpp304 int copyHeight = std::min<int>(rect.height(), oldHeight - rect.y()); local
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()); local
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 117 milliseconds