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

/macosx-10.9.5/tcl-102/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.9.5/tcl-102/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.9.5/vim-53/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.9.5/apache-786.1/httpd/support/win32/
H A DApacheMonitor.c1216 HDC hdcMem; local
1335 hdcMem = CreateCompatibleDC(lpdis->hDC);
1336 g_hBmpOld = SelectObject(hdcMem, g_hBmpPicture);
1341 hdcMem, 0, 0, SRCCOPY);
1348 SelectObject(hdcMem, g_hBmpOld);
1349 DeleteDC(hdcMem);
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebView.cpp1040 OwnPtr<HDC> hdcMem = adoptPtr(::CreateCompatibleDC(hdcScreen)); local
1041 HBITMAP hbmOld = static_cast<HBITMAP>(::SelectObject(hdcMem.get(), m_backingStoreBitmap->handle()));
1054 ::UpdateLayeredWindow(m_viewWindow, hdcScreen, 0, &windowSize, hdcMem.get(), &layerPos, 0, &blendFunction, ULW_ALPHA);
1056 ::SelectObject(hdcMem.get(), hbmOld);

Completed in 121 milliseconds