Home
last modified time | relevance | path

Searched refs:destBmp (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/chromium/
DTransparencyWin.cpp87 SkBitmap* destBmp = const_cast<SkBitmap*>(&bitmapForContext(destContext)); in compositeToCopy() local
88 SkCanvas destCanvas(*destBmp); in compositeToCopy()
/external/webkit/Source/WebCore/platform/graphics/wince/
DGraphicsContextWinCE.cpp376 template <typename PixelType, bool Is16bit> static void _rotateBitmap(SharedBitmap* destBmp, const … in _rotateBitmap() argument
378 int destW = destBmp->width(); in _rotateBitmap()
379 int destH = destBmp->height(); in _rotateBitmap()
382 PixelType* dest = (PixelType*)destBmp->bytes(); in _rotateBitmap()
436 static void rotateBitmap(SharedBitmap* destBmp, const SharedBitmap* sourceBmp, const RotationTransf… in rotateBitmap() argument
438 ASSERT(destBmp->is16bit() == sourceBmp->is16bit()); in rotateBitmap()
439 if (destBmp->is16bit()) in rotateBitmap()
440 _rotateBitmap<unsigned short, true>(destBmp, sourceBmp, transform); in rotateBitmap()
442 _rotateBitmap<unsigned, false>(destBmp, sourceBmp, transform); in rotateBitmap()