mirror of
https://github.com/reactos/wine.git
synced 2025-04-04 17:12:08 +00:00
gdi32/tests: Use virtual screen size instead of primary monitor screen size.
This commit is contained in:
parent
ba6bdf9fd6
commit
b8e1a19a1d
@ -413,8 +413,12 @@ static void test_window_dc_clipping(void)
|
|||||||
RECT rc;
|
RECT rc;
|
||||||
int ret, screen_width, screen_height;
|
int ret, screen_width, screen_height;
|
||||||
|
|
||||||
screen_width = GetSystemMetrics(SM_CXSCREEN);
|
/* Windows versions earlier than Win2k do not support the virtual screen metrics,
|
||||||
screen_height = GetSystemMetrics(SM_CYSCREEN);
|
* so we fall back to the primary screen metrics. */
|
||||||
|
screen_width = GetSystemMetrics(SM_CXVIRTUALSCREEN);
|
||||||
|
if(!screen_width) screen_width = GetSystemMetrics(SM_CXSCREEN);
|
||||||
|
screen_height = GetSystemMetrics(SM_CYVIRTUALSCREEN);
|
||||||
|
if(!screen_height) screen_height = GetSystemMetrics(SM_CYSCREEN);
|
||||||
|
|
||||||
trace("screen resolution %d x %d\n", screen_width, screen_height);
|
trace("screen resolution %d x %d\n", screen_width, screen_height);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user