/src/sys/arch/hpc/stand/hpcboot/ |
framebuffer.cpp | 50 HDC hdc = GetDC(0); local in function:FrameBufferInfo::FrameBufferInfo 51 int bpp = GetDeviceCaps(hdc, BITSPIXEL); 52 ReleaseDC(0, hdc); 81 hdc = GetDC(0); 83 _default.width = GetDeviceCaps(hdc, HORZRES); 84 _default.height = GetDeviceCaps(hdc, VERTRES); 85 ReleaseDC(0, hdc);
|
hpcmenu.h | 61 HDC hdc = GetDC(0); local in function:HpcBootApp::_get_font_size 63 SelectObject(hdc, GetStockObject(SYSTEM_FONT)); 64 GetTextMetrics(hdc, &tm); 67 ReleaseDC(0, hdc);
|
/src/sys/arch/hpcmips/stand/pbsdboot/ |
palette.c | 70 HDC hdc; local in function:palette_init 76 hdc = BeginPaint(hWnd, &ps); 77 if (GetDeviceCaps(hdc, TECHNOLOGY) == DT_RASDISPLAY && 78 (GetDeviceCaps(hdc, RASTERCAPS) & RC_PALETTE) && 79 GetDeviceCaps(hdc, COLORRES) == 8) { 80 ASSERT(GetDeviceCaps(hdc, BITSPIXEL) == 8); 81 ASSERT(GetDeviceCaps(hdc, PLANES) == 1); 130 HDC hdc; local in function:palette_set 163 HDC hdc; local in function:palette_check [all...] |
main.c | 433 HDC hdc; local in function:WinMain 505 hdc = GetDC(0); 506 width = GetDeviceCaps(hdc,HORZRES); 507 height = GetDeviceCaps(hdc,VERTRES); 508 ReleaseDC(0,hdc); 1274 HDC hdc; local in function:MainDlgProc 1277 hdc = BeginPaint(hWnd, &ps);
|
/src/sys/arch/hpc/stand/hpcboot/menu/ |
rootwindow.cpp | 229 HDC hdc = GetDC(0); local in function:RootWindow::WMCreate 230 if (GetDeviceCaps(hdc, HORZRES) > 320) 232 ReleaseDC(0, hdc);
|
menu.cpp | 213 HDC hdc = GetDC(0); local in function:MainTabWindow::layout 214 int width = GetDeviceCaps(hdc, HORZRES); 215 int height = GetDeviceCaps(hdc, VERTRES); 216 int dpix = GetDeviceCaps(hdc, LOGPIXELSX); 217 int dpiy = GetDeviceCaps(hdc, LOGPIXELSY); 218 ReleaseDC(0, hdc); 322 HDC hdc = GetDC(0); local in function:OptionTabWindow::init 323 int dpix = GetDeviceCaps(hdc, LOGPIXELSX) 455 HDC hdc = GetDC(0); local in function:ConsoleTabWindow::init [all...] |