HomeSort by relevance Sort by last modified time
    Searched refs:ImageSource (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageSource.cpp 29 #include "platform/graphics/ImageSource.h"
36 ImageSource::ImageSource(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
42 ImageSource::~ImageSource()
46 size_t ImageSource::clearCacheExceptFrame(size_t clearExceptFrame)
51 bool ImageSource::initialized() const
56 void ImageSource::resetDecoder(
    [all...]
ImageSource.h 62 class PLATFORM_EXPORT ImageSource {
63 WTF_MAKE_NONCOPYABLE(ImageSource);
75 ImageSource(AlphaOption alphaOption = AlphaPremultiplied, GammaAndColorProfileOption gammaAndColorProfileOption = GammaAndColorProfileApplied);
76 ~ImageSource();
78 // Tells the ImageSource that the Image no longer cares about decoded frame
82 // In response, the ImageSource should delete cached decoded data for other
DeferredImageDecoder.h 34 #include "platform/graphics/ImageSource.h"
49 static PassOwnPtr<DeferredImageDecoder> create(const SharedBuffer& data, ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
ImageFrameGenerator.cpp 176 OwnPtr<ImageDecoder> decoder = ImageDecoder::create(*data, ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied);
270 *decoder = ImageDecoder::create(*data, ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied).leakPtr();
328 OwnPtr<ImageDecoder> decoder = ImageDecoder::create(*data, ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied);
GraphicsContextRecorder.cpp 35 #include "platform/graphics/ImageSource.h"
81 OwnPtr<ImageDecoder> imageDecoder = ImageDecoder::create(*buffer, ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileIgnored);
BitmapImage.h 36 #include "platform/graphics/ImageSource.h"
166 ImageSource m_source;
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 44 BMPImageDecoder::BMPImageDecoder(ImageSource::AlphaOption alphaOption,
45 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption,
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
PNGImageDecoder.h 41 PNGImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
  /external/chromium_org/third_party/WebKit/Source/web/
WebImageDecoder.cpp 58 m_private = new BMPImageDecoder(ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied, maxDecodedBytes);
61 m_private = new ICOImageDecoder(ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied, maxDecodedBytes);
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoder.h 34 #include "platform/graphics/ImageSource.h"
74 ImageDecoder(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption, size_t maxDecodedBytes)
75 : m_premultiplyAlpha(alphaOption == ImageSource::AlphaPremultiplied)
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)
ImageDecoderTest.cpp 46 : ImageDecoder(ImageSource::AlphaNotPremultiplied, ImageSource::GammaAndColorProfileApplied, noDecodedImageByteLimit)
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
JPEGImageDecoder.h 43 JPEGImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
JPEGImageDecoderTest.cpp 62 return adoptPtr(new JPEGImageDecoder(ImageSource::AlphaNotPremultiplied, ImageSource::GammaAndColorProfileApplied, maxDecodedBytes));
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebImageSkia.cpp 52 OwnPtr<ImageDecoder> decoder(ImageDecoder::create(*buffer.get(), ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileIgnored));
100 OwnPtr<ImageDecoder> decoder(ImageDecoder::create(*buffer.get(), ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileIgnored));
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoder.h 43 GIFImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
GIFImageDecoder.cpp 37 GIFImageDecoder::GIFImageDecoder(ImageSource::AlphaOption alphaOption,
38 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption,
83 // There are some additional wrinkles here. First, ImageSource::clear()
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
WEBPImageDecoder.h 41 WEBPImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
WEBPImageDecoderTest.cpp 60 PassOwnPtr<WEBPImageDecoder> createDecoder(ImageSource::AlphaOption alphaOption = ImageSource::AlphaNotPremultiplied)
62 return adoptPtr(new WEBPImageDecoder(alphaOption, ImageSource::GammaAndColorProfileApplied, ImageDecoder::noDecodedImageByteLimit));
252 OwnPtr<WEBPImageDecoder> decoderA = createDecoder(ImageSource::AlphaPremultiplied);
255 OwnPtr<WEBPImageDecoder> decoderB = createDecoder(ImageSource::AlphaNotPremultiplied);
WEBPImageDecoder.cpp 128 WEBPImageDecoder::WEBPImageDecoder(ImageSource::AlphaOption alphaOption,
129 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption,
147 m_blendFunction = (alphaOption == ImageSource::AlphaPremultiplied) ? alphaBlendPremultiplied : alphaBlendNonPremultiplied;
311 // with 0 meaning "infinite". But ImageSource::repetitionCount()
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
MockImageDecoder.h 55 : ImageDecoder(ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied, noDecodedImageByteLimit)
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/
ICOImageDecoder.h 43 ICOImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
ICOImageDecoder.cpp 48 ICOImageDecoder::ICOImageDecoder(ImageSource::AlphaOption alphaOption,
49 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption,
231 new PNGImageDecoder(m_premultiplyAlpha ? ImageSource::AlphaPremultiplied : ImageSource::AlphaNotPremultiplied,
232 m_ignoreGammaAndColorProfile ? ImageSource::GammaAndColorProfileIgnored : ImageSource::GammaAndColorProfileApplied, m_maxDecodedBytes));

Completed in 203 milliseconds

1 2