HomeSort by relevance Sort by last modified time
    Searched full:m_bitmap (Results 1 - 11 of 11) sorted by null

  /external/webkit/WebCore/platform/image-decoders/skia/
ImageDecoderSkia.cpp 44 m_bitmap.reset();
54 m_bitmap.eraseARGB(0, 0, 0, 0);
62 m_bitmap.reset();
63 const NativeImageSkia& otherBitmap = other.m_bitmap;
64 otherBitmap.copyTo(&m_bitmap, otherBitmap.config());
72 m_bitmap.setConfig(SkBitmap::kARGB_8888_Config, newWidth, newHeight);
73 if (!m_bitmap.allocPixels())
85 return new SkBitmapRef(m_bitmap);
87 return new NativeImageSkia(m_bitmap);
93 return !m_bitmap.isOpaque()
    [all...]
  /external/webkit/WebCore/platform/graphics/wince/
ImageBufferWince.cpp 41 virtual IntSize size() const { return IntSize(m_data->m_bitmap->width(), m_data->m_bitmap->height()); }
55 m_data->m_bitmap->draw(ctxt, intDstRect, intSrcRect, compositeOp);
61 m_data->m_bitmap->drawPattern(ctxt, tileRectIn, patternTransform, phase, op, destRect, size());
65 : m_bitmap(SharedBitmap::createInstance(false, size.width(), size.height(), false))
69 m_bitmap->resetPixels(true);
70 m_bitmap->setHasAlpha(true);
81 m_context->setBitmap(m_data.m_bitmap);
154 return getImageData<false>(rect, m_data.m_bitmap.get());
159 return getImageData<true>(rect, m_data.m_bitmap.get())
    [all...]
ImageBufferData.h 29 RefPtr<SharedBitmap> m_bitmap; member in class:WebCore::ImageBufferData
GraphicsContextWince.cpp 266 bool hasAlpha() const { return m_bitmap && m_bitmap->hasAlpha(); }
293 if (bmp->is32bit() && (!m_bitmap || m_bitmap->is16bit())) {
345 RefPtr<SharedBitmap> m_bitmap; member in class:WebCore::GraphicsContextPlatformPrivate
461 RefPtr<SharedBitmap> m_bitmap; member in class:WebCore::TransparentLayerDC
476 // SharedBitmap::getDC() is called, I.E., when m_bitmap is not null.
524 m_bitmap = SharedBitmap::createInstance(m_rotatedBitmap->is16bit(), m_origRect.width(), m_origRect.height(), true);
525 if (m_bitmap)
526 rotateBitmap(m_bitmap.get(), m_rotatedBitmap.get(), -m_rotation)
    [all...]
  /external/webkit/WebKit/chromium/src/
WebImageSkia.cpp 88 m_bitmap.reset();
93 m_bitmap = image.m_bitmap;
98 return m_bitmap.isNull();
103 return WebSize(m_bitmap.width(), m_bitmap.height());
  /external/webkit/WebKit/chromium/public/
WebImage.h 87 WebImage(const SkBitmap& bitmap) : m_bitmap(bitmap) { }
91 m_bitmap = bitmap;
95 SkBitmap& getSkBitmap() { return m_bitmap; }
96 const SkBitmap& getSkBitmap() const { return m_bitmap; }
100 SkBitmap m_bitmap; member in class:WebKit::WebImage
  /external/webkit/WebCore/platform/graphics/win/
GraphicsContextWin.cpp 74 m_bitmap = CreateDIBSection(0, &bitmapInfo, DIB_RGB_COLORS, reinterpret_cast<void**>(&m_bitmapBuffer), 0, 0);
75 if (!m_bitmap)
79 SelectObject(m_hdc, m_bitmap);
82 GetObject(m_bitmap, sizeof(bmpInfo), &bmpInfo);
91 if (!m_bitmap)
95 DeleteObject(m_bitmap);
  /external/webkit/WebCore/platform/image-decoders/
ImageDecoder.h 107 NativeImageSkia& bitmap() { return m_bitmap; }
108 const NativeImageSkia& bitmap() const { return m_bitmap; }
153 return m_bitmap.getAddr32(x, y);
182 NativeImageSkia m_bitmap;
  /external/webkit/WebKit/win/
FullscreenVideoController.cpp 353 // will get cleaned up when m_bitmap is destroyed in the dtor
356 m_bitmap.set(::CreateDIBSection(0, &bitmapInfo, DIB_RGB_COLORS, &pixels, 0, 0));
403 SelectObject(bitmapDC, m_bitmap.get());
FullscreenVideoController.h 152 OwnPtr<HBITMAP> m_bitmap; member in class:FullscreenVideoController
  /external/webkit/WebCore/platform/graphics/
GraphicsContext.h 390 HBITMAP m_bitmap; member in class:WebCore::GraphicsContext::WindowsBitmap

Completed in 107 milliseconds