Searched refs:ImageSource (Results 1 - 25 of 42) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageSource.cpp29 #include "platform/graphics/ImageSource.h"
36 ImageSource::ImageSource(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption) function in class:blink::ImageSource
42 ImageSource::~ImageSource()
46 size_t ImageSource::clearCacheExceptFrame(size_t clearExceptFrame)
51 bool ImageSource::initialized() const
56 void ImageSource
[all...]
H A DImageSource.h62 class PLATFORM_EXPORT ImageSource { class in namespace:blink
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
H A DDeferredImageDecoder.h34 #include "platform/graphics/ImageSource.h"
49 static PassOwnPtr<DeferredImageDecoder> create(const SharedBuffer& data, ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
H A DImageFrameGenerator.cpp176 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);
H A DGraphicsContextRecorder.cpp35 #include "platform/graphics/ImageSource.h"
81 OwnPtr<ImageDecoder> imageDecoder = ImageDecoder::create(*buffer, ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileIgnored);
H A DDeferredImageDecoder.cpp60 PassOwnPtr<DeferredImageDecoder> DeferredImageDecoder::create(const SharedBuffer& data, ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorOption)
H A DBitmapImage.h36 #include "platform/graphics/ImageSource.h"
166 ImageSource m_source;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebImageDecoder.cpp58 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/
H A DImageDecoder.h34 #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);
H A DImageDecoder.cpp85 PassOwnPtr<ImageDecoder> ImageDecoder::create(const SharedBuffer& data, ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
H A DImageDecoderTest.cpp46 : ImageDecoder(ImageSource::AlphaNotPremultiplied, ImageSource::GammaAndColorProfileApplied, noDecodedImageByteLimit)
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
H A DBMPImageDecoder.h42 BMPImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
H A DBMPImageDecoder.cpp44 BMPImageDecoder::BMPImageDecoder(ImageSource::AlphaOption alphaOption,
45 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption,
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
H A DPNGImageDecoder.h41 PNGImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebImageSkia.cpp52 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/
H A DGIFImageDecoder.h43 GIFImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
H A DGIFImageDecoder.cpp37 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/jpeg/
H A DJPEGImageDecoder.h43 JPEGImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
H A DJPEGImageDecoderTest.cpp62 return adoptPtr(new JPEGImageDecoder(ImageSource::AlphaNotPremultiplied, ImageSource::GammaAndColorProfileApplied, maxDecodedBytes));
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
H A DWEBPImageDecoder.h41 WEBPImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
H A DWEBPImageDecoderTest.cpp60 PassOwnPtr<WEBPImageDecoder> createDecoder(ImageSource::AlphaOption alphaOption = ImageSource::AlphaNotPremultiplied) argument
62 return adoptPtr(new WEBPImageDecoder(alphaOption, ImageSource::GammaAndColorProfileApplied, ImageDecoder::noDecodedImageByteLimit));
252 OwnPtr<WEBPImageDecoder> decoderA = createDecoder(ImageSource::AlphaPremultiplied);
255 OwnPtr<WEBPImageDecoder> decoderB = createDecoder(ImageSource::AlphaNotPremultiplied);
H A DWEBPImageDecoder.cpp128 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/image-decoders/ico/
H A DICOImageDecoder.h43 ICOImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
H A DICOImageDecoder.cpp48 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));
/external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
H A DMockImageDecoder.h55 : ImageDecoder(ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied, noDecodedImageByteLimit)

Completed in 208 milliseconds

12