/external/webkit/Source/WebCore/platform/graphics/skia/ |
D | GraphicsContext3DSkia.cpp | 47 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/ |
D | GraphicsContext3DCG.cpp | 95 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/ |
D | GraphicsContext3DCairo.cpp | 41 …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/ |
D | ImageDecoder.h | 130 bool premultiplyAlpha() const { return m_premultiplyAlpha; } in premultiplyAlpha() function 138 void setPremultiplyAlpha(bool premultiplyAlpha) { m_premultiplyAlpha = premultiplyAlpha; } in setPremultiplyAlpha() argument
|
D | ImageDecoder.cpp | 154 setPremultiplyAlpha(other.premultiplyAlpha()); in operator =()
|
/external/webkit/Source/WebCore/platform/image-decoders/skia/ |
D | ImageDecoderSkia.cpp | 58 setPremultiplyAlpha(other.premultiplyAlpha()); in operator =()
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | GraphicsContext3D.h | 533 bool premultiplyAlpha, 545 bool premultiplyAlpha, 556 bool flipY, bool premultiplyAlpha, 848 bool premultiplyAlpha,
|
D | GraphicsContext3D.cpp | 172 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/ |
D | WebGLRenderingContext.h | 491 bool flipY, bool premultiplyAlpha, ExceptionCode&); 497 Image* image, bool flipY, bool premultiplyAlpha, ExceptionCode&);
|
D | WebGLRenderingContext.cpp | 3075 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/ |
D | GraphicsContext3DQt.cpp | 1735 bool premultiplyAlpha, in getImageData() argument 1747 if (!premultiplyAlpha) in getImageData()
|
/external/webkit/Source/WebKit/chromium/ |
D | ChangeLog-2011-02-16 | 10575 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/ |
D | ChangeLog-2010-05-24 | 42913 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):
|
D | ChangeLog-2010-12-06 | 65471 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):
|