OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:sourcebmp
(Results
1 - 2
of
2
) sorted by null
/external/webkit/WebCore/platform/wince/
PasteboardWince.cpp
211
RefPtr<SharedBitmap>
sourceBmp
= image->nativeImageForCurrentFrame();
212
if (!
sourceBmp
)
215
IntRect rect(0, 0,
sourceBmp
->width(),
sourceBmp
->height());
218
HBITMAP resultBitmap =
sourceBmp
->clipBitmap(rect, true, bmpInfo, pixels);
/external/webkit/WebCore/platform/graphics/wince/
GraphicsContextWince.cpp
377
template <typename PixelType, bool Is16bit> static void _rotateBitmap(SharedBitmap* destBmp, const SharedBitmap*
sourceBmp
, const RotationTransform& transform)
381
int sourceW =
sourceBmp
->width();
382
int sourceH =
sourceBmp
->height();
384
const PixelType* source = (const PixelType*)
sourceBmp
->bytes();
437
static void rotateBitmap(SharedBitmap* destBmp, const SharedBitmap*
sourceBmp
, const RotationTransform& transform)
439
ASSERT(destBmp->is16bit() ==
sourceBmp
->is16bit());
441
_rotateBitmap<unsigned short, true>(destBmp,
sourceBmp
, transform);
443
_rotateBitmap<unsigned, false>(destBmp,
sourceBmp
, transform);
[
all
...]
Completed in 262 milliseconds