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

  /external/webkit/Source/WebCore/platform/wince/
PasteboardWinCE.cpp 212 RefPtr<SharedBitmap> sourceBmp = image->nativeImageForCurrentFrame();
213 if (!sourceBmp)
216 IntRect rect(0, 0, sourceBmp->width(), sourceBmp->height());
219 HBITMAP resultBitmap = sourceBmp->clipBitmap(rect, true, bmpInfo, pixels);
  /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)
380 int sourceW = sourceBmp->width();
381 int sourceH = sourceBmp->height();
383 const PixelType* source = (const PixelType*)sourceBmp->bytes();
436 static void rotateBitmap(SharedBitmap* destBmp, const SharedBitmap* sourceBmp, const RotationTransform& transform)
438 ASSERT(destBmp->is16bit() == sourceBmp->is16bit());
440 _rotateBitmap<unsigned short, true>(destBmp, sourceBmp, transform);
442 _rotateBitmap<unsigned, false>(destBmp, sourceBmp, transform);
    [all...]

Completed in 1553 milliseconds