Searched defs:hasAlpha (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
H A DMockImageDecoder.h110 void setFrameHasAlpha(bool hasAlpha) { m_frameBufferCache[0].setHasAlpha(hasAlpha); } argument
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
H A DImageFrame.cpp70 setHasAlpha(other.hasAlpha());
124 bool ImageFrame::hasAlpha() const function in class:WebCore::ImageFrame
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext.h58 virtual bool hasAlpha() const { return true; } function in class:WebCore::CanvasRenderingContext
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStyleColor.h70 bool hasAlpha() const { return m_color.hasAlpha(); } function in class:WebCore::StyleColor
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageFrameGenerator.cpp291 bool ImageFrameGenerator::hasAlpha(size_t index) function in class:WebCore::ImageFrameGenerator
H A DColor.h99 bool hasAlpha() const { return alpha() < 255; } function in class:WebCore::Color
H A DGradient.cpp110 bool Gradient::hasAlpha() const function in class:WebCore::Gradient
H A DGraphicsContext3D.cpp716 bool hasAlpha = m_skiaImage ? !m_skiaImage->bitmap().isOpaque() : true; local
717 if ((!m_skiaImage || ignoreGammaAndColorProfile || (hasAlpha && !premultiplyAlpha)) && m_image->data()) {
730 hasAlpha = frame->hasAlpha();
738 if (hasAlpha && premultiplyAlpha)
740 } else if (!premultiplyAlpha && hasAlpha) {
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWEBPImageDecoderTest.cpp218 bool hasAlpha; member in struct:AnimParam
237 EXPECT_EQ(frameParameters[i].hasAlpha, frame->hasAlpha());
260 bool hasAlpha; member in struct:AnimParam
280 EXPECT_EQ(frameParameters[i].hasAlpha, frame->hasAlpha());
303 bool hasAlpha; member in struct:AnimParam
323 EXPECT_EQ(frameParameters[i].hasAlpha, frame->hasAlpha());
/external/skia/bench/
H A DGradientBench.cpp266 Gradient2Bench(bool hasAlpha) { argument
267 fName.printf("gradient_create_%s", hasAlpha ? "alpha" : "opaque");
268 fHasAlpha = hasAlpha;
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
H A DWEBPImageDecoder.cpp44 inline WEBP_CSP_MODE outputMode(bool hasAlpha) { return hasAlpha ? MODE_rgbA : MODE_RGBA; } argument
46 inline WEBP_CSP_MODE outputMode(bool hasAlpha) { return hasAlpha ? MODE_bgrA : MODE_BGRA; } argument
301 m_frameBackgroundHasAlpha = prevBuffer.hasAlpha() || (prevBuffer.disposalMethod() == ImageFrame::DisposeOverwriteBgcolor);
306 // The correct value of 'hasAlpha' for the frame will be set when it is fully decoded.
502 // The correct value of 'hasAlpha' for the frame will be set when it is fully decoded.
/external/chromium_org/third_party/skia/src/opts/
H A DSkBitmapProcState_arm_neon.cpp104 bool hasAlpha) {
203 template<bool hasAlpha>
260 if (hasAlpha) {
319 if (hasAlpha) {
101 convolveHorizontally_neon(const unsigned char* srcData, const SkConvolutionFilter1D& filter, unsigned char* outRow, bool hasAlpha) argument
/external/skia/src/opts/
H A DSkBitmapProcState_arm_neon.cpp104 bool hasAlpha) {
203 template<bool hasAlpha>
260 if (hasAlpha) {
319 if (hasAlpha) {
101 convolveHorizontally_neon(const unsigned char* srcData, const SkConvolutionFilter1D& filter, unsigned char* outRow, bool hasAlpha) argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DColor.js229 hasAlpha: function()
239 if (this.hasAlpha())
289 if (this.hasAlpha())
295 if (this.hasAlpha())
303 if (this.hasAlpha())
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
H A DPNGImageDecoder.cpp170 void setHasAlpha(bool hasAlpha) { m_hasAlpha = hasAlpha; } argument
171 bool hasAlpha() const { return m_hasAlpha; } function in class:WebCore::PNGImageReader
180 void createColorTransform(const ColorProfile& colorProfile, bool hasAlpha) argument
196 qcms_data_type dataFormat = hasAlpha ? QCMS_DATA_RGBA_8 : QCMS_DATA_RGB_8;
409 unsigned colorChannels = m_reader->hasAlpha() ? 4 : 3;
474 bool hasAlpha = m_reader->hasAlpha();
475 unsigned colorChannels = hasAlpha ? 4 : 3;
497 unsigned alpha = hasAlpha
[all...]
/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder_libwebp.cpp302 int origWidth, origHeight, hasAlpha; local
303 if (!webp_parse_header(stream, &origWidth, &origHeight, &hasAlpha)) {
318 this->fHasAlpha = hasAlpha;
406 int origWidth, origHeight, hasAlpha; local
407 if (!webp_parse_header(stream, &origWidth, &origHeight, &hasAlpha)) {
410 this->fHasAlpha = hasAlpha;
576 int width, height, hasAlpha; local
577 if (!webp_parse_header(stream, &width, &height, &hasAlpha)) {
586 int width, height, hasAlpha; local
587 if (webp_parse_header(stream, &width, &height, &hasAlpha)) {
[all...]
H A DSkImageDecoder_libpng.cpp106 SkBitmap::Config *config, bool *hasAlpha,
325 bool hasAlpha = false; local
328 if (!this->getBitmapConfig(png_ptr, info_ptr, &config, &hasAlpha, &theTranspColor)) {
349 decodePalette(png_ptr, info_ptr, &hasAlpha, &reallyHasAlpha, &colorTable);
402 } else if (hasAlpha) {
795 bool hasAlpha = false; local
798 if (!this->getBitmapConfig(png_ptr, info_ptr, &config, &hasAlpha, &theTranspColor)) {
817 decodePalette(png_ptr, info_ptr, &hasAlpha, &reallyHasAlpha, &colorTable);
899 } else if (hasAlpha) {
1011 bool hasAlpha) {
1010 choose_proc(SkBitmap::Config config, bool hasAlpha) argument
1062 pack_palette(SkColorTable* ctable, png_color* SK_RESTRICT palette, png_byte* SK_RESTRICT trans, bool hasAlpha) argument
1129 const bool hasAlpha = !bitmap.isOpaque(); local
1189 doEncode(SkWStream* stream, const SkBitmap& bitmap, const bool& hasAlpha, int colorType, int bitDepth, SkBitmap::Config config, png_color_8& sig_bit) argument
[all...]
/external/skia/src/images/
H A DSkImageDecoder_libwebp.cpp302 int origWidth, origHeight, hasAlpha; local
303 if (!webp_parse_header(stream, &origWidth, &origHeight, &hasAlpha)) {
318 this->fHasAlpha = hasAlpha;
406 int origWidth, origHeight, hasAlpha; local
407 if (!webp_parse_header(stream, &origWidth, &origHeight, &hasAlpha)) {
410 this->fHasAlpha = hasAlpha;
576 int width, height, hasAlpha; local
577 if (!webp_parse_header(stream, &width, &height, &hasAlpha)) {
586 int width, height, hasAlpha; local
587 if (webp_parse_header(stream, &width, &height, &hasAlpha)) {
[all...]
H A DSkImageDecoder_libpng.cpp106 SkBitmap::Config *config, bool *hasAlpha,
325 bool hasAlpha = false; local
328 if (!this->getBitmapConfig(png_ptr, info_ptr, &config, &hasAlpha, &theTranspColor)) {
354 decodePalette(png_ptr, info_ptr, &hasAlpha, &reallyHasAlpha, &colorTable);
407 } else if (hasAlpha) {
794 bool hasAlpha = false; local
797 if (!this->getBitmapConfig(png_ptr, info_ptr, &config, &hasAlpha, &theTranspColor)) {
816 decodePalette(png_ptr, info_ptr, &hasAlpha, &reallyHasAlpha, &colorTable);
898 } else if (hasAlpha) {
1010 bool hasAlpha) {
1009 choose_proc(SkBitmap::Config config, bool hasAlpha) argument
1061 pack_palette(SkColorTable* ctable, png_color* SK_RESTRICT palette, png_byte* SK_RESTRICT trans, bool hasAlpha) argument
1128 const bool hasAlpha = !bitmap.isOpaque(); local
1188 doEncode(SkWStream* stream, const SkBitmap& bitmap, const bool& hasAlpha, int colorType, int bitDepth, SkBitmap::Config config, png_color_8& sig_bit) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.cpp523 void createColorTransform(const ColorProfile& colorProfile, bool hasAlpha) argument
539 qcms_data_type dataFormat = hasAlpha ? QCMS_DATA_RGBA_8 : QCMS_DATA_RGB_8;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1724 milliseconds