OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AlphaOption
(Results
1 - 19
of
19
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageSource.h
65
enum
AlphaOption
{
75
ImageSource(
AlphaOption
alphaOption
= AlphaPremultiplied, GammaAndColorProfileOption gammaAndColorProfileOption = GammaAndColorProfileApplied);
132
AlphaOption
m_alphaOption;
DeferredImageDecoder.h
49
static PassOwnPtr<DeferredImageDecoder> create(const SharedBuffer& data, ImageSource::
AlphaOption
, ImageSource::GammaAndColorProfileOption);
ImageSource.cpp
36
ImageSource::ImageSource(ImageSource::
AlphaOption
alphaOption
, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
37
: m_alphaOption(
alphaOption
)
DeferredImageDecoder.cpp
60
PassOwnPtr<DeferredImageDecoder> DeferredImageDecoder::create(const SharedBuffer& data, ImageSource::
AlphaOption
alphaOption
, ImageSource::GammaAndColorProfileOption gammaAndColorOption)
62
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/png/
PNGImageDecoder.h
41
PNGImageDecoder(ImageSource::
AlphaOption
, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
PNGImageDecoder.cpp
220
PNGImageDecoder::PNGImageDecoder(ImageSource::
AlphaOption
alphaOption
,
223
: 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
683
JPEGImageDecoder::JPEGImageDecoder(ImageSource::
AlphaOption
alphaOption
,
686
: ImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoder.h
74
ImageDecoder(ImageSource::
AlphaOption
alphaOption
, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption, size_t maxDecodedBytes)
75
: m_premultiplyAlpha(
alphaOption
== ImageSource::AlphaPremultiplied)
88
static PassOwnPtr<ImageDecoder> create(const SharedBuffer& data, ImageSource::
AlphaOption
, ImageSource::GammaAndColorProfileOption);
91
static PassOwnPtr<ImageDecoder> create(const SharedBuffer& data, ImageSource::
AlphaOption
, ImageSource::GammaAndColorProfileOption, size_t maxDecodedSize);
ImageDecoder.cpp
85
PassOwnPtr<ImageDecoder> ImageDecoder::create(const SharedBuffer& data, ImageSource::
AlphaOption
alphaOption
, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
97
return adoptPtr(new JPEGImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes));
100
return adoptPtr(new PNGImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes));
103
return adoptPtr(new GIFImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes));
106
return adoptPtr(new ICOImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes));
109
return adoptPtr(new WEBPImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes));
112
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/webp/
WEBPImageDecoder.h
41
WEBPImageDecoder(ImageSource::
AlphaOption
, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
WEBPImageDecoder.cpp
128
WEBPImageDecoder::WEBPImageDecoder(ImageSource::
AlphaOption
alphaOption
,
131
: ImageDecoder(
alphaOption
, gammaAndColorProfileOption, maxDecodedBytes)
147
m_blendFunction = (
alphaOption
== ImageSource::AlphaPremultiplied) ? alphaBlendPremultiplied : alphaBlendNonPremultiplied;
WEBPImageDecoderTest.cpp
60
PassOwnPtr<WEBPImageDecoder> createDecoder(ImageSource::
AlphaOption
alphaOption
= ImageSource::AlphaNotPremultiplied)
62
return adoptPtr(new WEBPImageDecoder(
alphaOption
, ImageSource::GammaAndColorProfileApplied, ImageDecoder::noDecodedImageByteLimit));
/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)
Completed in 161 milliseconds