HomeSort by relevance Sort by last modified time
    Searched refs:bitmapDC (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/win/
GraphicsContextWin.cpp 115 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/
WebDragClientWin.cpp 69 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/
FullscreenVideoController.cpp 485 HDC bitmapDC = CreateCompatibleDC(windowDC);
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);
WebView.cpp 855 HDC bitmapDC = ::CreateCompatibleDC(windowDC);
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;
954 bitmapDC = ::CreateCompatibleDC(windowDC);
955 ::SelectObject(bitmapDC, m_backingStoreBitmap->handle());
976 paintIntoBackingStore(frameView, bitmapDC, paintRects[i], windowsToPaint)
    [all...]
WebView.h 848 void paintIntoWindow(HDC bitmapDC, HDC windowDC, const WebCore::IntRect& dirtyRect);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 636 HDC bitmapDC = ::CreateCompatibleDC(displayDC);
639 ::SelectObject(bitmapDC, bitmap);
648 return bitmapDC;
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp     [all...]

Completed in 132 milliseconds