OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ScaledImageFragment
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
ScaledImageFragment.cpp
28
#include "platform/graphics/
ScaledImageFragment
.h"
32
ScaledImageFragment
::~
ScaledImageFragment
()
36
ScaledImageFragment
::
ScaledImageFragment
(const SkISize& scaledSize, size_t index, size_t generation, const SkBitmap& bitmap)
ScaledImageFragment.h
38
//
ScaledImageFragment
is a scaled version of an image.
39
class PLATFORM_EXPORT
ScaledImageFragment
{
46
static PassOwnPtr<
ScaledImageFragment
> createComplete(const SkISize& scaledSize, size_t index, const SkBitmap& bitmap)
48
return adoptPtr(new
ScaledImageFragment
(scaledSize, index, CompleteImage, bitmap));
51
static PassOwnPtr<
ScaledImageFragment
> createPartial(const SkISize& scaledSize, size_t index, size_t generation, const SkBitmap& bitmap)
53
return adoptPtr(new
ScaledImageFragment
(scaledSize, index, generation, bitmap));
56
ScaledImageFragment
(const SkISize&, size_t index, size_t generation, const SkBitmap&);
57
~
ScaledImageFragment
();
Completed in 56 milliseconds