Searched refs:hdcMem (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10.1/tcl-105/tk/tk/win/
H A DtkWinImage.c299 HDC hdc, hdcMem;
324 hdcMem = CreateCompatibleDC(hdc);
325 hbmpPrev = SelectObject(hdcMem, hbmp);
328 hPalPrev1 = SelectPalette(hdcMem, hPal, FALSE);
329 n = RealizePalette(hdcMem);
331 UpdateColors(hdcMem);
340 ret = BitBlt(hdcMem, 0, 0, (int) width, (int) height, hdc, x, y, SRCCOPY);
344 SelectObject(hdcMem, hbmpPrev);
377 GetDIBits(hdcMem, hbmp, 0, height, NULL, bmInfo, DIB_PAL_COLORS);
395 if (GetDIBits(hdcMem, hbm
294 HDC hdc, hdcMem; local
[all...]
/macosx-10.10.1/tcl-105/tk84/tk/win/
H A DtkWinImage.c300 HDC hdc, hdcMem;
322 hdcMem = CreateCompatibleDC(hdc);
323 hbmpPrev = SelectObject(hdcMem, hbmp);
326 hPalPrev1 = SelectPalette(hdcMem, hPal, FALSE);
327 n = RealizePalette(hdcMem);
329 UpdateColors (hdcMem);
338 ret = BitBlt(hdcMem, 0, 0, width, height, hdc, x, y, SRCCOPY);
342 SelectObject(hdcMem, hbmpPrev);
373 GetDIBits(hdcMem, hbmp, 0, height, NULL, bmInfo, DIB_PAL_COLORS);
388 if (GetDIBits(hdcMem, hbm
295 HDC hdc, hdcMem; local
[all...]
/macosx-10.10.1/vim-55/src/
H A Dgui_w32.c4279 HDC hdcMem; local
4282 hdcMem = CreateCompatibleDC(s_hdc);
4283 hbmpOld = (HBITMAP)SelectObject(hdcMem, sign->hImage);
4284 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCCOPY);
4285 SelectObject(hdcMem, hbmpOld);
4286 DeleteDC(hdcMem);
4296 HDC hdcMem; local
4299 hdcMem = CreateCompatibleDC(s_hdc);
4300 hbmpOld = (HBITMAP)SelectObject(hdcMem, sign->hShape);
4302 BitBlt(s_hdc, x, y, w, h, hdcMem,
[all...]
/macosx-10.10.1/apache-793/httpd/support/win32/
H A DApacheMonitor.c945 HDC hdcMem; local
1059 hdcMem = CreateCompatibleDC(lpdis->hDC);
1060 g_hBmpOld = SelectObject(hdcMem, g_hBmpPicture);
1065 hdcMem, 0, 0, SRCCOPY);
1072 SelectObject(hdcMem, g_hBmpOld);
1073 DeleteDC(hdcMem);
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DWebView.cpp1044 auto hdcMem = adoptGDIObject(::CreateCompatibleDC(hdcScreen)); local
1045 HBITMAP hbmOld = static_cast<HBITMAP>(::SelectObject(hdcMem.get(), m_backingStoreBitmap->get()));
1058 ::UpdateLayeredWindow(m_viewWindow, hdcScreen, 0, &windowSize, hdcMem.get(), &layerPos, 0, &blendFunction, ULW_ALPHA);
1060 ::SelectObject(hdcMem.get(), hbmOld);

Completed in 175 milliseconds