Home
last modified time | relevance | path

Searched refs:premultiplyAlpha (Results 1 – 14 of 14) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/skia/
DGraphicsContext3DSkia.cpp47 bool premultiplyAlpha, in getImageData() argument
57 …if ((!skiaImage || ignoreGammaAndColorProfile || (hasAlpha && !premultiplyAlpha)) && image->data()… in getImageData()
72 if (hasAlpha && premultiplyAlpha) in getImageData()
74 } else if (!premultiplyAlpha && hasAlpha) in getImageData()
/external/webkit/Source/WebCore/platform/graphics/cg/
DGraphicsContext3DCG.cpp95 bool premultiplyAlpha, in getImageData() argument
104 if ((ignoreGammaAndColorProfile || (hasAlpha && !premultiplyAlpha)) && image->data()) { in getImageData()
201 if (!premultiplyAlpha) in getImageData()
207 if (premultiplyAlpha) in getImageData()
216 if (!premultiplyAlpha) in getImageData()
221 if (premultiplyAlpha) in getImageData()
/external/webkit/Source/WebCore/platform/graphics/cairo/
DGraphicsContext3DCairo.cpp41 …mageData(Image* image, unsigned int format, unsigned int type, bool premultiplyAlpha, bool ignoreG… in getImageData() argument
46 …ImageSource decoder(premultiplyAlpha ? ImageSource::AlphaPremultiplied : ImageSource::AlphaNotPrem… in getImageData()
57 if (!premultiplyAlpha) in getImageData()
/external/webkit/Source/WebCore/platform/image-decoders/
DImageDecoder.h130 bool premultiplyAlpha() const { return m_premultiplyAlpha; } in premultiplyAlpha() function
138 void setPremultiplyAlpha(bool premultiplyAlpha) { m_premultiplyAlpha = premultiplyAlpha; } in setPremultiplyAlpha() argument
DImageDecoder.cpp154 setPremultiplyAlpha(other.premultiplyAlpha()); in operator =()
/external/webkit/Source/WebCore/platform/image-decoders/skia/
DImageDecoderSkia.cpp58 setPremultiplyAlpha(other.premultiplyAlpha()); in operator =()
/external/webkit/Source/WebCore/platform/graphics/
DGraphicsContext3D.h533 bool premultiplyAlpha,
545 bool premultiplyAlpha,
556 bool flipY, bool premultiplyAlpha,
848 bool premultiplyAlpha,
DGraphicsContext3D.cpp172 bool premultiplyAlpha, in extractImageData() argument
178 if (!getImageData(image, format, type, premultiplyAlpha, ignoreGammaAndColorProfile, data)) in extractImageData()
199 bool premultiplyAlpha, in extractImageData() argument
215 premultiplyAlpha ? AlphaDoPremultiply : AlphaDoNothing, in extractImageData()
236 bool flipY, bool premultiplyAlpha, in extractTextureData() argument
311 (premultiplyAlpha ? AlphaDoPremultiply : AlphaDoNothing), in extractTextureData()
/external/webkit/Source/WebCore/html/canvas/
DWebGLRenderingContext.h491 bool flipY, bool premultiplyAlpha, ExceptionCode&);
497 Image* image, bool flipY, bool premultiplyAlpha, ExceptionCode&);
DWebGLRenderingContext.cpp3075 bool flipY, bool premultiplyAlpha, ExceptionCode& ec) in texImage2DImpl() argument
3079 …if (!m_context->extractImageData(image, format, type, flipY, premultiplyAlpha, m_unpackColorspaceC… in texImage2DImpl()
3274 … Image* image, bool flipY, bool premultiplyAlpha, ExceptionCode& ec) in texSubImage2DImpl() argument
3280 …if (!m_context->extractImageData(image, format, type, flipY, premultiplyAlpha, m_unpackColorspaceC… in texSubImage2DImpl()
/external/webkit/Source/WebCore/platform/graphics/qt/
DGraphicsContext3DQt.cpp1735 bool premultiplyAlpha, in getImageData() argument
1747 if (!premultiplyAlpha) in getImageData()
/external/webkit/Source/WebKit/chromium/
DChangeLog-2011-02-1610575 Passing premultiplyAlpha=false to tex{Sub}Image2D loses information (skia)
10579 (WebKit::WebImageDecoder::init): Add premultiplyAlpha flag.
23217 texSubImage2D and the flipY parameter. The premultiplyAlpha
/external/webkit/Source/WebCore/
DChangeLog-2010-05-2442913 texImage2D and texSubImage2D taking ImageData ignore flipY and premultiplyAlpha
42919 …(WebCore::WebGLRenderingContext::texImage2D): Apply flipY and premultiplyAlpha to the texture data.
42922 …hicsContext3D::extractImageData): Extract data from ImageData, applying flipY and premultiplyAlpha.
47032 texSubImage2D and the flipY parameter. The premultiplyAlpha
47048 (WebCore::GraphicsContext3D::premultiplyAlpha):
DChangeLog-2010-12-0665471 Passing premultiplyAlpha=false to tex{Sub}Image2D loses information (cg)
65475 (WebCore::GraphicsContext3D::getImageData): Fix the premultiplyAlpha issue for cg.
68540 Passing premultiplyAlpha=false to tex{Sub}Image2D loses information (skia)
71273 Passing premultiplyAlpha=false to tex{Sub}Image2D loses information (skia)
71279 * platform/graphics/ImageSource.cpp: Add premultiplyAlpha flag.
71291 …* platform/graphics/skia/GraphicsContext3DSkia.cpp: Fix the premultiplyAlpha data loss issue in sk…
71293 * platform/image-decoders/ImageDecoder.cpp: Add premultiplyAlpha flag.
71298 (WebCore::RGBA32Buffer::premultiplyAlpha):