Searched defs:alphaOption (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
H A DBMPImageDecoder.cpp44 BMPImageDecoder::BMPImageDecoder(ImageSource::AlphaOption alphaOption, argument
47 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageSource.cpp36 ImageSource::ImageSource(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption) argument
37 : m_alphaOption(alphaOption)
H A DDeferredImageDecoder.cpp60 PassOwnPtr<DeferredImageDecoder> DeferredImageDecoder::create(const SharedBuffer& data, ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorOption) argument
62 OwnPtr<ImageDecoder> actualDecoder = ImageDecoder::create(data, alphaOption, gammaAndColorOption);
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/
H A DICOImageDecoder.cpp48 ICOImageDecoder::ICOImageDecoder(ImageSource::AlphaOption alphaOption, argument
51 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
H A DImageDecoder.cpp85 PassOwnPtr<ImageDecoder> ImageDecoder::create(const SharedBuffer& data, ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption) argument
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));
H A DImageDecoder.h74 ImageDecoder(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption, size_t maxDecodedBytes) argument
75 : m_premultiplyAlpha(alphaOption == ImageSource::AlphaPremultiplied)
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
H A DGIFImageDecoder.cpp37 GIFImageDecoder::GIFImageDecoder(ImageSource::AlphaOption alphaOption, argument
40 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
H A DPNGImageDecoder.cpp220 PNGImageDecoder::PNGImageDecoder(ImageSource::AlphaOption alphaOption, argument
223 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.cpp683 JPEGImageDecoder::JPEGImageDecoder(ImageSource::AlphaOption alphaOption, argument
686 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)

Completed in 125 milliseconds