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

1 2

  /external/webkit/Source/WebCore/platform/graphics/
ImageSource.cpp 30 #include "ImageSource.h"
41 unsigned ImageSource::s_maxPixelsPerDecodedImage = 1024 * 1024;
44 ImageSource::ImageSource(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
51 ImageSource::~ImageSource()
56 void ImageSource::clear(bool destroyAll, size_t clearBeforeFrame, SharedBuffer* data, bool allDataReceived)
70 bool ImageSource::initialized() cons
    [all...]
ImageSource.h 139 class ImageSource {
140 WTF_MAKE_NONCOPYABLE(ImageSource);
152 ImageSource(AlphaOption alphaOption = AlphaPremultiplied, GammaAndColorProfileOption gammaAndColorProfileOption = GammaAndColorProfileApplied);
153 ~ImageSource();
155 // Tells the ImageSource that the Image no longer cares about decoded frame
157 // |clearBeforeFrame| (if |destroyAll| is false). The ImageSource should
159 // usage low. When |destroyAll| is true, the ImageSource should also reset
174 // the ImageSource. This way implementations which choose to destroy their
BitmapImage.h 268 ImageSource m_source;
  /external/webkit/Source/WebCore/platform/image-decoders/webp/
WEBPImageDecoder.h 43 WEBPImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
WEBPImageDecoder.cpp 38 WEBPImageDecoder::WEBPImageDecoder(ImageSource::AlphaOption alphaOption,
39 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
  /external/webkit/Source/WebCore/platform/image-decoders/jpeg/
JPEGImageDecoder.h 40 JPEGImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageSourceCG.cpp 27 #include "ImageSource.h"
71 ImageSource::ImageSource(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
79 ImageSource::~ImageSource()
84 void ImageSource::clear(bool destroyAllFrames, size_t, SharedBuffer* data, bool allDataReceived)
124 bool ImageSource::initialized() const
129 void ImageSource::setData(SharedBuffer* data, bool allDataReceived
    [all...]
GraphicsContext3DCG.cpp 105 ImageSource decoder(ImageSource::AlphaNotPremultiplied,
106 ignoreGammaAndColorProfile ? ImageSource::GammaAndColorProfileIgnored : ImageSource::GammaAndColorProfileApplied);
  /external/webkit/Source/WebCore/platform/image-decoders/bmp/
BMPImageDecoder.h 42 BMPImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
BMPImageDecoder.cpp 43 BMPImageDecoder::BMPImageDecoder(ImageSource::AlphaOption alphaOption,
44 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
  /external/webkit/Source/WebCore/platform/image-decoders/png/
PNGImageDecoder.h 39 PNGImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
  /external/webkit/Source/WebCore/platform/graphics/android/
ImageSourceAndroid.cpp 28 #include "ImageSource.h"
47 // TODO: We should make use of some of the common code in platform/graphics/ImageSource.cpp.
133 ImageSource::ImageSource(AlphaOption alphaOption, GammaAndColorProfileOption gammaAndColorProfileOption)
143 ImageSource::~ImageSource() {
150 bool ImageSource::initialized() const {
203 void ImageSource::clearURL()
208 void ImageSource::setURL(const String& url)
226 void ImageSource::setData(SharedBuffer* data, bool allDataReceived
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContext3DSkia.cpp 35 #include "ImageSource.h"
58 ImageSource decoder(ImageSource::AlphaNotPremultiplied,
59 ignoreGammaAndColorProfile ? ImageSource::GammaAndColorProfileIgnored : ImageSource::GammaAndColorProfileApplied);
  /external/webkit/Source/WebKit/chromium/src/
WebImageDecoder.cpp 59 m_private = new BMPImageDecoder(ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied);
62 m_private = new ICOImageDecoder(ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied);
WebImageSkia.cpp 35 #include "ImageSource.h"
51 ImageSource source;
WebImageCG.cpp 35 #include "ImageSource.h"
52 ImageSource source;
  /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)
49 ImageDecoderQt::ImageDecoderQt(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption 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,
33 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
105 // There are two additional wrinkles here. First, ImageSource::clear() may
151 // always use ImageSource::clear(true, ...) to completely free the memory in
162 // ImageSource::clear() can be called (see ImageSource.h), we're guaranteed
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContext3DCairo.cpp 46 ImageSource decoder(premultiplyAlpha ? ImageSource::AlphaPremultiplied : ImageSource::AlphaNotPremultiplied,
47 ignoreGammaAndColorProfile ? ImageSource::GammaAndColorProfileIgnored : ImageSource::GammaAndColorProfileApplied);
  /external/webkit/Source/WebCore/platform/image-decoders/ico/
ICOImageDecoder.h 43 ICOImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
ICOImageDecoder.cpp 47 ICOImageDecoder::ICOImageDecoder(ImageSource::AlphaOption alphaOption,
48 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
206 new PNGImageDecoder(m_premultiplyAlpha ? ImageSource::AlphaPremultiplied : ImageSource::AlphaNotPremultiplied,
207 m_ignoreGammaAndColorProfile ? ImageSource::GammaAndColorProfileIgnored : ImageSource::GammaAndColorProfileApplied));
  /external/webkit/Source/WebCore/platform/image-decoders/
ImageDecoder.h 33 #include "ImageSource.h"
227 ImageDecoder(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
229 , m_premultiplyAlpha(alphaOption == ImageSource::AlphaPremultiplied)
230 , m_ignoreGammaAndColorProfile(gammaAndColorProfileOption == ImageSource::GammaAndColorProfileIgnored)
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)

Completed in 565 milliseconds

1 2