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