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

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageSource.h 70 enum GammaAndColorProfileOption {
75 ImageSource(AlphaOption alphaOption = AlphaPremultiplied, GammaAndColorProfileOption gammaAndColorProfileOption = GammaAndColorProfileApplied);
133 GammaAndColorProfileOption m_gammaAndColorProfileOption;
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)
38 , m_gammaAndColorProfileOption(gammaAndColorProfileOption)
DeferredImageDecoder.cpp 60 PassOwnPtr<DeferredImageDecoder> DeferredImageDecoder::create(const SharedBuffer& data, ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption 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 45 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption,
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 221 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption,
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 684 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption,
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)
76 , m_ignoreGammaAndColorProfile(gammaAndColorProfileOption == ImageSource::GammaAndColorProfileIgnored)
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 38 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption,
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 129 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption,
131 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/
ICOImageDecoder.h 43 ICOImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
ICOImageDecoder.cpp 49 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption,
51 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)

Completed in 75 milliseconds