Home | History | Annotate | Download | only in win

Lines Matching defs:bitmapDC

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);
985 ::DeleteDC(bitmapDC);
1047 HDC bitmapDC = ::CreateCompatibleDC(hdc);
1048 HGDIOBJ oldBitmap = ::SelectObject(bitmapDC, m_backingStoreBitmap->handle());
1051 updateBackingStore(frameView, bitmapDC, backingStoreCompletelyDirty, windowsToPaint);
1064 paintIntoWindow(bitmapDC, hdc, blitRects[i]);
1066 ::SelectObject(bitmapDC, oldBitmap);
1067 ::DeleteDC(bitmapDC);
1080 void WebView::paintIntoBackingStore(FrameView* frameView, HDC bitmapDC, const IntRect& dirtyRect, WindowsToPaint windowsToPaint)
1100 paintIntoWindow(bitmapDC, dc, dirtyRect);
1104 GraphicsContext gc(bitmapDC, m_transparent);
1110 FillRect(bitmapDC, &rect, (HBRUSH)GetStockObject(WHITE_BRUSH));
1114 uiPrivate->drawBackground(this, reinterpret_cast<OLE_HANDLE>(bitmapDC), &rect);
1123 void WebView::paintIntoWindow(HDC bitmapDC, HDC windowDC, const IntRect& dirtyRect)
1140 BitBlt(windowDC, dirtyRect.x(), dirtyRect.y(), dirtyRect.width(), dirtyRect.height(), bitmapDC,