Home
last modified time | relevance | path

Searched refs:hdcSource (Results 1 – 3 of 3) sorted by relevance

/reactos/sdk/lib/3rdparty/cardlib/
H A Dcardrgndraw.cpp13 void DrawCard(HDC hdc, int x, int y, HDC hdcSource, int width, int height);
143 HDC hdcSource = __hdcCardBitmaps; in DrawCardCorner() local
171 SetPixel(hdc, x+xdir, y , GetPixel(hdcSource, sx+xdir, sy)); in DrawCardCorner()
172 SetPixel(hdc, x, y, GetPixel(hdcSource, sx, sy)); in DrawCardCorner()
173 SetPixel(hdc, x, y+ydir, GetPixel(hdcSource, sx, sy+ydir)); in DrawCardCorner()
H A Dcardrgnmouse.cpp21 void DrawCard(HDC hdc, int x, int y, HDC hdcSource, int width, int height);
/reactos/dll/win32/comctl32/
H A Danimate.c220 static void ANIMATE_TransparentBlt(ANIMATE_INFO const *infoPtr, HDC hdcDest, HDC hdcSource) in ANIMATE_TransparentBlt() argument
231 SetBkColor(hdcSource,infoPtr->transparentColor); in ANIMATE_TransparentBlt()
232 BitBlt(hdcMask,0,0,infoPtr->inbih->biWidth, infoPtr->inbih->biHeight,hdcSource,0,0,SRCCOPY); in ANIMATE_TransparentBlt()
235 SetBkColor(hdcSource, RGB(0,0,0)); in ANIMATE_TransparentBlt()
236 SetTextColor(hdcSource, RGB(255,255,255)); in ANIMATE_TransparentBlt()
237 … BitBlt(hdcSource, 0, 0, infoPtr->inbih->biWidth, infoPtr->inbih->biHeight, hdcMask, 0, 0, SRCAND); in ANIMATE_TransparentBlt()
245 BitBlt(hdcDest,0,0,infoPtr->inbih->biWidth, infoPtr->inbih->biHeight,hdcSource,0,0,SRCPAINT); in ANIMATE_TransparentBlt()