Searched defs:client_rect (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dswapchain.c901 RECT client_rect; local
992 GetClientRect(window, &client_rect);
994 client_rect.left = 0;
995 client_rect.top = 0;
996 client_rect.right = present_parameters->BackBufferWidth;
997 client_rect.bottom = present_parameters->BackBufferHeight;
1006 present_parameters->BackBufferWidth = client_rect.right;
1012 present_parameters->BackBufferHeight = client_rect.bottom;
1026 && (present_parameters->BackBufferWidth != client_rect.right
1027 || present_parameters->BackBufferHeight != client_rect
[all...]
H A Ddevice.c6942 RECT client_rect; local
6943 GetClientRect(swapchain->win_handle, &client_rect);
6952 else if(swapchain->presentParms.BackBufferWidth != client_rect.right ||
6953 swapchain->presentParms.BackBufferHeight != client_rect.bottom )
6958 client_rect.right, client_rect.bottom);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dswapchain.c975 RECT client_rect; local
987 GetClientRect(swapchain->win_handle, &client_rect);
992 client_rect.right, client_rect.bottom);
998 && swapchain->desc.backbuffer_width == client_rect.right
999 && swapchain->desc.backbuffer_height == client_rect.bottom)
1019 RECT client_rect; local
1104 GetClientRect(window, &client_rect);
1112 desc->backbuffer_width = client_rect.right;
1118 desc->backbuffer_height = client_rect
[all...]
H A Ddevice.c5142 RECT client_rect; local
5147 if (!GetClientRect(swapchain->device_window, &client_rect))
5154 backbuffer_width = client_rect.right;
5157 backbuffer_height = client_rect.bottom;

Completed in 324 milliseconds