Searched refs:bitmapDC (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/win/
H A DGraphicsContextWin.cpp115 HDC bitmapDC = ::CreateCompatibleDC(m_data->m_hdc);
116 ::SelectObject(bitmapDC, bitmap);
123 SetGraphicsMode(bitmapDC, GM_ADVANCED);
128 ::SetWorldTransform(bitmapDC, &xform);
130 return bitmapDC;
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
H A DWebDragClientWin.cpp69 OwnPtr<HDC> bitmapDC(CreateCompatibleDC(0));
72 GetDIBits(bitmapDC.get(), image, 0, 0, 0, &bitmapInfo, DIB_RGB_COLORS);
79 GetDIBits(bitmapDC.get(), image, 0, bitmapInfo.bmiHeader.biHeight, memoryBuffer->data(), &bitmapInfo, DIB_RGB_COLORS);
/external/webkit/Source/WebKit/win/
H A DFullscreenVideoController.cpp485 HDC bitmapDC = CreateCompatibleDC(windowDC); local
487 HGDIOBJ oldBitmap = SelectObject(bitmapDC, m_bitmap.get());
489 GraphicsContext context(bitmapDC, true);
551 BOOL result = UpdateLayeredWindow(m_hudWindow, 0, &destPoint, &size, bitmapDC, &sourcePoint, 0, &blendFunction, ULW_ALPHA);
555 ::SelectObject(bitmapDC, oldBitmap);
556 ::DeleteDC(bitmapDC);
H A DWebView.cpp855 HDC bitmapDC = ::CreateCompatibleDC(windowDC); local
856 HGDIOBJ oldBitmap = ::SelectObject(bitmapDC, m_backingStoreBitmap->handle());
861 ::ScrollDC(bitmapDC, dx, dy, &scrollRectWin, &clipRectWin, updateRegion, 0);
875 updateBackingStore(frameView, bitmapDC, false);
878 ::SelectObject(bitmapDC, oldBitmap);
879 ::DeleteDC(bitmapDC);
951 HDC bitmapDC = dc; local
954 bitmapDC = ::CreateCompatibleDC(windowDC);
955 ::SelectObject(bitmapDC, m_backingStoreBitmap->handle());
976 paintIntoBackingStore(frameView, bitmapDC, paintRect
1047 HDC bitmapDC = ::CreateCompatibleDC(hdc); local
1080 paintIntoBackingStore(FrameView* frameView, HDC bitmapDC, const IntRect& dirtyRect, WindowsToPaint windowsToPaint) argument
1123 paintIntoWindow(HDC bitmapDC, HDC windowDC, const IntRect& dirtyRect) argument
[all...]
H A DWebView.h848 void paintIntoWindow(HDC bitmapDC, HDC windowDC, const WebCore::IntRect& dirtyRect);
947 void paintIntoBackingStore(WebCore::FrameView*, HDC bitmapDC, const WebCore::IntRect& dirtyRect, WindowsToPaint);
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DGraphicsContextWx.cpp636 HDC bitmapDC = ::CreateCompatibleDC(displayDC); local
639 ::SelectObject(bitmapDC, bitmap);
648 return bitmapDC;
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsContextQt.cpp1315 HDC bitmapDC = ::CreateCompatibleDC(displayDC); local
1318 ::SelectObject(bitmapDC, bitmap);
1330 SetGraphicsMode(bitmapDC, GM_ADVANCED);
1340 ::SetWorldTransform(bitmapDC, &xform);
1343 return bitmapDC;

Completed in 120 milliseconds