Searched refs:hdcSrc (Results 1 - 4 of 4) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dclipbrd.cpp179 HDC hdcSrc = CreateCompatibleDC((HDC) NULL); local
181 ::SelectObject(hdcSrc, (HBITMAP)bitmap->GetHBITMAP());
182 HBITMAP hBitmap = CreateCompatibleBitmap(hdcSrc,
187 SelectObject(hdcSrc, old);
189 DeleteDC(hdcSrc);
195 hdcSrc, 0, 0, SRCCOPY);
204 SelectObject(hdcSrc, old);
205 DeleteDC(hdcSrc);
396 HDC hdcSrc = CreateCompatibleDC((HDC) NULL); local
398 HBITMAP old = (HBITMAP) ::SelectObject(hdcSrc, hBitma
[all...]
H A Ddib.cpp210 MemoryHDC hdcSrc; local
211 if ( !hdcSrc )
214 SelectInHDC selectSrc(hdcSrc, hbmp);
230 hdcSrc,
H A Dbitmap.cpp1776 HDC hdcSrc = ::CreateCompatibleDC(NULL); local
1778 if ( !hdcSrc || !hdcDst )
1789 HGDIOBJ srcTmp = ::SelectObject(hdcSrc, hbmpMask);
1792 hdcSrc, 0, 0,
1799 SelectObject(hdcSrc,srcTmp);
1802 ::DeleteDC(hdcSrc);
H A Ddc.cpp124 // call AlphaBlend() to blit contents of hdcSrc to hdcDst using alpha
126 // NB: bmpSrc is the bitmap selected in hdcSrc, it is not really needed
134 int srcX, int srcY, HDC hdcSrc,
2559 int srcX, int srcY, HDC hdcSrc,
2563 wxASSERT_MSG( hdcDst && hdcSrc, _T("AlphaBlt(): invalid HDC") );
2583 hdcSrc, srcX, srcY, width, height,
2593 wxUnusedVar(hdcSrc);
2557 AlphaBlt(HDC hdcDst, int x, int y, int width, int height, int srcX, int srcY, HDC hdcSrc, const wxBitmap& bmp) argument

Completed in 106 milliseconds