Lines Matching refs:Rect
287 RECT Rect; in WinNtGopSetMode() local
364 Rect.left = 0; in WinNtGopSetMode()
365 Rect.top = 0; in WinNtGopSetMode()
366 Rect.right = ModeData->HorizontalResolution; in WinNtGopSetMode()
367 Rect.bottom = ModeData->VerticalResolution; in WinNtGopSetMode()
369 Private->WinNtThunk->AdjustWindowRect (&Rect, WS_OVERLAPPEDWINDOW, 0); in WinNtGopSetMode()
371 Width = Rect.right - Rect.left; in WinNtGopSetMode()
372 Height = Rect.bottom - Rect.top; in WinNtGopSetMode()
377 Private->WinNtThunk->GetWindowRect (Private->WindowHandle, &Rect); in WinNtGopSetMode()
382 …Private->WinNtThunk->MoveWindow (Private->WindowHandle, Rect.left, Rect.top, (INT32)Width, (INT32)… in WinNtGopSetMode()
473 RECT Rect; in WinNtGopBlt() local
585 Rect.left = (LONG)DestinationX; in WinNtGopBlt()
586 Rect.top = (LONG)DestinationY; in WinNtGopBlt()
587 Rect.right = (LONG)(DestinationX + Width); in WinNtGopBlt()
588 Rect.bottom = (LONG)(DestinationY + Height); in WinNtGopBlt()
589 Private->WinNtThunk->InvalidateRect (Private->WindowHandle, &Rect, FALSE); in WinNtGopBlt()
881 RECT Rect; in WinNtGopThreadWinMain() local
922 Rect.top = 0; in WinNtGopThreadWinMain()
923 Rect.bottom = Private->GraphicsOutput.Mode->Info->VerticalResolution; in WinNtGopThreadWinMain()
924 Rect.left = 0; in WinNtGopThreadWinMain()
925 Rect.right = Private->GraphicsOutput.Mode->Info->HorizontalResolution; in WinNtGopThreadWinMain()
927 Private->WinNtThunk->AdjustWindowRect (&Rect, WS_OVERLAPPEDWINDOW, 0); in WinNtGopThreadWinMain()
936 Rect.right - Rect.left, in WinNtGopThreadWinMain()
937 Rect.bottom - Rect.top, in WinNtGopThreadWinMain()