2 * Unit tests for ddraw functions
5 * Part of this test involves changing the screen resolution. But this is
6 * really disrupting if the user is doing something else and is not very nice
7 * to CRT screens. Plus, ideally it needs someone watching it to check that
8 * each mode displays correctly.
9 * So this is only done if the test is being run in interactive mode.
11 * Copyright (C) 2003 Sami Aario
13 * This library is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU Lesser General Public
15 * License as published by the Free Software Foundation; either
16 * version 2.1 of the License, or (at your option) any later version.
18 * This library is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 * Lesser General Public License for more details.
23 * You should have received a copy of the GNU Lesser General Public
24 * License along with this library; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
29 #include "wine/test.h"
32 static LPDIRECTDRAW lpDD = NULL;
33 static LPDIRECTDRAWSURFACE lpDDSPrimary = NULL;
34 static LPDIRECTDRAWSURFACE lpDDSBack = NULL;
38 static int modes_size;
39 static LPDDSURFACEDESC modes;
41 static void createwindow(void)
43 wc.style = CS_HREDRAW | CS_VREDRAW;
44 wc.lpfnWndProc = DefWindowProcA;
47 wc.hInstance = GetModuleHandleA(0);
48 wc.hIcon = LoadIconA(wc.hInstance, IDI_APPLICATION);
49 wc.hCursor = LoadCursorA(NULL, IDC_ARROW);
50 wc.hbrBackground = (HBRUSH) GetStockObject(BLACK_BRUSH);
51 wc.lpszMenuName = NULL;
52 wc.lpszClassName = "TestWindowClass";
53 if(!RegisterClassA(&wc))
56 hwnd = CreateWindowExA(0, "TestWindowClass", "TestWindowClass",
58 GetSystemMetrics(SM_CXSCREEN),
59 GetSystemMetrics(SM_CYSCREEN),
60 NULL, NULL, GetModuleHandleA(0), NULL);
63 ShowWindow(hwnd, SW_HIDE);
69 static BOOL createdirectdraw(void)
73 rc = DirectDrawCreate(NULL, &lpDD, NULL);
74 ok(rc==DD_OK || rc==DDERR_NODIRECTDRAWSUPPORT, "DirectDrawCreateEx returned: %lx\n", rc);
76 trace("DirectDrawCreateEx() failed with an error %lx\n", rc);
83 static void releasedirectdraw(void)
87 IDirectDraw_Release(lpDD);
92 static void adddisplaymode(LPDDSURFACEDESC lpddsd)
95 modes = malloc((modes_size = 2) * sizeof(DDSURFACEDESC));
96 if (modes_cnt == modes_size)
97 modes = realloc(modes, (modes_size *= 2) * sizeof(DDSURFACEDESC));
99 modes[modes_cnt++] = *lpddsd;
102 static void flushdisplaymodes(void)
106 modes_cnt = modes_size = 0;
109 static HRESULT WINAPI enummodescallback(LPDDSURFACEDESC lpddsd, LPVOID lpContext)
111 trace("Width = %li, Height = %li, Refresh Rate = %li\r\n",
112 lpddsd->dwWidth, lpddsd->dwHeight,
113 U2(*lpddsd).dwRefreshRate);
114 adddisplaymode(lpddsd);
119 static void enumdisplaymodes(void)
124 ZeroMemory(&ddsd, sizeof(DDSURFACEDESC));
125 ddsd.dwSize = sizeof(DDSURFACEDESC);
126 ddsd.dwFlags = DDSD_CAPS;
127 ddsd.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE;
129 rc = IDirectDraw_EnumDisplayModes(lpDD,
130 DDEDM_STANDARDVGAMODES, &ddsd, 0, enummodescallback);
131 ok(rc==DD_OK || rc==E_INVALIDARG,"EnumDisplayModes returned: %lx\n",rc);
134 static void setdisplaymode(int i)
138 rc = IDirectDraw_SetCooperativeLevel(lpDD,
139 hwnd, DDSCL_ALLOWMODEX | DDSCL_EXCLUSIVE | DDSCL_FULLSCREEN);
140 ok(rc==DD_OK,"SetCooperativeLevel returned: %lx\n",rc);
141 if (modes[i].dwFlags & DDSD_PIXELFORMAT)
143 if (modes[i].ddpfPixelFormat.dwFlags & DDPF_RGB)
145 rc = IDirectDraw_SetDisplayMode(lpDD,
146 modes[i].dwWidth, modes[i].dwHeight,
147 U1(modes[i].ddpfPixelFormat).dwRGBBitCount);
148 ok(DD_OK==rc || DDERR_UNSUPPORTED==rc,"SetDisplayMode returned: %lx\n",rc);
150 rc = IDirectDraw_RestoreDisplayMode(lpDD);
151 ok(DD_OK==rc,"RestoreDisplayMode returned: %lx\n",rc);
157 static void createsurface(void)
163 ddsd.dwSize = sizeof(ddsd);
164 ddsd.dwFlags = DDSD_CAPS | DDSD_BACKBUFFERCOUNT;
165 ddsd.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE |
168 ddsd.dwBackBufferCount = 1;
169 rc = IDirectDraw_CreateSurface(lpDD, &ddsd, &lpDDSPrimary, NULL );
170 ok(rc==DD_OK,"CreateSurface returned: %lx\n",rc);
171 ddscaps.dwCaps = DDSCAPS_BACKBUFFER;
172 rc = IDirectDrawSurface_GetAttachedSurface(lpDDSPrimary, &ddscaps, &lpDDSBack);
173 ok(rc==DD_OK,"GetAttachedSurface returned: %lx\n",rc);
176 static void destroysurface(void)
178 if( lpDDSPrimary != NULL )
180 IDirectDrawSurface_Release(lpDDSPrimary);
185 static void testsurface(void)
187 const char* testMsg = "ddraw device context test";
191 rc = IDirectDrawSurface_GetDC(lpDDSBack, &hdc);
192 ok(rc==DD_OK, "IDirectDrawSurface_GetDC returned: %lx\n",rc);
193 SetBkColor(hdc, RGB(0, 0, 255));
194 SetTextColor(hdc, RGB(255, 255, 0));
195 TextOut(hdc, 0, 0, testMsg, lstrlen(testMsg));
196 IDirectDrawSurface_ReleaseDC(lpDDSBack, hdc);
197 ok(rc==DD_OK, "IDirectDrawSurface_ReleaseDC returned: %lx\n",rc);
201 rc = IDirectDrawSurface_Flip(lpDDSPrimary, NULL, DDFLIP_WAIT);
202 ok(rc==DD_OK || rc==DDERR_SURFACELOST, "IDirectDrawSurface_BltFast returned: %lx\n",rc);
208 else if (rc == DDERR_SURFACELOST)
210 rc = IDirectDrawSurface_Restore(lpDDSPrimary);
211 ok(rc==DD_OK, "IDirectDrawSurface_Restore returned: %lx\n",rc);
216 static void testdisplaymodes(void)
220 for (i = 0; i < modes_cnt; ++i)
229 static void testcooperativelevels_normal(void)
232 DDSURFACEDESC surfacedesc;
233 IDirectDrawSurface *surface = (IDirectDrawSurface *) 0xdeadbeef;
235 memset(&surfacedesc, 0, sizeof(surfacedesc));
236 surfacedesc.dwSize = sizeof(surfacedesc);
237 surfacedesc.ddpfPixelFormat.dwSize = sizeof(surfacedesc.ddpfPixelFormat);
238 surfacedesc.dwFlags = DDSD_CAPS | DDSD_BACKBUFFERCOUNT;
239 surfacedesc.dwBackBufferCount = 1;
240 surfacedesc.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE | DDSCAPS_COMPLEX | DDSCAPS_FLIP;
242 /* Do some tests with DDSCL_NORMAL mode */
244 rc = IDirectDraw_SetCooperativeLevel(lpDD,
246 ok(rc==DD_OK,"SetCooperativeLevel(DDSCL_NORMAL) returned: %lx\n",rc);
248 /* Try creating a double buffered primary in normal mode */
249 rc = IDirectDraw_CreateSurface(lpDD, &surfacedesc, &surface, NULL);
250 ok(rc == DDERR_NOEXCLUSIVEMODE, "IDirectDraw_CreateSurface returned %08lx\n", rc);
251 ok(surface == NULL, "Returned surface pointer is %p\n", surface);
252 if(surface) IDirectDrawSurface_Release(surface);
254 /* Set the focus window */
255 rc = IDirectDraw_SetCooperativeLevel(lpDD,
256 hwnd, DDSCL_SETFOCUSWINDOW);
257 ok(rc==DD_OK,"SetCooperativeLevel(DDSCL_SETFOCUSWINDOW) returned: %lx\n",rc);
259 /* Set the focus window a second time*/
260 rc = IDirectDraw_SetCooperativeLevel(lpDD,
261 hwnd, DDSCL_SETFOCUSWINDOW);
262 ok(rc==DD_OK,"SetCooperativeLevel(DDSCL_SETFOCUSWINDOW) the second time returned: %lx\n",rc);
264 /* Test DDSCL_SETFOCUSWINDOW with the other flags. They should all fail, except of DDSCL_NOWINDOWCHANGES */
265 rc = IDirectDraw_SetCooperativeLevel(lpDD,
266 hwnd, DDSCL_NORMAL | DDSCL_SETFOCUSWINDOW);
267 ok(rc==DDERR_INVALIDPARAMS,"SetCooperativeLevel(DDSCL_NORMAL | DDSCL_SETFOCUSWINDOW) returned: %lx\n",rc);
269 rc = IDirectDraw_SetCooperativeLevel(lpDD,
270 hwnd, DDSCL_EXCLUSIVE | DDSCL_FULLSCREEN | DDSCL_SETFOCUSWINDOW);
271 ok(rc==DDERR_INVALIDPARAMS,"SetCooperativeLevel(DDSCL_EXCLUSIVE | DDSCL_FULLSCREEN | DDSCL_SETFOCUSWINDOW) returned: %lx\n",rc);
273 /* This one succeeds */
274 rc = IDirectDraw_SetCooperativeLevel(lpDD,
275 hwnd, DDSCL_NOWINDOWCHANGES | DDSCL_SETFOCUSWINDOW);
276 ok(rc==DD_OK,"SetCooperativeLevel(DDSCL_NOWINDOWCHANGES | DDSCL_SETFOCUSWINDOW) returned: %lx\n",rc);
278 rc = IDirectDraw_SetCooperativeLevel(lpDD,
279 hwnd, DDSCL_MULTITHREADED | DDSCL_SETFOCUSWINDOW);
280 ok(rc==DDERR_INVALIDPARAMS,"SetCooperativeLevel(DDSCL_MULTITHREADED | DDSCL_SETFOCUSWINDOW) returned: %lx\n",rc);
282 rc = IDirectDraw_SetCooperativeLevel(lpDD,
283 hwnd, DDSCL_FPUSETUP | DDSCL_SETFOCUSWINDOW);
284 ok(rc==DDERR_INVALIDPARAMS,"SetCooperativeLevel(DDSCL_FPUSETUP | DDSCL_SETFOCUSWINDOW) returned: %lx\n",rc);
286 rc = IDirectDraw_SetCooperativeLevel(lpDD,
287 hwnd, DDSCL_FPUPRESERVE | DDSCL_SETFOCUSWINDOW);
288 ok(rc==DDERR_INVALIDPARAMS,"SetCooperativeLevel(DDSCL_FPUPRESERVE | DDSCL_SETFOCUSWINDOW) returned: %lx\n",rc);
290 rc = IDirectDraw_SetCooperativeLevel(lpDD,
291 hwnd, DDSCL_ALLOWREBOOT | DDSCL_SETFOCUSWINDOW);
292 ok(rc==DDERR_INVALIDPARAMS,"SetCooperativeLevel(DDSCL_ALLOWREBOOT | DDSCL_SETFOCUSWINDOW) returned: %lx\n",rc);
294 rc = IDirectDraw_SetCooperativeLevel(lpDD,
295 hwnd, DDSCL_ALLOWMODEX | DDSCL_SETFOCUSWINDOW);
296 ok(rc==DDERR_INVALIDPARAMS,"SetCooperativeLevel(DDSCL_ALLOWMODEX | DDSCL_SETFOCUSWINDOW) returned: %lx\n",rc);
298 /* Set the device window without any other flags. Should give an error */
299 rc = IDirectDraw_SetCooperativeLevel(lpDD,
300 hwnd, DDSCL_SETDEVICEWINDOW);
301 ok(rc==DDERR_INVALIDPARAMS,"SetCooperativeLevel(DDSCL_SETDEVICEWINDOW) returned: %lx\n",rc);
303 /* Set device window with DDSCL_NORMAL */
304 rc = IDirectDraw_SetCooperativeLevel(lpDD,
305 hwnd, DDSCL_NORMAL | DDSCL_SETDEVICEWINDOW);
306 ok(rc==DD_OK,"SetCooperativeLevel(DDSCL_NORMAL | DDSCL_SETDEVICEWINDOW) returned: %lx\n",rc);
308 /* Also set the focus window. Should give an error */
309 rc = IDirectDraw_SetCooperativeLevel(lpDD,
310 hwnd, DDSCL_ALLOWMODEX | DDSCL_EXCLUSIVE | DDSCL_FULLSCREEN | DDSCL_SETDEVICEWINDOW | DDSCL_SETFOCUSWINDOW);
311 ok(rc==DDERR_INVALIDPARAMS,"SetCooperativeLevel(DDSCL_NORMAL | DDSCL_SETDEVICEWINDOW | DDSCL_SETFOCUSWINDOW) returned: %lx\n",rc);
316 static void testcooperativelevels_exclusive(void)
320 /* Do some tests with DDSCL_EXCLUSIVE | DDSCL_FULLSCREEN mode */
322 /* Try to set exclusive mode only */
323 rc = IDirectDraw_SetCooperativeLevel(lpDD,
324 hwnd, DDSCL_EXCLUSIVE);
325 ok(rc==DDERR_INVALIDPARAMS,"SetCooperativeLevel(DDSCL_EXCLUSIVE) returned: %lx\n",rc);
327 /* Full screen mode only */
328 rc = IDirectDraw_SetCooperativeLevel(lpDD,
329 hwnd, DDSCL_FULLSCREEN);
330 ok(rc==DDERR_INVALIDPARAMS,"SetCooperativeLevel(DDSCL_FULLSCREEN) returned: %lx\n",rc);
332 /* Full screen mode + exclusive mode */
333 rc = IDirectDraw_SetCooperativeLevel(lpDD,
334 hwnd, DDSCL_FULLSCREEN | DDSCL_EXCLUSIVE);
335 ok(rc==DD_OK,"SetCooperativeLevel(DDSCL_EXCLUSIVE | DDSCL_FULLSCREEN) returned: %lx\n",rc);
337 /* Set the focus window. Should fail */
338 rc = IDirectDraw_SetCooperativeLevel(lpDD,
339 hwnd, DDSCL_SETFOCUSWINDOW);
340 ok(rc==DDERR_HWNDALREADYSET,"SetCooperativeLevel(DDSCL_SETFOCUSWINDOW) returned: %lx\n",rc);
346 START_TEST(ddrawmodes)
349 if (!createdirectdraw())
352 if (winetest_interactive)
358 testcooperativelevels_normal();
362 testcooperativelevels_exclusive();