OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:destbmp
(Results
1 - 2
of
2
) sorted by null
/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
...]
/external/webkit/Source/WebCore/platform/graphics/chromium/
TransparencyWin.cpp
87
SkBitmap*
destBmp
= const_cast<SkBitmap*>(&bitmapForContext(destContext));
88
SkCanvas destCanvas(*
destBmp
);
Completed in 1993 milliseconds