Searched defs:destBmp (Results 1 - 2 of 2) sorted by relevance

/external/webkit/WebCore/platform/graphics/chromium/
H A DTransparencyWin.cpp87 SkBitmap* destBmp = const_cast<SkBitmap*>(&bitmapForContext(destContext)); local
88 SkCanvas destCanvas(*destBmp);
/external/webkit/WebCore/platform/graphics/wince/
H A DGraphicsContextWince.cpp377 template <typename PixelType, bool Is16bit> static void _rotateBitmap(SharedBitmap* destBmp, const SharedBitmap* sourceBmp, const RotationTransform& transform) argument
379 int destW = destBmp->width();
380 int destH = destBmp->height();
383 PixelType* dest = (PixelType*)destBmp->bytes();
437 static void rotateBitmap(SharedBitmap* destBmp, const SharedBitmap* sourceBmp, const RotationTransform& transform) argument
439 ASSERT(destBmp->is16bit() == sourceBmp->is16bit());
440 if (destBmp->is16bit())
441 _rotateBitmap<unsigned short, true>(destBmp, sourceBmp, transform);
443 _rotateBitmap<unsigned, false>(destBmp, sourceBmp, transform);

Completed in 43 milliseconds