HomeSort by relevance Sort by last modified time
    Searched refs:m_bitmap (Results 1 - 25 of 29) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/image-decoders/skia/
ImageDecoderSkia.cpp 50 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.allocPixels()
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
ImageBufferDataWince.h 29 RefPtr<SharedBitmap> m_bitmap; member in class:WebCore::ImageBufferData
ImageBufferWinCE.cpp 43 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.get())
    [all...]
SharedBitmap.h 118 m_bitmap->releaseDC(m_hdc, m_key);
122 m_bitmap = bmp;
125 SharedBitmap* m_bitmap; member in class:WebCore::SharedBitmap::DCHolder
GraphicsContextWinCE.cpp 266 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.get(), m_rotatedBitmap.get(), -m_rotation)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/haiku/
StillImageHaiku.cpp 38 : 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);
ImageBufferDataHaiku.h 40 BBitmap m_bitmap; member in class:WebCore::ImageBufferData
StillImageHaiku.h 53 BBitmap m_bitmap; member in class:WebCore::StillImage
ImageBufferHaiku.cpp 44 : 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.BytesPerRow()
    [all...]
  /external/webkit/Source/WebKit2/Shared/
WebImage.cpp 48 : m_bitmap(bitmap)
50 ASSERT(m_bitmap);
59 return m_bitmap->size();
WebImage.h 53 ShareableBitmap* bitmap() const { return m_bitmap.get(); }
60 RefPtr<ShareableBitmap> m_bitmap; member in class:WebKit::WebImage
  /development/samples/BrowserPlugin/jni/animation/
AnimationThread.cpp 48 m_bitmap = constructBitmap(0, 0);
49 m_canvas = new SkCanvas(*m_bitmap);
60 delete m_bitmap;
98 if (m_bitmap->width() != width || m_bitmap->height() != height) {
100 delete m_bitmap;
101 m_bitmap = constructBitmap(width, height);
102 m_canvas = new SkCanvas(*m_bitmap);
115 m_bitmap->eraseColor(0x880000FF);
130 updateNativeWindow(m_ANW, *m_bitmap);
    [all...]
AnimationThread.h 60 SkBitmap* m_bitmap; member in class:AnimationThread
  /external/webkit/Source/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/Source/WebCore/platform/graphics/chromium/
PlatformCanvas.cpp 69 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();
PlatformCanvas.h 72 const SkBitmap* m_bitmap; member in class:WebCore::PlatformCanvas::AutoLocker
  /external/webkit/Source/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/Source/WebKit/android/
RenderSkinNinePatch.h 31 SkBitmap m_bitmap; member in struct:NinePatch
RenderSkinNinePatch.cpp 69 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/WebKit2/UIProcess/win/
BackingStoreWin.cpp 66 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/WebCore/platform/graphics/android/layers/
CanvasLayer.cpp 51 , m_bitmap(0)
62 , m_bitmap(0)
80 m_bitmap = layer.bitmap();
81 SkSafeRef(m_bitmap);
86 m_bitmap = layer.bitmap();
87 SkSafeRef(m_bitmap);
113 SkSafeUnref(m_bitmap);
183 return (m_bitmap && !masksToBounds()) || LayerAndroid::needsTexture();
189 if (!m_bitmap || masksToBounds())
191 SkBitmap& bitmap = m_bitmap->bitmap()
    [all...]
CanvasLayer.h 74 SkBitmapRef* m_bitmap; member in class:WebCore::CanvasLayer
  /external/webkit/Source/WebCore/platform/graphics/win/
GraphicsContextWin.cpp 72 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/
ImageDecoder.h 111 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/
BackingStore.h 82 OwnPtr<HBITMAP> m_bitmap; member in class:WebKit::BackingStore

Completed in 398 milliseconds

1 2