Searched refs:destBmp (Results 1 – 2 of 2) sorted by relevance
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
D | TransparencyWin.cpp | 87 SkBitmap* destBmp = const_cast<SkBitmap*>(&bitmapForContext(destContext)); in compositeToCopy() local 88 SkCanvas destCanvas(*destBmp); in compositeToCopy()
|
/external/webkit/Source/WebCore/platform/graphics/wince/ |
D | GraphicsContextWinCE.cpp | 376 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()
|