Searched refs:hMemDC (Results 1 - 2 of 2) sorted by relevance

/external/openssl/crypto/rand/
H A Drand_win.c742 HDC hMemDC; /* memory DC */ local
758 hMemDC = CreateCompatibleDC(hScrDC);
768 hOldBitmap = SelectObject(hMemDC, hBitmap);
782 BitBlt(hMemDC, 0, 0, w, n, hScrDC, 0, y, SRCCOPY);
798 hBitmap = SelectObject(hMemDC, hOldBitmap);
802 DeleteDC(hMemDC);
/external/pdfium/fpdfsdk/src/
H A Dfpdfview.cpp568 HDC hMemDC = CreateCompatibleDC(dc); local
569 if (hMemDC == NULL) {
579 HGDIOBJ hOldBitmap = SelectObject(hMemDC, pContext->m_hBitmap);
585 BitBlt(dc, rect.left, rect.top, width, height, hMemDC, 0, 0, SRCCOPY);
586 SelectObject(hMemDC, hOldBitmap);
587 DeleteDC(hMemDC);

Completed in 1113 milliseconds