Home
last modified time | relevance | path

Searched refs:BackgroundDc (Results 1 – 7 of 7) sorted by relevance

/reactos/modules/rosapps/applications/sysutils/utils/rosperf/
H A Dalphablend.c34 ctx->BitmapDc = CreateCompatibleDC(PerfInfo->BackgroundDc); in AlphaBlendInit()
35 …ctx->Bitmap = CreateCompatibleBitmap(PerfInfo->BackgroundDc, PerfInfo->WndWidth, PerfInfo->WndHeig… in AlphaBlendInit()
77 PatBlt(PerfInfo->BackgroundDc, 0, 0, PerfInfo->WndWidth, PerfInfo->WndHeight, PATCOPY); in AlphaBlendProc()
79 if (!AlphaBlend(PerfInfo->BackgroundDc, 0, 0, PerfInfo->WndWidth, PerfInfo->WndHeight, in AlphaBlendProc()
H A Dlines.c31 Dc = (Rep & 0x1000) ? PerfInfo->BackgroundDc : PerfInfo->ForegroundDc; in LinesProc()
68 Dc = (Rep & 0x10000) ? PerfInfo->BackgroundDc : PerfInfo->ForegroundDc; in LinesHorizontalProc()
87 Dc = (Rep & 0x1000) ? PerfInfo->BackgroundDc : PerfInfo->ForegroundDc; in LinesVerticalProc()
H A Dfill.c29 PatBlt((Rep & 0x100) ? PerfInfo->BackgroundDc : PerfInfo->ForegroundDc, 0, 0, in FillProc()
46 PatBlt((Rep & 0x10000) ? PerfInfo->BackgroundDc : PerfInfo->ForegroundDc, x, y, in FillSmallProc()
H A Dtext.c32 Dc = (Rep & 0x10000) ? PerfInfo->BackgroundDc : PerfInfo->ForegroundDc; in TextProc()
H A Dscroll.c37 ScrollDC((Rep & 0x100) ? PerfInfo->BackgroundDc : PerfInfo->ForegroundDc, in ScrollProc()
H A Drosperf.c893 PerfInfo.BackgroundDc = GetDC(PerfInfo.Wnd); in wWinMain()
894 if (NULL == PerfInfo.ForegroundDc || NULL == PerfInfo.BackgroundDc) in wWinMain()
902 SelectObject(PerfInfo.BackgroundDc, CreateSolidBrush(PerfInfo.BackgroundColor)); in wWinMain()
903 SelectObject(PerfInfo.BackgroundDc, CreatePen(PS_SOLID, 0, PerfInfo.BackgroundColor)); in wWinMain()
H A Drosperf.h30 HDC BackgroundDc; member