OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AlphaOption
(Results
1 - 18
of
18
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageSource.h
66
enum
AlphaOption
{
76
ImageSource(
AlphaOption
alphaOption
= AlphaPremultiplied, GammaAndColorProfileOption gammaAndColorProfileOption = GammaAndColorProfileApplied);
128
AlphaOption
m_alphaOption;
DeferredImageDecoder.h
48
static PassOwnPtr<DeferredImageDecoder> create(const SharedBuffer& data, ImageSource::
AlphaOption
, ImageSource::GammaAndColorProfileOption);
ImageSource.cpp
38
ImageSource::ImageSource(ImageSource::
AlphaOption
alphaOption
, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
39
: m_alphaOption(
alphaOption
)
DeferredImageDecoder.cpp
62
PassOwnPtr<DeferredImageDecoder> DeferredImageDecoder::create(const SharedBuffer& data, ImageSource::
AlphaOption
alphaOption
, ImageSource::GammaAndColorProfileOption gammaAndColorOption)
64
OwnPtr<ImageDecoder> actualDecoder = ImageDecoder::create(data,
alphaOption
, gammaAndColorOption);
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
BMPImageDecoder.h
42
BMPImageDecoder(ImageSource::
AlphaOption
, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
BMPImageDecoder.cpp
44
BMPImageDecoder::BMPImageDecoder(ImageSource::
AlphaOption
alphaOption
,
47
: ImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes)
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
JPEGImageDecoder.h
43
JPEGImageDecoder(ImageSource::
AlphaOption
, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
JPEGImageDecoder.cpp
594
JPEGImageDecoder::JPEGImageDecoder(ImageSource::
AlphaOption
alphaOption
,
597
: ImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes)
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
PNGImageDecoder.h
41
PNGImageDecoder(ImageSource::
AlphaOption
, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
PNGImageDecoder.cpp
217
PNGImageDecoder::PNGImageDecoder(ImageSource::
AlphaOption
alphaOption
,
220
: ImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes)
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoder.h
61
ImageDecoder(ImageSource::
AlphaOption
alphaOption
, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption, size_t maxDecodedBytes)
62
: m_premultiplyAlpha(
alphaOption
== ImageSource::AlphaPremultiplied)
75
static PassOwnPtr<ImageDecoder> create(const SharedBuffer& data, ImageSource::
AlphaOption
, ImageSource::GammaAndColorProfileOption);
78
static PassOwnPtr<ImageDecoder> create(const SharedBuffer& data, ImageSource::
AlphaOption
, ImageSource::GammaAndColorProfileOption, size_t maxDecodedSize);
ImageDecoder.cpp
84
PassOwnPtr<ImageDecoder> ImageDecoder::create(const SharedBuffer& data, ImageSource::
AlphaOption
alphaOption
, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
96
return adoptPtr(new JPEGImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes));
99
return adoptPtr(new PNGImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes));
102
return adoptPtr(new GIFImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes));
105
return adoptPtr(new ICOImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes));
108
return adoptPtr(new WEBPImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes));
111
return adoptPtr(new BMPImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes));
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoder.h
43
GIFImageDecoder(ImageSource::
AlphaOption
, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
GIFImageDecoder.cpp
37
GIFImageDecoder::GIFImageDecoder(ImageSource::
AlphaOption
alphaOption
,
40
: ImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes)
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/
ICOImageDecoder.h
43
ICOImageDecoder(ImageSource::
AlphaOption
, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
ICOImageDecoder.cpp
48
ICOImageDecoder::ICOImageDecoder(ImageSource::
AlphaOption
alphaOption
,
51
: ImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes)
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
WEBPImageDecoder.h
41
WEBPImageDecoder(ImageSource::
AlphaOption
, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
WEBPImageDecoder.cpp
51
WEBPImageDecoder::WEBPImageDecoder(ImageSource::
AlphaOption
alphaOption
,
54
: ImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes)
Completed in 292 milliseconds