TESTING -- override pthreads to fix gstreamer v5
[wine/multimedia.git] / dlls / ddraw / tests / refcount.c
blobc8c474face0a7fe28b6d40c44ce0e306cc441aee
1 /*
2 * Some unit tests for ddraw reference counting
4 * Copyright (C) 2006 Stefan Dösinger
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #define COBJMACROS
22 #include "wine/test.h"
23 #include "ddraw.h"
24 #include "d3d.h"
25 #include "unknwn.h"
27 static HRESULT (WINAPI *pDirectDrawCreateEx)(GUID *driver_guid,
28 void **ddraw, REFIID interface_iid, IUnknown *outer);
30 static void init_function_pointers(void)
32 HMODULE hmod = GetModuleHandleA("ddraw.dll");
33 pDirectDrawCreateEx = (void*)GetProcAddress(hmod, "DirectDrawCreateEx");
36 static ULONG getRefcount(IUnknown *iface)
38 IUnknown_AddRef(iface);
39 return IUnknown_Release(iface);
42 static void test_ddraw_objects(void)
44 HRESULT hr;
45 ULONG ref;
46 IDirectDraw7 *DDraw7;
47 IDirectDraw4 *DDraw4;
48 IDirectDraw2 *DDraw2;
49 IDirectDraw *DDraw1;
50 IDirectDrawPalette *palette;
51 IDirectDrawSurface7 *surface = NULL;
52 IDirectDrawSurface *surface1;
53 IDirectDrawSurface4 *surface4;
54 PALETTEENTRY Table[256];
55 DDSURFACEDESC2 ddsd;
57 hr = pDirectDrawCreateEx(NULL, (void **) &DDraw7, &IID_IDirectDraw7, NULL);
58 ok(hr == DD_OK || hr==DDERR_NODIRECTDRAWSUPPORT, "DirectDrawCreateEx returned: %x\n", hr);
59 if(!DDraw7)
61 trace("Couldn't create DDraw interface, skipping tests\n");
62 return;
65 hr = IDirectDraw7_QueryInterface(DDraw7, &IID_IDirectDraw4, (void **) &DDraw4);
66 ok(hr == DD_OK, "IDirectDraw7_QueryInterface returned %08x\n", hr);
67 hr = IDirectDraw7_QueryInterface(DDraw7, &IID_IDirectDraw2, (void **) &DDraw2);
68 ok(hr == DD_OK, "IDirectDraw7_QueryInterface returned %08x\n", hr);
69 hr = IDirectDraw7_QueryInterface(DDraw7, &IID_IDirectDraw, (void **) &DDraw1);
70 ok(hr == DD_OK, "IDirectDraw7_QueryInterface returned %08x\n", hr);
72 ref = getRefcount( (IUnknown *) DDraw7);
73 ok(ref == 1, "Got refcount %d, expected 1\n", ref);
75 /* Fails without a cooplevel */
76 hr = IDirectDraw7_CreatePalette(DDraw7, DDPCAPS_ALLOW256 | DDPCAPS_8BIT, Table, &palette, NULL);
77 ok(hr == DDERR_NOCOOPERATIVELEVELSET, "CreatePalette returned %08x\n", hr);
79 /* This check is before the cooplevel check */
80 hr = IDirectDraw7_CreatePalette(DDraw7, DDPCAPS_ALLOW256 | DDPCAPS_8BIT, Table, &palette, (void *) 0xdeadbeef);
81 ok(hr == CLASS_E_NOAGGREGATION, "CreatePalette returned %08x\n", hr);
83 hr = IDirectDraw7_SetCooperativeLevel(DDraw7, 0, DDSCL_NORMAL);
84 ok(hr == DD_OK, "SetCooperativeLevel failed with %08x\n", hr);
86 memset(&ddsd, 0, sizeof(ddsd));
87 ddsd.dwSize = sizeof(ddsd);
88 ddsd.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT | DDSD_PIXELFORMAT;
89 ddsd.dwWidth = 64;
90 ddsd.dwHeight = 64;
91 ddsd.ddsCaps.dwCaps = DDSCAPS_OFFSCREENPLAIN;
92 U4(ddsd).ddpfPixelFormat.dwSize = sizeof(U4(ddsd).ddpfPixelFormat);
93 U4(ddsd).ddpfPixelFormat.dwFlags = DDPF_PALETTEINDEXED8 | DDPF_RGB;
94 U1(U4(ddsd).ddpfPixelFormat).dwRGBBitCount = 8;
96 hr = IDirectDraw7_CreateSurface(DDraw7, &ddsd, &surface, NULL);
97 if (!surface)
99 win_skip("Could not create surface : %08x\n", hr);
100 IDirectDraw7_Release(DDraw7);
101 return;
103 ok(hr == DD_OK, "CreateSurface failed with %08x\n", hr);
105 /* DDraw refcount increased by 1 */
106 ref = getRefcount( (IUnknown *) DDraw7);
107 ok(ref == 2, "Got refcount %d, expected 2\n", ref);
109 /* Surface refcount starts with 1 */
110 ref = getRefcount( (IUnknown *) surface);
111 ok(ref == 1, "Got refcount %d, expected 1\n", ref);
113 hr = IDirectDraw7_CreatePalette(DDraw7, DDPCAPS_ALLOW256 | DDPCAPS_8BIT, Table, &palette, NULL);
114 ok(hr == DD_OK, "CreatePalette returned %08x\n", hr);
116 /* DDraw refcount increased by 1 */
117 ref = getRefcount( (IUnknown *) DDraw7);
118 ok(ref == 3, "Got refcount %d, expected 3\n", ref);
120 /* Palette starts with 1 */
121 ref = getRefcount( (IUnknown *) palette);
122 ok(ref == 1, "Got refcount %d, expected 1\n", ref);
124 /* Test attaching a palette to a surface */
125 hr = IDirectDrawSurface7_SetPalette(surface, palette);
126 ok(hr == DD_OK, "IDirectDrawSurface_SetPalette failed with %08x\n", hr);
128 /* Palette refcount increased, surface stays the same */
129 ref = getRefcount( (IUnknown *) palette);
130 ok(ref == 2, "Got refcount %d, expected 2\n", ref);
131 ref = getRefcount( (IUnknown *) surface);
132 ok(ref == 1, "Got refcount %d, expected 1\n", ref);
134 IDirectDrawSurface7_Release(surface);
135 /* Increased before - decrease now */
136 ref = getRefcount( (IUnknown *) DDraw7);
137 ok(ref == 2, "Got refcount %d, expected 2\n", ref);
139 /* Releasing the surface detaches the palette */
140 ref = getRefcount( (IUnknown *) palette);
141 ok(ref == 1, "Got refcount %d, expected 1\n", ref);
143 IDirectDrawPalette_Release(palette);
145 /* Increased before - decrease now */
146 ref = getRefcount( (IUnknown *) DDraw7);
147 ok(ref == 1, "Got refcount %d, expected 1\n", ref);
149 /* Not all interfaces are AddRefed when a palette is created */
150 hr = IDirectDraw4_CreatePalette(DDraw4, DDPCAPS_ALLOW256 | DDPCAPS_8BIT, Table, &palette, NULL);
151 ok(hr == DD_OK, "CreatePalette returned %08x\n", hr);
152 ref = getRefcount( (IUnknown *) DDraw4);
153 ok(ref == 2, "Got refcount %d, expected 2\n", ref);
154 IDirectDrawPalette_Release(palette);
156 /* No addref here */
157 hr = IDirectDraw2_CreatePalette(DDraw2, DDPCAPS_ALLOW256 | DDPCAPS_8BIT, Table, &palette, NULL);
158 ok(hr == DD_OK, "CreatePalette returned %08x\n", hr);
159 ref = getRefcount( (IUnknown *) DDraw2);
160 ok(ref == 1, "Got refcount %d, expected 1\n", ref);
161 IDirectDrawPalette_Release(palette);
163 /* No addref here */
164 hr = IDirectDraw_CreatePalette(DDraw1, DDPCAPS_ALLOW256 | DDPCAPS_8BIT, Table, &palette, NULL);
165 ok(hr == DD_OK, "CreatePalette returned %08x\n", hr);
166 ref = getRefcount( (IUnknown *) DDraw1);
167 ok(ref == 1, "Got refcount %d, expected 1\n", ref);
168 IDirectDrawPalette_Release(palette);
170 /* Similar for surfaces */
171 hr = IDirectDraw4_CreateSurface(DDraw4, &ddsd, &surface4, NULL);
172 ok(hr == DD_OK, "CreateSurface returned %08x\n", hr);
173 ref = getRefcount( (IUnknown *) DDraw4);
174 ok(ref == 2, "Got refcount %d, expected 2\n", ref);
175 IDirectDrawSurface4_Release(surface4);
177 ddsd.dwSize = sizeof(DDSURFACEDESC);
178 hr = IDirectDraw2_CreateSurface(DDraw2, (DDSURFACEDESC *) &ddsd, &surface1, NULL);
179 ok(hr == DD_OK, "CreateSurface returned %08x\n", hr);
180 ref = getRefcount( (IUnknown *) DDraw2);
181 ok(ref == 1, "Got refcount %d, expected 1\n", ref);
182 IDirectDrawSurface_Release(surface1);
184 hr = IDirectDraw_CreateSurface(DDraw1, (DDSURFACEDESC *) &ddsd, &surface1, NULL);
185 ok(hr == DD_OK, "CreateSurface returned %08x\n", hr);
186 ref = getRefcount( (IUnknown *) DDraw1);
187 ok(ref == 1, "Got refcount %d, expected 1\n", ref);
188 IDirectDrawSurface_Release(surface1);
190 IDirectDraw7_Release(DDraw7);
191 IDirectDraw4_Release(DDraw4);
192 IDirectDraw2_Release(DDraw2);
193 IDirectDraw_Release(DDraw1);
196 static void test_iface_refcnt(void)
198 HRESULT hr;
199 IDirectDraw *DDraw1;
200 IDirectDraw2 *DDraw2;
201 IDirectDraw4 *DDraw4;
202 IDirectDraw7 *DDraw7;
203 IDirect3D7 *D3D7;
204 IDirect3D3 *D3D3;
205 IDirect3D2 *D3D2;
206 IDirect3D *D3D1;
207 long ref;
209 hr = pDirectDrawCreateEx(NULL, (void **) &DDraw7, &IID_IDirectDraw7, NULL);
210 ok(hr == DD_OK || hr==DDERR_NODIRECTDRAWSUPPORT, "DirectDrawCreateEx returned: %x\n", hr);
211 if(!DDraw7)
213 trace("Couldn't create DDraw interface, skipping tests\n");
214 return;
217 ref = getRefcount( (IUnknown *) DDraw7);
218 ok(ref == 1, "Initial IDirectDraw7 reference count is %ld\n", ref);
220 hr = IDirectDraw7_QueryInterface(DDraw7, &IID_IDirectDraw4, (void **) &DDraw4);
221 ok(hr == DD_OK, "IDirectDraw7_QueryInterface returned %08x\n", hr);
222 hr = IDirectDraw7_QueryInterface(DDraw7, &IID_IDirectDraw2, (void **) &DDraw2);
223 ok(hr == DD_OK, "IDirectDraw7_QueryInterf&ace returned %08x\n", hr);
224 hr = IDirectDraw7_QueryInterface(DDraw7, &IID_IDirectDraw, (void **) &DDraw1);
225 ok(hr == DD_OK, "IDirectDraw7_QueryInterface returned %08x\n", hr);
227 /* All interfaces now have refcount 1! */
228 ref = getRefcount( (IUnknown *) DDraw7);
229 ok(ref == 1, "IDirectDraw7 reference count is %ld\n", ref);
230 ref = getRefcount( (IUnknown *) DDraw7);
231 ok(ref == 1, "IDirectDraw7 reference count is %ld\n", ref);
232 ref = getRefcount( (IUnknown *) DDraw4);
233 ok(ref == 1, "IDirectDraw4 reference count is %ld\n", ref);
234 ref = getRefcount( (IUnknown *) DDraw2);
235 ok(ref == 1, "IDirectDraw2 reference count is %ld\n", ref);
236 ref = getRefcount( (IUnknown *) DDraw1);
237 ok(ref == 1, "IDirectDraw reference count is %ld\n", ref);
239 hr = IDirectDraw7_QueryInterface(DDraw7, &IID_IDirect3D7, (void **) &D3D7);
240 ok(hr == DD_OK || hr == E_NOINTERFACE, /* win64 */
241 "IDirectDraw7_QueryInterface returned %08x\n", hr);
242 if (FAILED(hr))
244 IDirectDraw7_Release(DDraw7);
245 IDirectDraw4_Release(DDraw4);
246 IDirectDraw2_Release(DDraw2);
247 IDirectDraw_Release(DDraw1);
248 skip( "no IDirect3D7 support\n" );
249 return;
252 /* Apparently IDirectDrawX and IDirect3DX are linked together */
253 ref = getRefcount( (IUnknown *) D3D7);
254 ok(ref == 2, "IDirect3D7 reference count is %ld\n", ref);
255 ref = getRefcount( (IUnknown *) DDraw7);
256 ok(ref == 2, "IDirectDraw7 reference count is %ld\n", ref);
258 IDirectDraw7_AddRef(DDraw7);
259 ref = getRefcount( (IUnknown *) D3D7);
260 ok(ref == 3, "IDirect3D7 reference count is %ld\n", ref);
261 ref = getRefcount( (IUnknown *) DDraw7);
262 ok(ref == 3, "IDirectDraw7 reference count is %ld\n", ref);
264 IDirect3D7_Release(D3D7);
265 ref = getRefcount( (IUnknown *) D3D7);
266 ok(ref == 2, "IDirect3D7 reference count is %ld\n", ref);
267 ref = getRefcount( (IUnknown *) DDraw7);
268 ok(ref == 2, "IDirectDraw7 reference count is %ld\n", ref);
270 /* Can't get older d3d interfaces. WHY????? */
271 hr = IDirectDraw7_QueryInterface(DDraw7, &IID_IDirect3D3, (void **) &D3D3);
272 todo_wine ok(hr == E_NOINTERFACE, "IDirectDraw7_QueryInterface returned %08x\n", hr);
273 if(hr == DD_OK && D3D3) IDirect3D3_Release(D3D3);
275 hr = IDirectDraw4_QueryInterface(DDraw4, &IID_IDirect3D3, (void **) &D3D3);
276 todo_wine ok(hr == E_NOINTERFACE, "IDirectDraw4_QueryInterface returned %08x\n", hr);
277 if(hr == DD_OK && D3D3) IDirect3D3_Release(D3D3);
279 hr = IDirectDraw7_QueryInterface(DDraw7, &IID_IDirect3D2, (void **) &D3D2);
280 todo_wine ok(hr == E_NOINTERFACE, "IDirectDraw7_QueryInterface returned %08x\n", hr);
281 if(hr == DD_OK && D3D2) IDirect3D2_Release(D3D2);
283 hr = IDirectDraw2_QueryInterface(DDraw2, &IID_IDirect3D2, (void **) &D3D2);
284 todo_wine ok(hr == E_NOINTERFACE, "IDirectDraw2_QueryInterface returned %08x\n", hr);
285 if(hr == DD_OK && D3D2) IDirect3D2_Release(D3D2);
287 hr = IDirectDraw7_QueryInterface(DDraw7, &IID_IDirect3D, (void **) &D3D1);
288 todo_wine ok(hr == E_NOINTERFACE, "IDirectDraw7_QueryInterface returned %08x\n", hr);
289 if(hr == DD_OK && D3D1) IDirect3D_Release(D3D1);
291 hr = IDirectDraw_QueryInterface(DDraw1, &IID_IDirect3D, (void **) &D3D1);
292 todo_wine ok(hr == E_NOINTERFACE, "IDirectDraw_QueryInterface returned %08x\n", hr);
293 if(hr == DD_OK && D3D1) IDirect3D_Release(D3D1);
295 hr = IDirect3D7_QueryInterface(D3D7, &IID_IDirect3D, (void **) &D3D1);
296 todo_wine ok(hr == E_NOINTERFACE, "IDirect3D7_QueryInterface returned %08x\n", hr);
297 if(hr == DD_OK && D3D1) IDirect3D_Release(D3D1);
299 /* Try an AddRef, it only affects the AddRefed interface */
300 IDirectDraw4_AddRef(DDraw4);
301 ref = getRefcount( (IUnknown *) DDraw7);
302 ok(ref == 2, "IDirectDraw7 reference count is %ld\n", ref); /* <-- From the d3d query */
303 ref = getRefcount( (IUnknown *) DDraw4);
304 ok(ref == 2, "IDirectDraw4 reference count is %ld\n", ref); /* <-- The AddRef call */
305 ref = getRefcount( (IUnknown *) DDraw2);
306 ok(ref == 1, "IDirectDraw2 reference count is %ld\n", ref);
307 ref = getRefcount( (IUnknown *) DDraw1);
308 ok(ref == 1, "IDirectDraw reference count is %ld\n", ref);
309 ref = getRefcount( (IUnknown *) D3D7);
310 ok(ref == 2, "IDirect3D7 reference count is %ld\n", ref); /* <-- From the d3d query */
311 IDirectDraw4_Release(DDraw4);
313 /* Make sure that they are one object, not different ones */
314 hr = IDirectDraw4_SetCooperativeLevel(DDraw4, GetDesktopWindow(), DDSCL_EXCLUSIVE | DDSCL_FULLSCREEN);
315 ok(hr == DD_OK, "IDirectDraw4::SetCooperativeLevel returned %08x\n", hr);
316 /* After an window has been set, DDSCL_SETFOCUSWINDOW should return DDERR_HWNDALREADYSET, see the mode test */
317 hr = IDirectDraw7_SetCooperativeLevel(DDraw7, NULL, DDSCL_SETFOCUSWINDOW);
318 ok(hr == DDERR_HWNDALREADYSET, "IDirectDraw7::SetCooperativeLevel returned %08x\n", hr);
320 /* All done, release all interfaces */
321 IDirectDraw7_Release(DDraw7);
322 IDirectDraw4_Release(DDraw4);
323 IDirectDraw2_Release(DDraw2);
324 IDirectDraw_Release(DDraw1);
325 IDirect3D7_Release(D3D7);
328 static void test_d3d_ifaces(void)
330 IDirectDraw *DDraw1;
331 IDirectDraw2 *DDraw2;
332 IDirectDraw4 *DDraw4;
333 IDirect3D *D3D1;
334 IDirect3D2 *D3D2;
335 IDirect3D3 *D3D3;
336 IDirect3D7 *D3D7;
337 HRESULT hr;
338 long ref;
340 hr = DirectDrawCreate(NULL, &DDraw1, NULL);
341 ok(hr == DD_OK || hr==DDERR_NODIRECTDRAWSUPPORT, "DirectDrawCreateEx returned: %x\n", hr);
342 if(!DDraw1)
344 trace("DirectDrawCreate failed with %08x\n", hr);
345 return;
348 hr = IDirectDraw_QueryInterface(DDraw1, &IID_IDirectDraw2, (void **) &DDraw2);
349 ok(hr == DD_OK, "IDirectDraw_QueryInterface returned %08x\n", hr);
350 hr = IDirectDraw_QueryInterface(DDraw1, &IID_IDirectDraw4, (void **) &DDraw4);
351 ok(hr == DD_OK, "IDirectDraw_QueryInterface returned %08x\n", hr);
353 ref = getRefcount( (IUnknown *) DDraw4);
354 ok(ref == 1, "IDirectDraw4 reference count is %ld\n", ref);
355 ref = getRefcount( (IUnknown *) DDraw2);
356 ok(ref == 1, "IDirectDraw2 reference count is %ld\n", ref);
357 ref = getRefcount( (IUnknown *) DDraw1);
358 ok(ref == 1, "IDirectDraw reference count is %ld\n", ref);
360 /* FIXME: This test suggests that IDirect3D, IDirect3D2 and IDirect3D3 are linked
361 * to IDirectDraw. However, they are linked to whatever interface is used to QI the
362 * first IDirect3D? interface. If DDraw1 is replaced with DDraw4 here the tests break */
363 hr = IDirectDraw_QueryInterface(DDraw1, &IID_IDirect3D, (void **) &D3D1);
364 if (hr == E_NOINTERFACE) /* win64 */
366 IDirectDraw4_Release(DDraw4);
367 IDirectDraw2_Release(DDraw2);
368 IDirectDraw_Release(DDraw1);
369 skip( "no IDirect3D support\n" );
370 return;
372 ok(hr == DD_OK, "IDirectDraw_QueryInterface returned %08x\n", hr);
373 ref = getRefcount( (IUnknown *) DDraw4);
374 ok(ref == 1, "IDirectDraw4 reference count is %ld\n", ref);
375 ref = getRefcount( (IUnknown *) DDraw2);
376 ok(ref == 1, "IDirectDraw2 reference count is %ld\n", ref);
377 ref = getRefcount( (IUnknown *) DDraw1);
378 ok(ref == 2, "IDirectDraw reference count is %ld\n", ref);
379 IDirect3D_Release(D3D1);
381 hr = IDirectDraw2_QueryInterface(DDraw2, &IID_IDirect3D2, (void **) &D3D2);
382 ok(hr == DD_OK, "IDirectDraw_QueryInterface returned %08x\n", hr);
383 ref = getRefcount( (IUnknown *) DDraw4);
384 ok(ref == 1, "IDirectDraw4 reference count is %ld\n", ref);
385 ref = getRefcount( (IUnknown *) DDraw2);
386 ok(ref == 1, "IDirectDraw2 reference count is %ld\n", ref);
387 ref = getRefcount( (IUnknown *) DDraw1);
388 ok(ref == 2, "IDirectDraw reference count is %ld\n", ref);
389 IDirect3D2_Release(D3D2);
391 hr = IDirectDraw4_QueryInterface(DDraw4, &IID_IDirect3D3, (void **) &D3D3);
392 ok(hr == DD_OK, "IDirectDraw_QueryInterface returned %08x\n", hr);
393 ref = getRefcount( (IUnknown *) DDraw4);
394 ok(ref == 1, "IDirectDraw4 reference count is %ld\n", ref);
395 ref = getRefcount( (IUnknown *) DDraw2);
396 ok(ref == 1, "IDirectDraw2 reference count is %ld\n", ref);
397 ref = getRefcount( (IUnknown *) DDraw1);
398 ok(ref == 2, "IDirectDraw reference count is %ld\n", ref);
399 IDirect3D3_Release(D3D3);
401 /* Try to AddRef the D3D3 interface that has been released already */
402 IDirect3D3_AddRef(D3D3);
403 ref = getRefcount( (IUnknown *) DDraw1);
404 ok(ref == 2, "IDirectDraw reference count is %ld\n", ref);
405 ref = getRefcount( (IUnknown *) D3D3);
406 ok(ref == 2, "IDirect3D3 reference count is %ld\n", ref);
407 /* The newer interfaces remain untouched */
408 ref = getRefcount( (IUnknown *) DDraw4);
409 ok(ref == 1, "IDirectDraw4 reference count is %ld\n", ref);
410 ref = getRefcount( (IUnknown *) DDraw2);
411 ok(ref == 1, "IDirectDraw2 reference count is %ld\n", ref);
412 IDirect3D3_Release(D3D3);
413 ref = getRefcount( (IUnknown *) DDraw1);
414 ok(ref == 1, "IDirectDraw reference count is %ld\n", ref);
415 ref = getRefcount( (IUnknown *) DDraw1);
416 ok(ref == 1, "IDirectDraw reference count is %ld\n", ref);
418 /* It is possible to query any IDirect3D interfaces from any IDirectDraw interface,
419 * Except IDirect3D7, it can only be returned by IDirectDraw7(which can't return older ifaces)
421 hr = IDirectDraw_QueryInterface(DDraw2, &IID_IDirect3D, (void **) &D3D1);
422 ok(hr == DD_OK, "IDirectDraw2_QueryInterface returned %08x\n", hr);
423 IDirect3D_Release(D3D1);
424 hr = IDirectDraw4_QueryInterface(DDraw4, &IID_IDirect3D, (void **) &D3D1);
425 ok(hr == DD_OK, "IDirectDraw4_QueryInterface returned %08x\n", hr);
426 IDirect3D_Release(D3D1);
428 hr = IDirectDraw_QueryInterface(DDraw1, &IID_IDirect3D2, (void **) &D3D2);
429 ok(hr == DD_OK, "IDirectDraw_QueryInterface returned %08x\n", hr);
430 IDirect3D_Release(D3D2);
431 hr = IDirectDraw4_QueryInterface(DDraw4, &IID_IDirect3D2, (void **) &D3D2);
432 ok(hr == DD_OK, "IDirectDraw4_QueryInterface returned %08x\n", hr);
433 IDirect3D_Release(D3D2);
435 hr = IDirectDraw_QueryInterface(DDraw1, &IID_IDirect3D3, (void **) &D3D3);
436 ok(hr == DD_OK, "IDirectDraw_QueryInterface returned %08x\n", hr);
437 IDirect3D_Release(D3D3);
438 hr = IDirectDraw2_QueryInterface(DDraw2, &IID_IDirect3D3, (void **) &D3D3);
439 ok(hr == DD_OK, "IDirectDraw2_QueryInterface returned %08x\n", hr);
440 IDirect3D_Release(D3D3);
442 /* This does NOT work */
443 hr = IDirectDraw_QueryInterface(DDraw1, &IID_IDirect3D7, (void **) &D3D7);
444 todo_wine ok(hr == E_NOINTERFACE, "IDirectDraw_QueryInterface returned %08x\n", hr);
445 if(D3D7) IDirect3D_Release(D3D7);
446 hr = IDirectDraw2_QueryInterface(DDraw2, &IID_IDirect3D7, (void **) &D3D7);
447 todo_wine ok(hr == E_NOINTERFACE, "IDirectDraw2_QueryInterface returned %08x\n", hr);
448 if(D3D7) IDirect3D_Release(D3D7);
449 hr = IDirectDraw4_QueryInterface(DDraw4, &IID_IDirect3D7, (void **) &D3D7);
450 todo_wine ok(hr == E_NOINTERFACE, "IDirectDraw4_QueryInterface returned %08x\n", hr);
451 if(D3D7) IDirect3D_Release(D3D7);
453 /* Release the interfaces */
454 IDirectDraw4_Release(DDraw4);
455 IDirectDraw2_Release(DDraw2);
456 IDirectDraw_Release(DDraw1);
459 START_TEST(refcount)
461 init_function_pointers();
462 if(!pDirectDrawCreateEx)
464 win_skip("function DirectDrawCreateEx not available\n");
465 return;
467 test_ddraw_objects();
468 test_iface_refcnt();
469 test_d3d_ifaces();