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

/macosx-10.9.5/WebKit-7537.78.2/efl/ewk/
H A Dewk_view_single.cpp104 static inline void _ewk_view_screen_move(uint32_t* image, size_t destinationX, size_t destinationY, size_t sourceX, size_t sourceY, size_t copyWidth, size_t copyHeight, size_t imageWidth) argument
109 size_t copyLength = copyWidth * 4;
114 if ((destinationX > sourceX && destinationX < sourceX + copyWidth)
115 || (destinationX < sourceX && destinationX + copyWidth > sourceX)) {
168 int copyWidth = scrollWidth - abs(scrollOffset.width());
171 _ewk_view_screen_move(static_cast<uint32_t*>(pixels), destinationX, destinationY, sourceX, sourceY, copyWidth, copyHeight, width);
172 evas_object_image_data_update_add(smartData->backing_store, destinationX, destinationY, copyWidth, copyHeight);
176 verticalUpdate.x = destinationX ? 0 : copyWidth - 1;
186 horizontalUpdate.w = copyWidth;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/wince/
H A DSharedBitmap.cpp302 int copyWidth = std::min<int>(rect.width(), oldWidth - rect.x()); local
304 if (!copyWidth || !copyHeight)
307 bmpInfo = BitmapInfo::createBottomUp(IntSize(copyWidth, copyHeight), (useAlpha && is32bit()) ? BitmapInfo::BitCount32 : BitmapInfo::BitCount16);
316 StretchDIBits(dcNew.get(), 0, 0, copyWidth, copyHeight, rect.x(), rect.y(), copyWidth, copyHeight,
327 int copyWidth = std::min<int>(rect.width(), oldWidth - rect.x()); local
329 if (!copyWidth || !copyHeight)
332 RefPtr<SharedBitmap> newBmp = create(IntSize(copyWidth, copyHeight), useAlpha && is32bit() ? BitmapInfo::BitCount32 : BitmapInfo::BitCount16, false);
339 StretchDIBits(dcNew.get(), 0, 0, copyWidth, copyHeight, rect.x(), rect.y(), copyWidth, copyHeigh
[all...]

Completed in 181 milliseconds