HomeSort by relevance Sort by last modified time
    Searched refs:AlphaOption (Results 1 - 20 of 20) sorted by null

  /external/webkit/Source/WebCore/platform/image-decoders/webp/
WEBPImageDecoder.h 43 WEBPImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
WEBPImageDecoder.cpp 38 WEBPImageDecoder::WEBPImageDecoder(ImageSource::AlphaOption alphaOption,
40 : ImageDecoder(alphaOption, gammaAndColorProfileOption)
  /external/webkit/Source/WebCore/platform/image-decoders/jpeg/
JPEGImageDecoder.h 40 JPEGImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
JPEGImageDecoder.cpp 407 JPEGImageDecoder::JPEGImageDecoder(ImageSource::AlphaOption alphaOption,
409 : ImageDecoder(alphaOption, gammaAndColorProfileOption)
  /external/webkit/Source/WebCore/platform/image-decoders/bmp/
BMPImageDecoder.h 42 BMPImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
BMPImageDecoder.cpp 43 BMPImageDecoder::BMPImageDecoder(ImageSource::AlphaOption alphaOption,
45 : ImageDecoder(alphaOption, gammaAndColorProfileOption)
  /external/webkit/Source/WebCore/platform/image-decoders/png/
PNGImageDecoder.h 39 PNGImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
PNGImageDecoder.cpp 172 PNGImageDecoder::PNGImageDecoder(ImageSource::AlphaOption alphaOption,
174 : ImageDecoder(alphaOption, gammaAndColorProfileOption)
  /external/webkit/Source/WebCore/platform/graphics/
ImageSource.h 142 enum AlphaOption {
152 ImageSource(AlphaOption alphaOption = AlphaPremultiplied, GammaAndColorProfileOption gammaAndColorProfileOption = GammaAndColorProfileApplied);
222 AlphaOption m_alphaOption;
ImageSource.cpp 44 ImageSource::ImageSource(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
46 , m_alphaOption(alphaOption)
  /external/webkit/Source/WebCore/platform/graphics/qt/
ImageDecoderQt.h 44 ImageDecoderQt(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
ImageDecoderQt.cpp 40 ImageDecoder* ImageDecoder::create(const SharedBuffer& data, ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
46 return new ImageDecoderQt(alphaOption, gammaAndColorProfileOption);
49 ImageDecoderQt::ImageDecoderQt(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
50 : ImageDecoder(alphaOption, gammaAndColorProfileOption)
  /external/webkit/Source/WebCore/platform/image-decoders/gif/
GIFImageDecoder.h 39 GIFImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
GIFImageDecoder.cpp 32 GIFImageDecoder::GIFImageDecoder(ImageSource::AlphaOption alphaOption,
34 : ImageDecoder(alphaOption, gammaAndColorProfileOption)
  /external/webkit/Source/WebCore/platform/image-decoders/ico/
ICOImageDecoder.h 43 ICOImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
ICOImageDecoder.cpp 47 ICOImageDecoder::ICOImageDecoder(ImageSource::AlphaOption alphaOption,
49 : ImageDecoder(alphaOption, gammaAndColorProfileOption)
  /external/webkit/Source/WebCore/platform/image-decoders/
ImageDecoder.h 227 ImageDecoder(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
229 , m_premultiplyAlpha(alphaOption == ImageSource::AlphaPremultiplied)
241 static ImageDecoder* create(const SharedBuffer& data, ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
ImageDecoder.cpp 101 ImageDecoder* ImageDecoder::create(const SharedBuffer& data, ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
110 return new GIFImageDecoder(alphaOption, gammaAndColorProfileOption);
113 return new PNGImageDecoder(alphaOption, gammaAndColorProfileOption);
116 return new JPEGImageDecoder(alphaOption, gammaAndColorProfileOption);
120 return new WEBPImageDecoder(alphaOption, gammaAndColorProfileOption);
124 return new BMPImageDecoder(alphaOption, gammaAndColorProfileOption);
127 return new ICOImageDecoder(alphaOption, gammaAndColorProfileOption);
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageSourceCG.cpp 71 ImageSource::ImageSource(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
74 , m_alphaOption(alphaOption)
  /external/webkit/Source/WebCore/platform/graphics/android/
ImageSourceAndroid.cpp 133 ImageSource::ImageSource(AlphaOption alphaOption, GammaAndColorProfileOption gammaAndColorProfileOption)
134 : m_alphaOption(alphaOption)

Completed in 167 milliseconds