Home
last modified time | relevance | path

Searched refs:alphaOption (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
DImageDecoder.cpp85 …mageDecoder::create(const SharedBuffer& data, ImageSource::AlphaOption alphaOption, ImageSource::G… in create() argument
97 … return adoptPtr(new JPEGImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create()
100 … return adoptPtr(new PNGImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create()
103 … return adoptPtr(new GIFImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create()
106 … return adoptPtr(new ICOImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create()
109 … return adoptPtr(new WEBPImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create()
112 … return adoptPtr(new BMPImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create()
DImageDecoder.h74 …ImageDecoder(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAn… in ImageDecoder() argument
75 : m_premultiplyAlpha(alphaOption == ImageSource::AlphaPremultiplied) in ImageDecoder()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
DBMPImageDecoder.cpp44 BMPImageDecoder::BMPImageDecoder(ImageSource::AlphaOption alphaOption, in BMPImageDecoder() argument
47 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in BMPImageDecoder()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DImageSource.cpp36 ImageSource::ImageSource(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOpt… in ImageSource() argument
37 : m_alphaOption(alphaOption) in ImageSource()
DImageSource.h75 …ImageSource(AlphaOption alphaOption = AlphaPremultiplied, GammaAndColorProfileOption gammaAndColor…
DDeferredImageDecoder.cpp60 …mageDecoder::create(const SharedBuffer& data, ImageSource::AlphaOption alphaOption, ImageSource::G… in create() argument
62 … OwnPtr<ImageDecoder> actualDecoder = ImageDecoder::create(data, alphaOption, gammaAndColorOption); in create()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/
DICOImageDecoder.cpp48 ICOImageDecoder::ICOImageDecoder(ImageSource::AlphaOption alphaOption, in ICOImageDecoder() argument
51 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in ICOImageDecoder()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
DGIFImageDecoder.cpp37 GIFImageDecoder::GIFImageDecoder(ImageSource::AlphaOption alphaOption, in GIFImageDecoder() argument
40 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in GIFImageDecoder()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
DWEBPImageDecoder.cpp128 WEBPImageDecoder::WEBPImageDecoder(ImageSource::AlphaOption alphaOption, in WEBPImageDecoder() argument
131 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in WEBPImageDecoder()
147 …m_blendFunction = (alphaOption == ImageSource::AlphaPremultiplied) ? alphaBlendPremultiplied : alp… in WEBPImageDecoder()
DWEBPImageDecoderTest.cpp60 PassOwnPtr<WEBPImageDecoder> createDecoder(ImageSource::AlphaOption alphaOption = ImageSource::Alph… in createDecoder() argument
62 …return adoptPtr(new WEBPImageDecoder(alphaOption, ImageSource::GammaAndColorProfileApplied, ImageD… in createDecoder()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
DPNGImageDecoder.cpp220 PNGImageDecoder::PNGImageDecoder(ImageSource::AlphaOption alphaOption, in PNGImageDecoder() argument
223 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in PNGImageDecoder()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
DJPEGImageDecoder.cpp683 JPEGImageDecoder::JPEGImageDecoder(ImageSource::AlphaOption alphaOption, in JPEGImageDecoder() argument
686 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in JPEGImageDecoder()