Searched refs:m_bitmap (Results 1 - 25 of 25) sorted by relevance

/external/webkit/Source/WebCore/platform/image-decoders/skia/
H A DImageDecoderSkia.cpp50 m_bitmap = other.m_bitmap;
53 m_bitmap.lockPixels();
64 m_bitmap.reset();
74 m_bitmap.eraseARGB(0, 0, 0, 0);
82 m_bitmap.reset();
83 const NativeImageSkia& otherBitmap = other.m_bitmap;
84 return otherBitmap.copyTo(&m_bitmap, otherBitmap.config());
92 m_bitmap.setConfig(SkBitmap::kARGB_8888_Config, newWidth, newHeight);
93 if (!m_bitmap
[all...]
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DStillImageHaiku.cpp38 : m_bitmap(&bitmap)
53 return m_bitmap.BitsLength();
58 return IntSize(m_bitmap.Bounds().IntegerWidth() + 1, m_bitmap.Bounds().IntegerHeight() + 1);
63 return &m_bitmap;
69 if (!m_bitmap.IsValid())
74 context->platformContext()->DrawBitmap(&m_bitmap, sourceRect, destRect);
H A DImageBufferDataHaiku.h40 BBitmap m_bitmap; member in class:WebCore::ImageBufferData
H A DStillImageHaiku.h53 BBitmap m_bitmap; member in class:WebCore::StillImage
H A DImageBufferHaiku.cpp44 : m_bitmap(BRect(0, 0, size.width() - 1, size.height() - 1), B_RGBA32, true)
45 , m_view(m_bitmap.Bounds(), "WebKit ImageBufferData", 0, 0)
48 m_bitmap.Lock();
49 m_bitmap.AddChild(&m_view);
52 memset(m_bitmap.Bits(), 0, m_bitmap.BitsLength());
66 m_bitmap.Unlock();
100 m_image = StillImage::create(m_data.m_bitmap);
108 uint8* rowData = reinterpret_cast<uint8*>(m_data.m_bitmap.Bits());
109 unsigned bytesPerRow = m_data.m_bitmap
[all...]
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DImageBufferDataWince.h29 RefPtr<SharedBitmap> m_bitmap; member in class:WebCore::ImageBufferData
H A DImageBufferWinCE.cpp43 virtual IntSize size() const { return IntSize(m_data->m_bitmap->width(), m_data->m_bitmap->height()); }
57 m_data->m_bitmap->draw(ctxt, intDstRect, intSrcRect, styleColorSpace, compositeOp);
63 m_data->m_bitmap->drawPattern(ctxt, tileRectIn, patternTransform, phase, styleColorSpace, op, destRect, size());
67 : m_bitmap(SharedBitmap::create(size, BitmapInfo::BitCount32, false))
71 m_bitmap->resetPixels(true);
72 m_bitmap->setHasAlpha(true);
83 m_context->setBitmap(m_data.m_bitmap);
182 return getImageData<false>(rect, m_data.m_bitmap.get());
187 return getImageData<true>(rect, m_data.m_bitmap
[all...]
H A DSharedBitmap.h118 m_bitmap->releaseDC(m_hdc, m_key);
122 m_bitmap = bmp;
125 SharedBitmap* m_bitmap; member in class:WebCore::SharedBitmap::DCHolder
H A DGraphicsContextWinCE.cpp266 bool hasAlpha() const { return m_bitmap && m_bitmap->hasAlpha(); }
293 if (bmp->is32bit() && (!m_bitmap || m_bitmap->is16bit())) {
344 RefPtr<SharedBitmap> m_bitmap; member in class:WebCore::GraphicsContextPlatformPrivate
461 RefPtr<SharedBitmap> m_bitmap; member in class:WebCore::TransparentLayerDC
475 // SharedBitmap::getDC() is called, I.E., when m_bitmap is not null.
523 m_bitmap = SharedBitmap::create(m_origRect.size(), m_rotatedBitmap->is16bit() ? BitmapInfo::BitCount16 : BitmapInfo::BitCount32, true);
524 if (m_bitmap)
525 rotateBitmap(m_bitmap
[all...]
/external/webkit/Source/WebKit2/Shared/
H A DWebImage.cpp48 : m_bitmap(bitmap)
50 ASSERT(m_bitmap);
59 return m_bitmap->size();
H A DWebImage.h53 ShareableBitmap* bitmap() const { return m_bitmap.get(); }
60 RefPtr<ShareableBitmap> m_bitmap; member in class:WebKit::WebImage
/external/webkit/Source/WebKit/chromium/src/
H A DWebImageSkia.cpp88 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/Source/WebCore/platform/graphics/chromium/
H A DPlatformCanvas.cpp69 m_bitmap = &m_canvas->m_skiaCanvas->getDevice()->accessBitmap(false);
70 m_bitmap->lockPixels();
72 if (m_bitmap->config() == SkBitmap::kARGB_8888_Config)
73 m_pixels = static_cast<uint8_t*>(m_bitmap->getPixels());
75 m_bitmap = 0;
85 if (m_bitmap)
86 m_bitmap->unlockPixels();
H A DPlatformCanvas.h72 const SkBitmap* m_bitmap; member in class:WebCore::PlatformCanvas::AutoLocker
/external/webkit/Source/WebKit/chromium/public/
H A DWebImage.h87 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/Source/WebKit2/UIProcess/win/
H A DBackingStoreWin.cpp66 ASSERT(m_bitmap);
67 ::BitBlt(dc, rect.x(), rect.y(), rect.width(), rect.height(), BitmapDC(m_bitmap.get(), dc), rect.x(), rect.y(), SRCCOPY);
80 if (!m_bitmap)
81 m_bitmap = createBitmap(m_size);
87 BitmapDC dc(m_bitmap.get(), 0);
106 ::ScrollDC(BitmapDC(m_bitmap.get(), 0), scrollOffset.width(), scrollOffset.height(), &winScrollRect, &winScrollRect, 0, 0);
/external/webkit/Source/WebKit/android/
H A DRenderSkinNinePatch.h31 SkBitmap m_bitmap; member in struct:NinePatch
H A DRenderSkinNinePatch.cpp69 if (!decoder->decode(&stream, &ninepatch->m_bitmap, prefConfig, mode, true)) {
93 if (patch.m_bitmap.width() >= bounds.width() || patch.m_bitmap.height() >= bounds.height()) {
98 SkNinePatch::DrawMesh(canvas, bounds, patch.m_bitmap,
103 NinePatch_Draw(canvas, bounds, patch.m_bitmap, *data, 0, 0);
/external/webkit/Source/WebCore/platform/graphics/win/
H A DGraphicsContextWin.cpp72 m_bitmap = CreateDIBSection(0, &bitmapInfo, DIB_RGB_COLORS, &storage, 0, 0);
73 if (!m_bitmap)
77 SelectObject(m_hdc, m_bitmap);
79 m_pixelData.initialize(m_bitmap);
88 if (!m_bitmap)
92 DeleteObject(m_bitmap);
/external/webkit/Source/WebCore/platform/image-decoders/
H A DImageDecoder.h111 NativeImageSkia& bitmap() { return m_bitmap; }
112 const NativeImageSkia& bitmap() const { return m_bitmap; }
162 return m_bitmap.getAddr32(x, y);
195 NativeImageSkia m_bitmap;
/external/webkit/Source/WebKit2/UIProcess/
H A DBackingStore.h82 OwnPtr<HBITMAP> m_bitmap; member in class:WebKit::BackingStore
/external/webkit/Source/WebKit/win/
H A DFullscreenVideoController.h156 OwnPtr<HBITMAP> m_bitmap; member in class:FullscreenVideoController
H A DFullscreenVideoController.cpp437 // will get cleaned up when m_bitmap is destroyed in the dtor
440 m_bitmap.set(::CreateDIBSection(0, &bitmapInfo, DIB_RGB_COLORS, &pixels, 0, 0));
487 HGDIOBJ oldBitmap = SelectObject(bitmapDC, m_bitmap.get());
/external/webkit/Source/WebCore/platform/graphics/android/
H A DLayerAndroid.cpp514 m_bitmap.setConfig(SkBitmap::kARGB_8888_Config, TOUCH_SLOP * 2,
517 m_checker.setBitmapDevice(m_bitmap);
557 SkBitmap m_bitmap; member in class:WebCore::LayerAndroid::FindState
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext.h503 HBITMAP m_bitmap; member in class:WebCore::GraphicsContext::WindowsBitmap

Completed in 221 milliseconds