Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/platform/image-decoders/
DImageDecoder.cpp101 ImageDecoder* ImageDecoder::create(const SharedBuffer& data, ImageSource::AlphaOption alphaOption, … in create() argument
110 return new GIFImageDecoder(alphaOption, gammaAndColorProfileOption); in create()
113 return new PNGImageDecoder(alphaOption, gammaAndColorProfileOption); in create()
116 return new JPEGImageDecoder(alphaOption, gammaAndColorProfileOption); in create()
120 return new WEBPImageDecoder(alphaOption, gammaAndColorProfileOption); in create()
124 return new BMPImageDecoder(alphaOption, gammaAndColorProfileOption); in create()
127 return new ICOImageDecoder(alphaOption, gammaAndColorProfileOption); in create()
DImageDecoder.h227 …ImageDecoder(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAn… in ImageDecoder() argument
229 , m_premultiplyAlpha(alphaOption == ImageSource::AlphaPremultiplied) in ImageDecoder()
/external/webkit/Source/WebCore/platform/graphics/qt/
DImageDecoderQt.cpp40 ImageDecoder* ImageDecoder::create(const SharedBuffer& data, ImageSource::AlphaOption alphaOption, … in create() argument
46 return new ImageDecoderQt(alphaOption, gammaAndColorProfileOption); in create()
49 ImageDecoderQt::ImageDecoderQt(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProf… in ImageDecoderQt() argument
50 : ImageDecoder(alphaOption, gammaAndColorProfileOption) in ImageDecoderQt()
/external/webkit/Source/WebCore/platform/image-decoders/bmp/
DBMPImageDecoder.cpp43 BMPImageDecoder::BMPImageDecoder(ImageSource::AlphaOption alphaOption, in BMPImageDecoder() argument
45 : ImageDecoder(alphaOption, gammaAndColorProfileOption) in BMPImageDecoder()
/external/webkit/Source/WebCore/platform/graphics/
DImageSource.cpp44 ImageSource::ImageSource(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOpt… in ImageSource() argument
46 , m_alphaOption(alphaOption) in ImageSource()
DImageSource.h152 …ImageSource(AlphaOption alphaOption = AlphaPremultiplied, GammaAndColorProfileOption gammaAndColor…
/external/webkit/Source/WebCore/platform/image-decoders/webp/
DWEBPImageDecoder.cpp38 WEBPImageDecoder::WEBPImageDecoder(ImageSource::AlphaOption alphaOption, in WEBPImageDecoder() argument
40 : ImageDecoder(alphaOption, gammaAndColorProfileOption) in WEBPImageDecoder()
/external/webkit/Source/WebCore/platform/graphics/cg/
DImageSourceCG.cpp71 ImageSource::ImageSource(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOpt… in ImageSource() argument
74 , m_alphaOption(alphaOption) in ImageSource()
/external/webkit/Source/WebCore/platform/image-decoders/ico/
DICOImageDecoder.cpp47 ICOImageDecoder::ICOImageDecoder(ImageSource::AlphaOption alphaOption, in ICOImageDecoder() argument
49 : ImageDecoder(alphaOption, gammaAndColorProfileOption) in ICOImageDecoder()
/external/webkit/Source/WebCore/platform/image-decoders/png/
DPNGImageDecoder.cpp172 PNGImageDecoder::PNGImageDecoder(ImageSource::AlphaOption alphaOption, in PNGImageDecoder() argument
174 : ImageDecoder(alphaOption, gammaAndColorProfileOption) in PNGImageDecoder()
/external/webkit/Source/WebCore/platform/image-decoders/gif/
DGIFImageDecoder.cpp32 GIFImageDecoder::GIFImageDecoder(ImageSource::AlphaOption alphaOption, in GIFImageDecoder() argument
34 : ImageDecoder(alphaOption, gammaAndColorProfileOption) in GIFImageDecoder()
/external/webkit/Source/WebCore/platform/image-decoders/jpeg/
DJPEGImageDecoder.cpp407 JPEGImageDecoder::JPEGImageDecoder(ImageSource::AlphaOption alphaOption, in JPEGImageDecoder() argument
409 : ImageDecoder(alphaOption, gammaAndColorProfileOption) in JPEGImageDecoder()
/external/webkit/Source/WebCore/platform/graphics/android/
DImageSourceAndroid.cpp133 ImageSource::ImageSource(AlphaOption alphaOption, GammaAndColorProfileOption gammaAndColorProfileOp… in ImageSource() argument
134 : m_alphaOption(alphaOption) in ImageSource()