HomeSort by relevance Sort by last modified time
    Searched refs:destBmp (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/chromium/
TransparencyWin.cpp 87 SkBitmap* destBmp = const_cast<SkBitmap*>(&bitmapForContext(destContext));
88 SkCanvas destCanvas(*destBmp);
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp 376 template <typename PixelType, bool Is16bit> static void _rotateBitmap(SharedBitmap* destBmp, const SharedBitmap* sourceBmp, const RotationTransform& transform)
378 int destW = destBmp->width();
379 int destH = destBmp->height();
382 PixelType* dest = (PixelType*)destBmp->bytes();
436 static void rotateBitmap(SharedBitmap* destBmp, const SharedBitmap* sourceBmp, const RotationTransform& transform)
438 ASSERT(destBmp->is16bit() == sourceBmp->is16bit());
439 if (destBmp->is16bit())
440 _rotateBitmap<unsigned short, true>(destBmp, sourceBmp, transform);
442 _rotateBitmap<unsigned, false>(destBmp, sourceBmp, transform);
    [all...]

Completed in 36 milliseconds