odbccp32: Fix SQLInstallDriverManager{,W}.
[wine] / dlls / ddraw / ddraw.c
1 /*
2  * Copyright 1997-2000 Marcus Meissner
3  * Copyright 1998-2000 Lionel Ulmer
4  * Copyright 2000-2001 TransGaming Technologies Inc.
5  * Copyright 2006 Stefan Dösinger
6  * Copyright 2008 Denver Gingerich
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21  */
22
23 #include "config.h"
24 #include "wine/port.h"
25
26 #include "ddraw_private.h"
27
28 WINE_DEFAULT_DEBUG_CHANNEL(ddraw);
29
30 /* Device identifier. Don't relay it to WineD3D */
31 static const DDDEVICEIDENTIFIER2 deviceidentifier =
32 {
33     "display",
34     "DirectDraw HAL",
35     { { 0x00010001, 0x00010001 } },
36     0, 0, 0, 0,
37     /* a8373c10-7ac4-4deb-849a-009844d08b2d */
38     {0xa8373c10,0x7ac4,0x4deb, {0x84,0x9a,0x00,0x98,0x44,0xd0,0x8b,0x2d}},
39     0
40 };
41
42 static void STDMETHODCALLTYPE ddraw_null_wined3d_object_destroyed(void *parent) {}
43
44 const struct wined3d_parent_ops ddraw_null_wined3d_parent_ops =
45 {
46     ddraw_null_wined3d_object_destroyed,
47 };
48
49 static inline IDirectDrawImpl *ddraw_from_ddraw1(IDirectDraw *iface)
50 {
51     return (IDirectDrawImpl *)((char*)iface - FIELD_OFFSET(IDirectDrawImpl, IDirectDraw_vtbl));
52 }
53
54 static inline IDirectDrawImpl *ddraw_from_ddraw2(IDirectDraw2 *iface)
55 {
56     return (IDirectDrawImpl *)((char*)iface - FIELD_OFFSET(IDirectDrawImpl, IDirectDraw2_vtbl));
57 }
58
59 static inline IDirectDrawImpl *ddraw_from_ddraw3(IDirectDraw3 *iface)
60 {
61     return (IDirectDrawImpl *)((char*)iface - FIELD_OFFSET(IDirectDrawImpl, IDirectDraw3_vtbl));
62 }
63
64 static inline IDirectDrawImpl *ddraw_from_ddraw4(IDirectDraw4 *iface)
65 {
66     return (IDirectDrawImpl *)((char*)iface - FIELD_OFFSET(IDirectDrawImpl, IDirectDraw4_vtbl));
67 }
68
69 /*****************************************************************************
70  * IUnknown Methods
71  *****************************************************************************/
72
73 /*****************************************************************************
74  * IDirectDraw7::QueryInterface
75  *
76  * Queries different interfaces of the DirectDraw object. It can return
77  * IDirectDraw interfaces in version 1, 2, 4 and 7, and IDirect3D interfaces
78  * in version 1, 2, 3 and 7. An IDirect3DDevice can be created with this
79  * method.
80  * The returned interface is AddRef()-ed before it's returned
81  *
82  * Used for version 1, 2, 4 and 7
83  *
84  * Params:
85  *  refiid: Interface ID asked for
86  *  obj: Used to return the interface pointer
87  *
88  * Returns:
89  *  S_OK if an interface was found
90  *  E_NOINTERFACE if the requested interface wasn't found
91  *
92  *****************************************************************************/
93 static HRESULT WINAPI ddraw7_QueryInterface(IDirectDraw7 *iface, REFIID refiid, void **obj)
94 {
95     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
96
97     TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(refiid), obj);
98
99     /* Can change surface impl type */
100     EnterCriticalSection(&ddraw_cs);
101
102     /* According to COM docs, if the QueryInterface fails, obj should be set to NULL */
103     *obj = NULL;
104
105     if(!refiid)
106     {
107         LeaveCriticalSection(&ddraw_cs);
108         return DDERR_INVALIDPARAMS;
109     }
110
111     /* Check DirectDraw Interfaces */
112     if ( IsEqualGUID( &IID_IUnknown, refiid ) ||
113          IsEqualGUID( &IID_IDirectDraw7, refiid ) )
114     {
115         *obj = This;
116         TRACE("(%p) Returning IDirectDraw7 interface at %p\n", This, *obj);
117     }
118     else if ( IsEqualGUID( &IID_IDirectDraw4, refiid ) )
119     {
120         *obj = &This->IDirectDraw4_vtbl;
121         TRACE("(%p) Returning IDirectDraw4 interface at %p\n", This, *obj);
122     }
123     else if ( IsEqualGUID( &IID_IDirectDraw3, refiid ) )
124     {
125         /* This Interface exists in ddrawex.dll, it is implemented in a wrapper */
126         WARN("IDirectDraw3 is not valid in ddraw.dll\n");
127         *obj = NULL;
128         LeaveCriticalSection(&ddraw_cs);
129         return E_NOINTERFACE;
130     }
131     else if ( IsEqualGUID( &IID_IDirectDraw2, refiid ) )
132     {
133         *obj = &This->IDirectDraw2_vtbl;
134         TRACE("(%p) Returning IDirectDraw2 interface at %p\n", This, *obj);
135     }
136     else if ( IsEqualGUID( &IID_IDirectDraw, refiid ) )
137     {
138         *obj = &This->IDirectDraw_vtbl;
139         TRACE("(%p) Returning IDirectDraw interface at %p\n", This, *obj);
140     }
141
142     /* Direct3D
143      * The refcount unit test revealed that an IDirect3D7 interface can only be queried
144      * from a DirectDraw object that was created as an IDirectDraw7 interface. No idea
145      * who had this idea and why. The older interfaces can query and IDirect3D version
146      * because they are all created as IDirectDraw(1). This isn't really crucial behavior,
147      * and messy to implement with the common creation function, so it has been left out here.
148      */
149     else if ( IsEqualGUID( &IID_IDirect3D  , refiid ) ||
150               IsEqualGUID( &IID_IDirect3D2 , refiid ) ||
151               IsEqualGUID( &IID_IDirect3D3 , refiid ) ||
152               IsEqualGUID( &IID_IDirect3D7 , refiid ) )
153     {
154         /* Check the surface implementation */
155         if(This->ImplType == SURFACE_UNKNOWN)
156         {
157             /* Apps may create the IDirect3D Interface before the primary surface.
158              * set the surface implementation */
159             This->ImplType = SURFACE_OPENGL;
160             TRACE("(%p) Choosing OpenGL surfaces because a Direct3D interface was requested\n", This);
161         }
162         else if(This->ImplType != SURFACE_OPENGL && DefaultSurfaceType == SURFACE_UNKNOWN)
163         {
164             ERR("(%p) The App is requesting a D3D device, but a non-OpenGL surface type was choosen. Prepare for trouble!\n", This);
165             ERR(" (%p) You may want to contact wine-devel for help\n", This);
166             /* Should I assert(0) here??? */
167         }
168         else if(This->ImplType != SURFACE_OPENGL)
169         {
170             WARN("The app requests a Direct3D interface, but non-opengl surfaces where set in winecfg\n");
171             /* Do not abort here, only reject 3D Device creation */
172         }
173
174         if ( IsEqualGUID( &IID_IDirect3D  , refiid ) )
175         {
176             This->d3dversion = 1;
177             *obj = &This->IDirect3D_vtbl;
178             TRACE(" returning Direct3D interface at %p.\n", *obj);
179         }
180         else if ( IsEqualGUID( &IID_IDirect3D2  , refiid ) )
181         {
182             This->d3dversion = 2;
183             *obj = &This->IDirect3D2_vtbl;
184             TRACE(" returning Direct3D2 interface at %p.\n", *obj);
185         }
186         else if ( IsEqualGUID( &IID_IDirect3D3  , refiid ) )
187         {
188             This->d3dversion = 3;
189             *obj = &This->IDirect3D3_vtbl;
190             TRACE(" returning Direct3D3 interface at %p.\n", *obj);
191         }
192         else if(IsEqualGUID( &IID_IDirect3D7  , refiid ))
193         {
194             This->d3dversion = 7;
195             *obj = &This->IDirect3D7_vtbl;
196             TRACE(" returning Direct3D7 interface at %p.\n", *obj);
197         }
198     }
199     else if (IsEqualGUID(refiid, &IID_IWineD3DDeviceParent))
200     {
201         *obj = &This->device_parent_vtbl;
202     }
203
204     /* Unknown interface */
205     else
206     {
207         ERR("(%p)->(%s, %p): No interface found\n", This, debugstr_guid(refiid), obj);
208         LeaveCriticalSection(&ddraw_cs);
209         return E_NOINTERFACE;
210     }
211
212     IUnknown_AddRef( (IUnknown *) *obj );
213     LeaveCriticalSection(&ddraw_cs);
214     return S_OK;
215 }
216
217 static HRESULT WINAPI ddraw4_QueryInterface(IDirectDraw4 *iface, REFIID riid, void **object)
218 {
219     TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
220
221     return ddraw7_QueryInterface((IDirectDraw7 *)ddraw_from_ddraw4(iface), riid, object);
222 }
223
224 static HRESULT WINAPI ddraw3_QueryInterface(IDirectDraw3 *iface, REFIID riid, void **object)
225 {
226     TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
227
228     return ddraw7_QueryInterface((IDirectDraw7 *)ddraw_from_ddraw3(iface), riid, object);
229 }
230
231 static HRESULT WINAPI ddraw2_QueryInterface(IDirectDraw2 *iface, REFIID riid, void **object)
232 {
233     TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
234
235     return ddraw7_QueryInterface((IDirectDraw7 *)ddraw_from_ddraw2(iface), riid, object);
236 }
237
238 static HRESULT WINAPI ddraw1_QueryInterface(IDirectDraw *iface, REFIID riid, void **object)
239 {
240     TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
241
242     return ddraw7_QueryInterface((IDirectDraw7 *)ddraw_from_ddraw1(iface), riid, object);
243 }
244
245 static HRESULT WINAPI d3d7_QueryInterface(IDirect3D7 *iface, REFIID riid, void **object)
246 {
247     TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
248
249     return ddraw7_QueryInterface((IDirectDraw7 *)ddraw_from_d3d7(iface), riid, object);
250 }
251
252 static HRESULT WINAPI d3d3_QueryInterface(IDirect3D3 *iface, REFIID riid, void **object)
253 {
254     TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
255
256     return ddraw7_QueryInterface((IDirectDraw7 *)ddraw_from_d3d3(iface), riid, object);
257 }
258
259 static HRESULT WINAPI d3d2_QueryInterface(IDirect3D2 *iface, REFIID riid, void **object)
260 {
261     TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
262
263     return ddraw7_QueryInterface((IDirectDraw7 *)ddraw_from_d3d2(iface), riid, object);
264 }
265
266 static HRESULT WINAPI d3d1_QueryInterface(IDirect3D *iface, REFIID riid, void **object)
267 {
268     TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
269
270     return ddraw7_QueryInterface((IDirectDraw7 *)ddraw_from_d3d1(iface), riid, object);
271 }
272
273 /*****************************************************************************
274  * IDirectDraw7::AddRef
275  *
276  * Increases the interfaces refcount, basically
277  *
278  * DDraw refcounting is a bit tricky. The different DirectDraw interface
279  * versions have individual refcounts, but the IDirect3D interfaces do not.
280  * All interfaces are from one object, that means calling QueryInterface on an
281  * IDirectDraw7 interface for an IDirectDraw4 interface does not create a new
282  * IDirectDrawImpl object.
283  *
284  * That means all AddRef and Release implementations of IDirectDrawX work
285  * with their own counter, and IDirect3DX::AddRef thunk to IDirectDraw (1),
286  * except of IDirect3D7 which thunks to IDirectDraw7
287  *
288  * Returns: The new refcount
289  *
290  *****************************************************************************/
291 static ULONG WINAPI ddraw7_AddRef(IDirectDraw7 *iface)
292 {
293     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
294     ULONG ref = InterlockedIncrement(&This->ref7);
295
296     TRACE("%p increasing refcount to %u.\n", This, ref);
297
298     if(ref == 1) InterlockedIncrement(&This->numIfaces);
299
300     return ref;
301 }
302
303 static ULONG WINAPI ddraw4_AddRef(IDirectDraw4 *iface)
304 {
305     IDirectDrawImpl *ddraw = ddraw_from_ddraw4(iface);
306     ULONG ref = InterlockedIncrement(&ddraw->ref4);
307
308     TRACE("%p increasing refcount to %u.\n", ddraw, ref);
309
310     if (ref == 1) InterlockedIncrement(&ddraw->numIfaces);
311
312     return ref;
313 }
314
315 static ULONG WINAPI ddraw3_AddRef(IDirectDraw3 *iface)
316 {
317     IDirectDrawImpl *ddraw = ddraw_from_ddraw3(iface);
318     ULONG ref = InterlockedIncrement(&ddraw->ref3);
319
320     TRACE("%p increasing refcount to %u.\n", ddraw, ref);
321
322     if (ref == 1) InterlockedIncrement(&ddraw->numIfaces);
323
324     return ref;
325 }
326
327 static ULONG WINAPI ddraw2_AddRef(IDirectDraw2 *iface)
328 {
329     IDirectDrawImpl *ddraw = ddraw_from_ddraw2(iface);
330     ULONG ref = InterlockedIncrement(&ddraw->ref2);
331
332     TRACE("%p increasing refcount to %u.\n", ddraw, ref);
333
334     if (ref == 1) InterlockedIncrement(&ddraw->numIfaces);
335
336     return ref;
337 }
338
339 static ULONG WINAPI ddraw1_AddRef(IDirectDraw *iface)
340 {
341     IDirectDrawImpl *ddraw = ddraw_from_ddraw1(iface);
342     ULONG ref = InterlockedIncrement(&ddraw->ref1);
343
344     TRACE("%p increasing refcount to %u.\n", ddraw, ref);
345
346     if (ref == 1) InterlockedIncrement(&ddraw->numIfaces);
347
348     return ref;
349 }
350
351 static ULONG WINAPI d3d7_AddRef(IDirect3D7 *iface)
352 {
353     TRACE("iface %p.\n", iface);
354
355     return ddraw7_AddRef((IDirectDraw7 *)ddraw_from_d3d7(iface));
356 }
357
358 static ULONG WINAPI d3d3_AddRef(IDirect3D3 *iface)
359 {
360     TRACE("iface %p.\n", iface);
361
362     return ddraw1_AddRef((IDirectDraw *)&ddraw_from_d3d3(iface)->IDirectDraw_vtbl);
363 }
364
365 static ULONG WINAPI d3d2_AddRef(IDirect3D2 *iface)
366 {
367     TRACE("iface %p.\n", iface);
368
369     return ddraw1_AddRef((IDirectDraw *)&ddraw_from_d3d2(iface)->IDirectDraw_vtbl);
370 }
371
372 static ULONG WINAPI d3d1_AddRef(IDirect3D *iface)
373 {
374     TRACE("iface %p.\n", iface);
375
376     return ddraw1_AddRef((IDirectDraw *)&ddraw_from_d3d1(iface)->IDirectDraw_vtbl);
377 }
378
379 /*****************************************************************************
380  * ddraw_destroy
381  *
382  * Destroys a ddraw object if all refcounts are 0. This is to share code
383  * between the IDirectDrawX::Release functions
384  *
385  * Params:
386  *  This: DirectDraw object to destroy
387  *
388  *****************************************************************************/
389 static void ddraw_destroy(IDirectDrawImpl *This)
390 {
391     IDirectDraw7_SetCooperativeLevel((IDirectDraw7 *)This, NULL, DDSCL_NORMAL);
392     IDirectDraw7_RestoreDisplayMode((IDirectDraw7 *)This);
393
394     /* Destroy the device window if we created one */
395     if(This->devicewindow != 0)
396     {
397         TRACE(" (%p) Destroying the device window %p\n", This, This->devicewindow);
398         DestroyWindow(This->devicewindow);
399         This->devicewindow = 0;
400     }
401
402     EnterCriticalSection(&ddraw_cs);
403     list_remove(&This->ddraw_list_entry);
404     LeaveCriticalSection(&ddraw_cs);
405
406     /* Release the attached WineD3D stuff */
407     IWineD3DDevice_Release(This->wineD3DDevice);
408     IWineD3D_Release(This->wineD3D);
409
410     /* Now free the object */
411     HeapFree(GetProcessHeap(), 0, This);
412 }
413
414 /*****************************************************************************
415  * IDirectDraw7::Release
416  *
417  * Decreases the refcount. If the refcount falls to 0, the object is destroyed
418  *
419  * Returns: The new refcount
420  *****************************************************************************/
421 static ULONG WINAPI ddraw7_Release(IDirectDraw7 *iface)
422 {
423     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
424     ULONG ref = InterlockedDecrement(&This->ref7);
425
426     TRACE("%p decreasing refcount to %u.\n", This, ref);
427
428     if (!ref && !InterlockedDecrement(&This->numIfaces))
429         ddraw_destroy(This);
430
431     return ref;
432 }
433
434 static ULONG WINAPI ddraw4_Release(IDirectDraw4 *iface)
435 {
436     IDirectDrawImpl *ddraw = ddraw_from_ddraw4(iface);
437     ULONG ref = InterlockedDecrement(&ddraw->ref4);
438
439     TRACE("%p decreasing refcount to %u.\n", ddraw, ref);
440
441     if (!ref && !InterlockedDecrement(&ddraw->numIfaces))
442         ddraw_destroy(ddraw);
443
444     return ref;
445 }
446
447 static ULONG WINAPI ddraw3_Release(IDirectDraw3 *iface)
448 {
449     IDirectDrawImpl *ddraw = ddraw_from_ddraw3(iface);
450     ULONG ref = InterlockedDecrement(&ddraw->ref3);
451
452     TRACE("%p decreasing refcount to %u.\n", ddraw, ref);
453
454     if (!ref && !InterlockedDecrement(&ddraw->numIfaces))
455         ddraw_destroy(ddraw);
456
457     return ref;
458 }
459
460 static ULONG WINAPI ddraw2_Release(IDirectDraw2 *iface)
461 {
462     IDirectDrawImpl *ddraw = ddraw_from_ddraw2(iface);
463     ULONG ref = InterlockedDecrement(&ddraw->ref2);
464
465     TRACE("%p decreasing refcount to %u.\n", ddraw, ref);
466
467     if (!ref && !InterlockedDecrement(&ddraw->numIfaces))
468         ddraw_destroy(ddraw);
469
470     return ref;
471 }
472
473 static ULONG WINAPI ddraw1_Release(IDirectDraw *iface)
474 {
475     IDirectDrawImpl *ddraw = ddraw_from_ddraw1(iface);
476     ULONG ref = InterlockedDecrement(&ddraw->ref1);
477
478     TRACE("%p decreasing refcount to %u.\n", ddraw, ref);
479
480     if (!ref && !InterlockedDecrement(&ddraw->numIfaces))
481         ddraw_destroy(ddraw);
482
483     return ref;
484 }
485
486 static ULONG WINAPI d3d7_Release(IDirect3D7 *iface)
487 {
488     TRACE("iface %p.\n", iface);
489
490     return ddraw7_Release((IDirectDraw7 *)ddraw_from_d3d7(iface));
491 }
492
493 static ULONG WINAPI d3d3_Release(IDirect3D3 *iface)
494 {
495     TRACE("iface %p.\n", iface);
496
497     return ddraw1_Release((IDirectDraw *)&ddraw_from_d3d3(iface)->IDirectDraw_vtbl);
498 }
499
500 static ULONG WINAPI d3d2_Release(IDirect3D2 *iface)
501 {
502     TRACE("iface %p.\n", iface);
503
504     return ddraw1_Release((IDirectDraw *)&ddraw_from_d3d2(iface)->IDirectDraw_vtbl);
505 }
506
507 static ULONG WINAPI d3d1_Release(IDirect3D *iface)
508 {
509     TRACE("iface %p.\n", iface);
510
511     return ddraw1_Release((IDirectDraw *)&ddraw_from_d3d1(iface)->IDirectDraw_vtbl);
512 }
513
514 /*****************************************************************************
515  * IDirectDraw methods
516  *****************************************************************************/
517
518 /*****************************************************************************
519  * IDirectDraw7::SetCooperativeLevel
520  *
521  * Sets the cooperative level for the DirectDraw object, and the window
522  * assigned to it. The cooperative level determines the general behavior
523  * of the DirectDraw application
524  *
525  * Warning: This is quite tricky, as it's not really documented which
526  * cooperative levels can be combined with each other. If a game fails
527  * after this function, try to check the cooperative levels passed on
528  * Windows, and if it returns something different.
529  *
530  * If you think that this function caused the failure because it writes a
531  * fixme, be sure to run again with a +ddraw trace.
532  *
533  * What is known about cooperative levels (See the ddraw modes test):
534  * DDSCL_EXCLUSIVE and DDSCL_FULLSCREEN must be used with each other
535  * DDSCL_NORMAL is not compatible with DDSCL_EXCLUSIVE or DDSCL_FULLSCREEN
536  * DDSCL_SETFOCUSWINDOW can be passed only in DDSCL_NORMAL mode, but after that
537  * DDSCL_FULLSCREEN can be activated
538  * DDSCL_SETFOCUSWINDOW may only be used with DDSCL_NOWINDOWCHANGES
539  *
540  * Handled flags: DDSCL_NORMAL, DDSCL_FULLSCREEN, DDSCL_EXCLUSIVE,
541  *                DDSCL_SETFOCUSWINDOW (partially),
542  *                DDSCL_MULTITHREADED (work in progress)
543  *
544  * Unhandled flags, which should be implemented
545  *  DDSCL_SETDEVICEWINDOW: Sets a window specially used for rendering (I don't
546  *  expect any difference to a normal window for wine)
547  *  DDSCL_CREATEDEVICEWINDOW: Tells ddraw to create its own window for
548  *  rendering (Possible test case: Half-Life)
549  *
550  * Unsure about these: DDSCL_FPUSETUP DDSCL_FPURESERVE
551  *
552  * These don't seem very important for wine:
553  *  DDSCL_ALLOWREBOOT, DDSCL_NOWINDOWCHANGES, DDSCL_ALLOWMODEX
554  *
555  * Returns:
556  *  DD_OK if the cooperative level was set successfully
557  *  DDERR_INVALIDPARAMS if the passed cooperative level combination is invalid
558  *  DDERR_HWNDALREADYSET if DDSCL_SETFOCUSWINDOW is passed in exclusive mode
559  *   (Probably others too, have to investigate)
560  *
561  *****************************************************************************/
562 static HRESULT WINAPI ddraw7_SetCooperativeLevel(IDirectDraw7 *iface, HWND hwnd, DWORD cooplevel)
563 {
564     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
565     HWND window;
566
567     TRACE("iface %p, window %p, flags %#x.\n", iface, hwnd, cooplevel);
568     DDRAW_dump_cooperativelevel(cooplevel);
569
570     EnterCriticalSection(&ddraw_cs);
571
572     /* Get the old window */
573     window = This->dest_window;
574
575     /* Tests suggest that we need one of them: */
576     if(!(cooplevel & (DDSCL_SETFOCUSWINDOW |
577                       DDSCL_NORMAL         |
578                       DDSCL_EXCLUSIVE      )))
579     {
580         TRACE("Incorrect cooplevel flags, returning DDERR_INVALIDPARAMS\n");
581         LeaveCriticalSection(&ddraw_cs);
582         return DDERR_INVALIDPARAMS;
583     }
584
585     /* Handle those levels first which set various hwnds */
586     if(cooplevel & DDSCL_SETFOCUSWINDOW)
587     {
588         /* This isn't compatible with a lot of flags */
589         if(cooplevel & ( DDSCL_MULTITHREADED   |
590                          DDSCL_FPUSETUP        |
591                          DDSCL_FPUPRESERVE     |
592                          DDSCL_ALLOWREBOOT     |
593                          DDSCL_ALLOWMODEX      |
594                          DDSCL_SETDEVICEWINDOW |
595                          DDSCL_NORMAL          |
596                          DDSCL_EXCLUSIVE       |
597                          DDSCL_FULLSCREEN      ) )
598         {
599             TRACE("Called with incompatible flags, returning DDERR_INVALIDPARAMS\n");
600             LeaveCriticalSection(&ddraw_cs);
601             return DDERR_INVALIDPARAMS;
602         }
603         else if( (This->cooperative_level & DDSCL_FULLSCREEN) && window)
604         {
605             TRACE("Setting DDSCL_SETFOCUSWINDOW with an already set window, returning DDERR_HWNDALREADYSET\n");
606             LeaveCriticalSection(&ddraw_cs);
607             return DDERR_HWNDALREADYSET;
608         }
609
610         This->focuswindow = hwnd;
611         /* Won't use the hwnd param for anything else */
612         hwnd = NULL;
613
614         /* Use the focus window for drawing too */
615         This->dest_window = This->focuswindow;
616
617         /* Destroy the device window, if we have one */
618         if(This->devicewindow)
619         {
620             DestroyWindow(This->devicewindow);
621             This->devicewindow = NULL;
622         }
623     }
624     /* DDSCL_NORMAL or DDSCL_FULLSCREEN | DDSCL_EXCLUSIVE */
625     if(cooplevel & DDSCL_NORMAL)
626     {
627         /* Can't coexist with fullscreen or exclusive */
628         if(cooplevel & (DDSCL_FULLSCREEN | DDSCL_EXCLUSIVE) )
629         {
630             TRACE("(%p) DDSCL_NORMAL is not compative with DDSCL_FULLSCREEN or DDSCL_EXCLUSIVE\n", This);
631             LeaveCriticalSection(&ddraw_cs);
632             return DDERR_INVALIDPARAMS;
633         }
634
635         /* Switching from fullscreen? */
636         if(This->cooperative_level & DDSCL_FULLSCREEN)
637         {
638             This->cooperative_level &= ~DDSCL_FULLSCREEN;
639             This->cooperative_level &= ~DDSCL_EXCLUSIVE;
640             This->cooperative_level &= ~DDSCL_ALLOWMODEX;
641
642             IWineD3DDevice_ReleaseFocusWindow(This->wineD3DDevice);
643         }
644
645         /* Don't override focus windows or private device windows */
646         if( hwnd &&
647             !(This->focuswindow) &&
648             !(This->devicewindow) &&
649             (hwnd != window) )
650         {
651             This->dest_window = hwnd;
652         }
653     }
654     else if(cooplevel & DDSCL_FULLSCREEN)
655     {
656         /* Needs DDSCL_EXCLUSIVE */
657         if(!(cooplevel & DDSCL_EXCLUSIVE) )
658         {
659             TRACE("(%p) DDSCL_FULLSCREEN needs DDSCL_EXCLUSIVE\n", This);
660             LeaveCriticalSection(&ddraw_cs);
661             return DDERR_INVALIDPARAMS;
662         }
663         /* Need a HWND
664         if(hwnd == 0)
665         {
666             TRACE("(%p) DDSCL_FULLSCREEN needs a HWND\n", This);
667             return DDERR_INVALIDPARAMS;
668         }
669         */
670
671         This->cooperative_level &= ~DDSCL_NORMAL;
672
673         /* Don't override focus windows or private device windows */
674         if( hwnd &&
675             !(This->focuswindow) &&
676             !(This->devicewindow) &&
677             (hwnd != window) )
678         {
679             HRESULT hr = IWineD3DDevice_AcquireFocusWindow(This->wineD3DDevice, hwnd);
680             if (FAILED(hr))
681             {
682                 ERR("Failed to acquire focus window, hr %#x.\n", hr);
683                 LeaveCriticalSection(&ddraw_cs);
684                 return hr;
685             }
686             This->dest_window = hwnd;
687         }
688     }
689     else if(cooplevel & DDSCL_EXCLUSIVE)
690     {
691         TRACE("(%p) DDSCL_EXCLUSIVE needs DDSCL_FULLSCREEN\n", This);
692         LeaveCriticalSection(&ddraw_cs);
693         return DDERR_INVALIDPARAMS;
694     }
695
696     if(cooplevel & DDSCL_CREATEDEVICEWINDOW)
697     {
698         /* Don't create a device window if a focus window is set */
699         if( !(This->focuswindow) )
700         {
701             HWND devicewindow = CreateWindowExA(0, DDRAW_WINDOW_CLASS_NAME, "DDraw device window",
702                     WS_POPUP, 0, 0, GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN),
703                     NULL, NULL, NULL, NULL);
704             if (!devicewindow)
705             {
706                 ERR("Failed to create window, last error %#x.\n", GetLastError());
707                 LeaveCriticalSection(&ddraw_cs);
708                 return E_FAIL;
709             }
710
711             ShowWindow(devicewindow, SW_SHOW);   /* Just to be sure */
712             TRACE("(%p) Created a DDraw device window. HWND=%p\n", This, devicewindow);
713
714             This->devicewindow = devicewindow;
715             This->dest_window = devicewindow;
716         }
717     }
718
719     if(cooplevel & DDSCL_MULTITHREADED && !(This->cooperative_level & DDSCL_MULTITHREADED))
720     {
721         /* Enable thread safety in wined3d */
722         IWineD3DDevice_SetMultithreaded(This->wineD3DDevice);
723     }
724
725     /* Unhandled flags */
726     if(cooplevel & DDSCL_ALLOWREBOOT)
727         WARN("(%p) Unhandled flag DDSCL_ALLOWREBOOT, harmless\n", This);
728     if(cooplevel & DDSCL_ALLOWMODEX)
729         WARN("(%p) Unhandled flag DDSCL_ALLOWMODEX, harmless\n", This);
730     if(cooplevel & DDSCL_FPUSETUP)
731         WARN("(%p) Unhandled flag DDSCL_FPUSETUP, harmless\n", This);
732
733     /* Store the cooperative_level */
734     This->cooperative_level |= cooplevel;
735     TRACE("SetCooperativeLevel retuning DD_OK\n");
736     LeaveCriticalSection(&ddraw_cs);
737     return DD_OK;
738 }
739
740 static HRESULT WINAPI ddraw4_SetCooperativeLevel(IDirectDraw4 *iface, HWND window, DWORD flags)
741 {
742     TRACE("iface %p, window %p, flags %#x.\n", iface, window, flags);
743
744     return ddraw7_SetCooperativeLevel((IDirectDraw7 *)ddraw_from_ddraw4(iface), window, flags);
745 }
746
747 static HRESULT WINAPI ddraw3_SetCooperativeLevel(IDirectDraw3 *iface, HWND window, DWORD flags)
748 {
749     TRACE("iface %p, window %p, flags %#x.\n", iface, window, flags);
750
751     return ddraw7_SetCooperativeLevel((IDirectDraw7 *)ddraw_from_ddraw3(iface), window, flags);
752 }
753
754 static HRESULT WINAPI ddraw2_SetCooperativeLevel(IDirectDraw2 *iface, HWND window, DWORD flags)
755 {
756     TRACE("iface %p, window %p, flags %#x.\n", iface, window, flags);
757
758     return ddraw7_SetCooperativeLevel((IDirectDraw7 *)ddraw_from_ddraw2(iface), window, flags);
759 }
760
761 static HRESULT WINAPI ddraw1_SetCooperativeLevel(IDirectDraw *iface, HWND window, DWORD flags)
762 {
763     TRACE("iface %p, window %p, flags %#x.\n", iface, window, flags);
764
765     return ddraw7_SetCooperativeLevel((IDirectDraw7 *)ddraw_from_ddraw1(iface), window, flags);
766 }
767
768 /*****************************************************************************
769  *
770  * Helper function for SetDisplayMode and RestoreDisplayMode
771  *
772  * Implements DirectDraw's SetDisplayMode, but ignores the value of
773  * ForceRefreshRate, since it is already handled by
774  * ddraw7_SetDisplayMode.  RestoreDisplayMode can use this function
775  * without worrying that ForceRefreshRate will override the refresh rate.  For
776  * argument and return value documentation, see
777  * ddraw7_SetDisplayMode.
778  *
779  *****************************************************************************/
780 static HRESULT ddraw_set_display_mode(IDirectDraw7 *iface, DWORD Width, DWORD Height,
781         DWORD BPP, DWORD RefreshRate, DWORD Flags)
782 {
783     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
784     WINED3DDISPLAYMODE Mode;
785     HRESULT hr;
786
787     TRACE("iface %p, width %u, height %u, bpp %u, refresh_rate %u, flags %#x.\n",
788             iface, Width, Height, BPP, RefreshRate, Flags);
789
790     EnterCriticalSection(&ddraw_cs);
791     if( !Width || !Height )
792     {
793         ERR("Width %u, Height %u, what to do?\n", Width, Height);
794         /* It looks like Need for Speed Porsche Unleashed expects DD_OK here */
795         LeaveCriticalSection(&ddraw_cs);
796         return DD_OK;
797     }
798
799     /* Check the exclusive mode
800     if(!(This->cooperative_level & DDSCL_EXCLUSIVE))
801         return DDERR_NOEXCLUSIVEMODE;
802      * This is WRONG. Don't know if the SDK is completely
803      * wrong and if there are any conditions when DDERR_NOEXCLUSIVE
804      * is returned, but Half-Life 1.1.1.1 (Steam version)
805      * depends on this
806      */
807
808     Mode.Width = Width;
809     Mode.Height = Height;
810     Mode.RefreshRate = RefreshRate;
811     switch(BPP)
812     {
813         case 8:  Mode.Format = WINED3DFMT_P8_UINT;          break;
814         case 15: Mode.Format = WINED3DFMT_B5G5R5X1_UNORM;   break;
815         case 16: Mode.Format = WINED3DFMT_B5G6R5_UNORM;     break;
816         case 24: Mode.Format = WINED3DFMT_B8G8R8_UNORM;     break;
817         case 32: Mode.Format = WINED3DFMT_B8G8R8X8_UNORM;   break;
818     }
819
820     /* TODO: The possible return values from msdn suggest that
821      * the screen mode can't be changed if a surface is locked
822      * or some drawing is in progress
823      */
824
825     /* TODO: Lose the primary surface */
826     hr = IWineD3DDevice_SetDisplayMode(This->wineD3DDevice,
827                                        0, /* First swapchain */
828                                        &Mode);
829     LeaveCriticalSection(&ddraw_cs);
830     switch(hr)
831     {
832         case WINED3DERR_NOTAVAILABLE:       return DDERR_UNSUPPORTED;
833         default:                            return hr;
834     }
835 }
836
837 /*****************************************************************************
838  * IDirectDraw7::SetDisplayMode
839  *
840  * Sets the display screen resolution, color depth and refresh frequency
841  * when in fullscreen mode (in theory).
842  * Possible return values listed in the SDK suggest that this method fails
843  * when not in fullscreen mode, but this is wrong. Windows 2000 happily sets
844  * the display mode in DDSCL_NORMAL mode without an hwnd specified.
845  * It seems to be valid to pass 0 for With and Height, this has to be tested
846  * It could mean that the current video mode should be left as-is. (But why
847  * call it then?)
848  *
849  * Params:
850  *  Height, Width: Screen dimension
851  *  BPP: Color depth in Bits per pixel
852  *  Refreshrate: Screen refresh rate
853  *  Flags: Other stuff
854  *
855  * Returns
856  *  DD_OK on success
857  *
858  *****************************************************************************/
859 static HRESULT WINAPI ddraw7_SetDisplayMode(IDirectDraw7 *iface, DWORD Width, DWORD Height,
860         DWORD BPP, DWORD RefreshRate, DWORD Flags)
861 {
862     TRACE("iface %p, width %u, height %u, bpp %u, refresh_rate %u, flags %#x.\n",
863             iface, Width, Height, BPP, RefreshRate, Flags);
864
865     if (force_refresh_rate != 0)
866     {
867         TRACE("ForceRefreshRate overriding passed-in refresh rate (%u Hz) to %u Hz\n",
868                 RefreshRate, force_refresh_rate);
869         RefreshRate = force_refresh_rate;
870     }
871
872     return ddraw_set_display_mode(iface, Width, Height, BPP, RefreshRate, Flags);
873 }
874
875 static HRESULT WINAPI ddraw4_SetDisplayMode(IDirectDraw4 *iface,
876         DWORD width, DWORD height, DWORD bpp, DWORD refresh_rate, DWORD flags)
877 {
878     TRACE("iface %p, width %u, height %u, bpp %u, refresh_rate %u, flags %#x.\n",
879             iface, width, height, bpp, refresh_rate, flags);
880
881     return ddraw7_SetDisplayMode((IDirectDraw7 *)ddraw_from_ddraw4(iface),
882             width, height, bpp, refresh_rate, flags);
883 }
884
885 static HRESULT WINAPI ddraw3_SetDisplayMode(IDirectDraw3 *iface,
886         DWORD width, DWORD height, DWORD bpp, DWORD refresh_rate, DWORD flags)
887 {
888     TRACE("iface %p, width %u, height %u, bpp %u, refresh_rate %u, flags %#x.\n",
889             iface, width, height, bpp, refresh_rate, flags);
890
891     return ddraw7_SetDisplayMode((IDirectDraw7 *)ddraw_from_ddraw3(iface),
892             width, height, bpp, refresh_rate, flags);
893 }
894
895 static HRESULT WINAPI ddraw2_SetDisplayMode(IDirectDraw2 *iface,
896         DWORD width, DWORD height, DWORD bpp, DWORD refresh_rate, DWORD flags)
897 {
898     TRACE("iface %p, width %u, height %u, bpp %u, refresh_rate %u, flags %#x.\n",
899             iface, width, height, bpp, refresh_rate, flags);
900
901     return ddraw7_SetDisplayMode((IDirectDraw7 *)ddraw_from_ddraw2(iface),
902             width, height, bpp, refresh_rate, flags);
903 }
904
905 static HRESULT WINAPI ddraw1_SetDisplayMode(IDirectDraw *iface, DWORD width, DWORD height, DWORD bpp)
906 {
907     TRACE("iface %p, width %u, height %u, bpp %u.\n", iface, width, height, bpp);
908
909     return ddraw7_SetDisplayMode((IDirectDraw7 *)ddraw_from_ddraw1(iface), width, height, bpp, 0, 0);
910 }
911
912 /*****************************************************************************
913  * IDirectDraw7::RestoreDisplayMode
914  *
915  * Restores the display mode to what it was at creation time. Basically.
916  *
917  * A problem arises when there are 2 DirectDraw objects using the same hwnd:
918  *  -> DD_1 finds the screen at 1400x1050x32 when created, sets it to 640x480x16
919  *  -> DD_2 is created, finds the screen at 640x480x16, sets it to 1024x768x32
920  *  -> DD_1 is released. The screen should be left at 1024x768x32.
921  *  -> DD_2 is released. The screen should be set to 1400x1050x32
922  * This case is unhandled right now, but Empire Earth does it this way.
923  * (But perhaps there is something in SetCooperativeLevel to prevent this)
924  *
925  * The msdn says that this method resets the display mode to what it was before
926  * SetDisplayMode was called. What if SetDisplayModes is called 2 times??
927  *
928  * Returns
929  *  DD_OK on success
930  *  DDERR_NOEXCLUSIVE mode if the device isn't in fullscreen mode
931  *
932  *****************************************************************************/
933 static HRESULT WINAPI ddraw7_RestoreDisplayMode(IDirectDraw7 *iface)
934 {
935     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
936
937     TRACE("iface %p.\n", iface);
938
939     return ddraw_set_display_mode(iface, This->orig_width, This->orig_height, This->orig_bpp, 0, 0);
940 }
941
942 static HRESULT WINAPI ddraw4_RestoreDisplayMode(IDirectDraw4 *iface)
943 {
944     TRACE("iface %p.\n", iface);
945
946     return ddraw7_RestoreDisplayMode((IDirectDraw7 *)ddraw_from_ddraw4(iface));
947 }
948
949 static HRESULT WINAPI ddraw3_RestoreDisplayMode(IDirectDraw3 *iface)
950 {
951     TRACE("iface %p.\n", iface);
952
953     return ddraw7_RestoreDisplayMode((IDirectDraw7 *)ddraw_from_ddraw3(iface));
954 }
955
956 static HRESULT WINAPI ddraw2_RestoreDisplayMode(IDirectDraw2 *iface)
957 {
958     TRACE("iface %p.\n", iface);
959
960     return ddraw7_RestoreDisplayMode((IDirectDraw7 *)ddraw_from_ddraw2(iface));
961 }
962
963 static HRESULT WINAPI ddraw1_RestoreDisplayMode(IDirectDraw *iface)
964 {
965     TRACE("iface %p.\n", iface);
966
967     return ddraw7_RestoreDisplayMode((IDirectDraw7 *)ddraw_from_ddraw1(iface));
968 }
969
970 /*****************************************************************************
971  * IDirectDraw7::GetCaps
972  *
973  * Returns the drives capabilities
974  *
975  * Used for version 1, 2, 4 and 7
976  *
977  * Params:
978  *  DriverCaps: Structure to write the Hardware accelerated caps to
979  *  HelCaps: Structure to write the emulation caps to
980  *
981  * Returns
982  *  This implementation returns DD_OK only
983  *
984  *****************************************************************************/
985 static HRESULT WINAPI ddraw7_GetCaps(IDirectDraw7 *iface, DDCAPS *DriverCaps, DDCAPS *HELCaps)
986 {
987     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
988     DDCAPS caps;
989     WINED3DCAPS winecaps;
990     HRESULT hr;
991     DDSCAPS2 ddscaps = {0, 0, 0, 0};
992
993     TRACE("iface %p, driver_caps %p, hel_caps %p.\n", iface, DriverCaps, HELCaps);
994
995     /* One structure must be != NULL */
996     if( (!DriverCaps) && (!HELCaps) )
997     {
998         ERR("(%p) Invalid params to ddraw7_GetCaps\n", This);
999         return DDERR_INVALIDPARAMS;
1000     }
1001
1002     memset(&caps, 0, sizeof(caps));
1003     memset(&winecaps, 0, sizeof(winecaps));
1004     caps.dwSize = sizeof(caps);
1005     EnterCriticalSection(&ddraw_cs);
1006     hr = IWineD3DDevice_GetDeviceCaps(This->wineD3DDevice, &winecaps);
1007     if(FAILED(hr)) {
1008         WARN("IWineD3DDevice::GetDeviceCaps failed\n");
1009         LeaveCriticalSection(&ddraw_cs);
1010         return hr;
1011     }
1012
1013     hr = IDirectDraw7_GetAvailableVidMem(iface, &ddscaps, &caps.dwVidMemTotal, &caps.dwVidMemFree);
1014     LeaveCriticalSection(&ddraw_cs);
1015     if(FAILED(hr)) {
1016         WARN("IDirectDraw7::GetAvailableVidMem failed\n");
1017         return hr;
1018     }
1019
1020     caps.dwCaps = winecaps.DirectDrawCaps.Caps;
1021     caps.dwCaps2 = winecaps.DirectDrawCaps.Caps2;
1022     caps.dwCKeyCaps = winecaps.DirectDrawCaps.CKeyCaps;
1023     caps.dwFXCaps = winecaps.DirectDrawCaps.FXCaps;
1024     caps.dwPalCaps = winecaps.DirectDrawCaps.PalCaps;
1025     caps.ddsCaps.dwCaps = winecaps.DirectDrawCaps.ddsCaps;
1026     caps.dwSVBCaps = winecaps.DirectDrawCaps.SVBCaps;
1027     caps.dwSVBCKeyCaps = winecaps.DirectDrawCaps.SVBCKeyCaps;
1028     caps.dwSVBFXCaps = winecaps.DirectDrawCaps.SVBFXCaps;
1029     caps.dwVSBCaps = winecaps.DirectDrawCaps.VSBCaps;
1030     caps.dwVSBCKeyCaps = winecaps.DirectDrawCaps.VSBCKeyCaps;
1031     caps.dwVSBFXCaps = winecaps.DirectDrawCaps.VSBFXCaps;
1032     caps.dwSSBCaps = winecaps.DirectDrawCaps.SSBCaps;
1033     caps.dwSSBCKeyCaps = winecaps.DirectDrawCaps.SSBCKeyCaps;
1034     caps.dwSSBFXCaps = winecaps.DirectDrawCaps.SSBFXCaps;
1035
1036     /* Even if WineD3D supports 3D rendering, remove the cap if ddraw is configured
1037      * not to use it
1038      */
1039     if(DefaultSurfaceType == SURFACE_GDI) {
1040         caps.dwCaps &= ~DDCAPS_3D;
1041         caps.ddsCaps.dwCaps &= ~(DDSCAPS_3DDEVICE | DDSCAPS_MIPMAP | DDSCAPS_TEXTURE | DDSCAPS_ZBUFFER);
1042     }
1043     if(winecaps.DirectDrawCaps.StrideAlign != 0) {
1044         caps.dwCaps |= DDCAPS_ALIGNSTRIDE;
1045         caps.dwAlignStrideAlign = winecaps.DirectDrawCaps.StrideAlign;
1046     }
1047
1048     if(DriverCaps)
1049     {
1050         DD_STRUCT_COPY_BYSIZE(DriverCaps, &caps);
1051         if (TRACE_ON(ddraw))
1052         {
1053             TRACE("Driver Caps :\n");
1054             DDRAW_dump_DDCAPS(DriverCaps);
1055         }
1056
1057     }
1058     if(HELCaps)
1059     {
1060         DD_STRUCT_COPY_BYSIZE(HELCaps, &caps);
1061         if (TRACE_ON(ddraw))
1062         {
1063             TRACE("HEL Caps :\n");
1064             DDRAW_dump_DDCAPS(HELCaps);
1065         }
1066     }
1067
1068     return DD_OK;
1069 }
1070
1071 static HRESULT WINAPI ddraw4_GetCaps(IDirectDraw4 *iface, DDCAPS *driver_caps, DDCAPS *hel_caps)
1072 {
1073     TRACE("iface %p, driver_caps %p, hel_caps %p.\n", iface, driver_caps, hel_caps);
1074
1075     return ddraw7_GetCaps((IDirectDraw7 *)ddraw_from_ddraw4(iface), driver_caps, hel_caps);
1076 }
1077
1078 static HRESULT WINAPI ddraw3_GetCaps(IDirectDraw3 *iface, DDCAPS *driver_caps, DDCAPS *hel_caps)
1079 {
1080     TRACE("iface %p, driver_caps %p, hel_caps %p.\n", iface, driver_caps, hel_caps);
1081
1082     return ddraw7_GetCaps((IDirectDraw7 *)ddraw_from_ddraw3(iface), driver_caps, hel_caps);
1083 }
1084
1085 static HRESULT WINAPI ddraw2_GetCaps(IDirectDraw2 *iface, DDCAPS *driver_caps, DDCAPS *hel_caps)
1086 {
1087     TRACE("iface %p, driver_caps %p, hel_caps %p.\n", iface, driver_caps, hel_caps);
1088
1089     return ddraw7_GetCaps((IDirectDraw7 *)ddraw_from_ddraw2(iface), driver_caps, hel_caps);
1090 }
1091
1092 static HRESULT WINAPI ddraw1_GetCaps(IDirectDraw *iface, DDCAPS *driver_caps, DDCAPS *hel_caps)
1093 {
1094     TRACE("iface %p, driver_caps %p, hel_caps %p.\n", iface, driver_caps, hel_caps);
1095
1096     return ddraw7_GetCaps((IDirectDraw7 *)ddraw_from_ddraw1(iface), driver_caps, hel_caps);
1097 }
1098
1099 /*****************************************************************************
1100  * IDirectDraw7::Compact
1101  *
1102  * No idea what it does, MSDN says it's not implemented.
1103  *
1104  * Returns
1105  *  DD_OK, but this is unchecked
1106  *
1107  *****************************************************************************/
1108 static HRESULT WINAPI ddraw7_Compact(IDirectDraw7 *iface)
1109 {
1110     TRACE("iface %p.\n", iface);
1111
1112     return DD_OK;
1113 }
1114
1115 static HRESULT WINAPI ddraw4_Compact(IDirectDraw4 *iface)
1116 {
1117     TRACE("iface %p.\n", iface);
1118
1119     return ddraw7_Compact((IDirectDraw7 *)ddraw_from_ddraw4(iface));
1120 }
1121
1122 static HRESULT WINAPI ddraw3_Compact(IDirectDraw3 *iface)
1123 {
1124     TRACE("iface %p.\n", iface);
1125
1126     return ddraw7_Compact((IDirectDraw7 *)ddraw_from_ddraw3(iface));
1127 }
1128
1129 static HRESULT WINAPI ddraw2_Compact(IDirectDraw2 *iface)
1130 {
1131     TRACE("iface %p.\n", iface);
1132
1133     return ddraw7_Compact((IDirectDraw7 *)ddraw_from_ddraw2(iface));
1134 }
1135
1136 static HRESULT WINAPI ddraw1_Compact(IDirectDraw *iface)
1137 {
1138     TRACE("iface %p.\n", iface);
1139
1140     return ddraw7_Compact((IDirectDraw7 *)ddraw_from_ddraw1(iface));
1141 }
1142
1143 /*****************************************************************************
1144  * IDirectDraw7::GetDisplayMode
1145  *
1146  * Returns information about the current display mode
1147  *
1148  * Exists in Version 1, 2, 4 and 7
1149  *
1150  * Params:
1151  *  DDSD: Address of a surface description structure to write the info to
1152  *
1153  * Returns
1154  *  DD_OK
1155  *
1156  *****************************************************************************/
1157 static HRESULT WINAPI ddraw7_GetDisplayMode(IDirectDraw7 *iface, DDSURFACEDESC2 *DDSD)
1158 {
1159     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
1160     HRESULT hr;
1161     WINED3DDISPLAYMODE Mode;
1162     DWORD Size;
1163
1164     TRACE("iface %p, surface_desc %p.\n", iface, DDSD);
1165
1166     EnterCriticalSection(&ddraw_cs);
1167     /* This seems sane */
1168     if (!DDSD)
1169     {
1170         LeaveCriticalSection(&ddraw_cs);
1171         return DDERR_INVALIDPARAMS;
1172     }
1173
1174     /* The necessary members of LPDDSURFACEDESC and LPDDSURFACEDESC2 are equal,
1175      * so one method can be used for all versions (Hopefully)
1176      */
1177     hr = IWineD3DDevice_GetDisplayMode(This->wineD3DDevice,
1178                                       0 /* swapchain 0 */,
1179                                       &Mode);
1180     if( hr != D3D_OK )
1181     {
1182         ERR(" (%p) IWineD3DDevice::GetDisplayMode returned %08x\n", This, hr);
1183         LeaveCriticalSection(&ddraw_cs);
1184         return hr;
1185     }
1186
1187     Size = DDSD->dwSize;
1188     memset(DDSD, 0, Size);
1189
1190     DDSD->dwSize = Size;
1191     DDSD->dwFlags |= DDSD_HEIGHT | DDSD_WIDTH | DDSD_PIXELFORMAT | DDSD_PITCH | DDSD_REFRESHRATE;
1192     DDSD->dwWidth = Mode.Width;
1193     DDSD->dwHeight = Mode.Height;
1194     DDSD->u2.dwRefreshRate = 60;
1195     DDSD->ddsCaps.dwCaps = 0;
1196     DDSD->u4.ddpfPixelFormat.dwSize = sizeof(DDSD->u4.ddpfPixelFormat);
1197     PixelFormat_WineD3DtoDD(&DDSD->u4.ddpfPixelFormat, Mode.Format);
1198     DDSD->u1.lPitch = Mode.Width * DDSD->u4.ddpfPixelFormat.u1.dwRGBBitCount / 8;
1199
1200     if(TRACE_ON(ddraw))
1201     {
1202         TRACE("Returning surface desc :\n");
1203         DDRAW_dump_surface_desc(DDSD);
1204     }
1205
1206     LeaveCriticalSection(&ddraw_cs);
1207     return DD_OK;
1208 }
1209
1210 static HRESULT WINAPI ddraw4_GetDisplayMode(IDirectDraw4 *iface, DDSURFACEDESC2 *surface_desc)
1211 {
1212     TRACE("iface %p, surface_desc %p.\n", iface, surface_desc);
1213
1214     return ddraw7_GetDisplayMode((IDirectDraw7 *)ddraw_from_ddraw4(iface), surface_desc);
1215 }
1216
1217 static HRESULT WINAPI ddraw3_GetDisplayMode(IDirectDraw3 *iface, DDSURFACEDESC *surface_desc)
1218 {
1219     TRACE("iface %p, surface_desc %p.\n", iface, surface_desc);
1220
1221     return ddraw7_GetDisplayMode((IDirectDraw7 *)ddraw_from_ddraw3(iface), (DDSURFACEDESC2 *)surface_desc);
1222 }
1223
1224 static HRESULT WINAPI ddraw2_GetDisplayMode(IDirectDraw2 *iface, DDSURFACEDESC *surface_desc)
1225 {
1226     TRACE("iface %p, surface_desc %p.\n", iface, surface_desc);
1227
1228     return ddraw7_GetDisplayMode((IDirectDraw7 *)ddraw_from_ddraw2(iface), (DDSURFACEDESC2 *)surface_desc);
1229 }
1230
1231 static HRESULT WINAPI ddraw1_GetDisplayMode(IDirectDraw *iface, DDSURFACEDESC *surface_desc)
1232 {
1233     TRACE("iface %p, surface_desc %p.\n", iface, surface_desc);
1234
1235     return ddraw7_GetDisplayMode((IDirectDraw7 *)ddraw_from_ddraw1(iface), (DDSURFACEDESC2 *)surface_desc);
1236 }
1237
1238 /*****************************************************************************
1239  * IDirectDraw7::GetFourCCCodes
1240  *
1241  * Returns an array of supported FourCC codes.
1242  *
1243  * Exists in Version 1, 2, 4 and 7
1244  *
1245  * Params:
1246  *  NumCodes: Contains the number of Codes that Codes can carry. Returns the number
1247  *            of enumerated codes
1248  *  Codes: Pointer to an array of DWORDs where the supported codes are written
1249  *         to
1250  *
1251  * Returns
1252  *  Always returns DD_OK, as it's a stub for now
1253  *
1254  *****************************************************************************/
1255 static HRESULT WINAPI ddraw7_GetFourCCCodes(IDirectDraw7 *iface, DWORD *NumCodes, DWORD *Codes)
1256 {
1257     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
1258     static const enum wined3d_format_id formats[] =
1259     {
1260         WINED3DFMT_YUY2, WINED3DFMT_UYVY, WINED3DFMT_YV12,
1261         WINED3DFMT_DXT1, WINED3DFMT_DXT2, WINED3DFMT_DXT3, WINED3DFMT_DXT4, WINED3DFMT_DXT5,
1262         WINED3DFMT_ATI2N, WINED3DFMT_NVHU, WINED3DFMT_NVHS
1263     };
1264     DWORD count = 0, i, outsize;
1265     HRESULT hr;
1266     WINED3DDISPLAYMODE d3ddm;
1267     WINED3DSURFTYPE type = This->ImplType;
1268
1269     TRACE("iface %p, codes_count %p, codes %p.\n", iface, NumCodes, Codes);
1270
1271     IWineD3DDevice_GetDisplayMode(This->wineD3DDevice,
1272                                   0 /* swapchain 0 */,
1273                                   &d3ddm);
1274
1275     outsize = NumCodes && Codes ? *NumCodes : 0;
1276
1277     if(type == SURFACE_UNKNOWN) type = SURFACE_GDI;
1278
1279     for(i = 0; i < (sizeof(formats) / sizeof(formats[0])); i++) {
1280         hr = IWineD3D_CheckDeviceFormat(This->wineD3D,
1281                                         WINED3DADAPTER_DEFAULT,
1282                                         WINED3DDEVTYPE_HAL,
1283                                         d3ddm.Format /* AdapterFormat */,
1284                                         0 /* usage */,
1285                                         WINED3DRTYPE_SURFACE,
1286                                         formats[i],
1287                                         type);
1288         if(SUCCEEDED(hr)) {
1289             if(count < outsize) {
1290                 Codes[count] = formats[i];
1291             }
1292             count++;
1293         }
1294     }
1295     if(NumCodes) {
1296         TRACE("Returning %u FourCC codes\n", count);
1297         *NumCodes = count;
1298     }
1299
1300     return DD_OK;
1301 }
1302
1303 static HRESULT WINAPI ddraw4_GetFourCCCodes(IDirectDraw4 *iface, DWORD *codes_count, DWORD *codes)
1304 {
1305     TRACE("iface %p, codes_count %p, codes %p.\n", iface, codes_count, codes);
1306
1307     return ddraw7_GetFourCCCodes((IDirectDraw7 *)ddraw_from_ddraw4(iface), codes_count, codes);
1308 }
1309
1310 static HRESULT WINAPI ddraw3_GetFourCCCodes(IDirectDraw3 *iface, DWORD *codes_count, DWORD *codes)
1311 {
1312     TRACE("iface %p, codes_count %p, codes %p.\n", iface, codes_count, codes);
1313
1314     return ddraw7_GetFourCCCodes((IDirectDraw7 *)ddraw_from_ddraw3(iface), codes_count, codes);
1315 }
1316
1317 static HRESULT WINAPI ddraw2_GetFourCCCodes(IDirectDraw2 *iface, DWORD *codes_count, DWORD *codes)
1318 {
1319     TRACE("iface %p, codes_count %p, codes %p.\n", iface, codes_count, codes);
1320
1321     return ddraw7_GetFourCCCodes((IDirectDraw7 *)ddraw_from_ddraw2(iface), codes_count, codes);
1322 }
1323
1324 static HRESULT WINAPI ddraw1_GetFourCCCodes(IDirectDraw *iface, DWORD *codes_count, DWORD *codes)
1325 {
1326     TRACE("iface %p, codes_count %p, codes %p.\n", iface, codes_count, codes);
1327
1328     return ddraw7_GetFourCCCodes((IDirectDraw7 *)ddraw_from_ddraw1(iface), codes_count, codes);
1329 }
1330
1331 /*****************************************************************************
1332  * IDirectDraw7::GetMonitorFrequency
1333  *
1334  * Returns the monitor's frequency
1335  *
1336  * Exists in Version 1, 2, 4 and 7
1337  *
1338  * Params:
1339  *  Freq: Pointer to a DWORD to write the frequency to
1340  *
1341  * Returns
1342  *  Always returns DD_OK
1343  *
1344  *****************************************************************************/
1345 static HRESULT WINAPI ddraw7_GetMonitorFrequency(IDirectDraw7 *iface, DWORD *Freq)
1346 {
1347     FIXME("iface %p, frequency %p stub!\n", iface, Freq);
1348
1349     /* Ideally this should be in WineD3D, as it concerns the screen setup,
1350      * but for now this should make the games happy
1351      */
1352     *Freq = 60;
1353     return DD_OK;
1354 }
1355
1356 static HRESULT WINAPI ddraw4_GetMonitorFrequency(IDirectDraw4 *iface, DWORD *frequency)
1357 {
1358     TRACE("iface %p, frequency %p.\n", iface, frequency);
1359
1360     return ddraw7_GetMonitorFrequency((IDirectDraw7 *)ddraw_from_ddraw4(iface), frequency);
1361 }
1362
1363 static HRESULT WINAPI ddraw3_GetMonitorFrequency(IDirectDraw3 *iface, DWORD *frequency)
1364 {
1365     TRACE("iface %p, frequency %p.\n", iface, frequency);
1366
1367     return ddraw7_GetMonitorFrequency((IDirectDraw7 *)ddraw_from_ddraw3(iface), frequency);
1368 }
1369
1370 static HRESULT WINAPI ddraw2_GetMonitorFrequency(IDirectDraw2 *iface, DWORD *frequency)
1371 {
1372     TRACE("iface %p, frequency %p.\n", iface, frequency);
1373
1374     return ddraw7_GetMonitorFrequency((IDirectDraw7 *)ddraw_from_ddraw2(iface), frequency);
1375 }
1376
1377 static HRESULT WINAPI ddraw1_GetMonitorFrequency(IDirectDraw *iface, DWORD *frequency)
1378 {
1379     TRACE("iface %p, frequency %p.\n", iface, frequency);
1380
1381     return ddraw7_GetMonitorFrequency((IDirectDraw7 *)ddraw_from_ddraw1(iface), frequency);
1382 }
1383
1384 /*****************************************************************************
1385  * IDirectDraw7::GetVerticalBlankStatus
1386  *
1387  * Returns the Vertical blank status of the monitor. This should be in WineD3D
1388  * too basically, but as it's a semi stub, I didn't create a function there
1389  *
1390  * Params:
1391  *  status: Pointer to a BOOL to be filled with the vertical blank status
1392  *
1393  * Returns
1394  *  DD_OK on success
1395  *  DDERR_INVALIDPARAMS if status is NULL
1396  *
1397  *****************************************************************************/
1398 static HRESULT WINAPI ddraw7_GetVerticalBlankStatus(IDirectDraw7 *iface, BOOL *status)
1399 {
1400     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
1401
1402     TRACE("iface %p, status %p.\n", iface, status);
1403
1404     /* This looks sane, the MSDN suggests it too */
1405     EnterCriticalSection(&ddraw_cs);
1406     if(!status)
1407     {
1408         LeaveCriticalSection(&ddraw_cs);
1409         return DDERR_INVALIDPARAMS;
1410     }
1411
1412     *status = This->fake_vblank;
1413     This->fake_vblank = !This->fake_vblank;
1414     LeaveCriticalSection(&ddraw_cs);
1415     return DD_OK;
1416 }
1417
1418 static HRESULT WINAPI ddraw4_GetVerticalBlankStatus(IDirectDraw4 *iface, BOOL *status)
1419 {
1420     TRACE("iface %p, status %p.\n", iface, status);
1421
1422     return ddraw7_GetVerticalBlankStatus((IDirectDraw7 *)ddraw_from_ddraw4(iface), status);
1423 }
1424
1425 static HRESULT WINAPI ddraw3_GetVerticalBlankStatus(IDirectDraw3 *iface, BOOL *status)
1426 {
1427     TRACE("iface %p, status %p.\n", iface, status);
1428
1429     return ddraw7_GetVerticalBlankStatus((IDirectDraw7 *)ddraw_from_ddraw3(iface), status);
1430 }
1431
1432 static HRESULT WINAPI ddraw2_GetVerticalBlankStatus(IDirectDraw2 *iface, BOOL *status)
1433 {
1434     TRACE("iface %p, status %p.\n", iface, status);
1435
1436     return ddraw7_GetVerticalBlankStatus((IDirectDraw7 *)ddraw_from_ddraw2(iface), status);
1437 }
1438
1439 static HRESULT WINAPI ddraw1_GetVerticalBlankStatus(IDirectDraw *iface, BOOL *status)
1440 {
1441     TRACE("iface %p, status %p.\n", iface, status);
1442
1443     return ddraw7_GetVerticalBlankStatus((IDirectDraw7 *)ddraw_from_ddraw1(iface), status);
1444 }
1445
1446 /*****************************************************************************
1447  * IDirectDraw7::GetAvailableVidMem
1448  *
1449  * Returns the total and free video memory
1450  *
1451  * Params:
1452  *  Caps: Specifies the memory type asked for
1453  *  total: Pointer to a DWORD to be filled with the total memory
1454  *  free: Pointer to a DWORD to be filled with the free memory
1455  *
1456  * Returns
1457  *  DD_OK on success
1458  *  DDERR_INVALIDPARAMS of free and total are NULL
1459  *
1460  *****************************************************************************/
1461 static HRESULT WINAPI ddraw7_GetAvailableVidMem(IDirectDraw7 *iface, DDSCAPS2 *Caps, DWORD *total, DWORD *free)
1462 {
1463     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
1464
1465     TRACE("iface %p, caps %p, total %p, free %p.\n", iface, Caps, total, free);
1466
1467     if(TRACE_ON(ddraw))
1468     {
1469         TRACE("(%p) Asked for memory with description: ", This);
1470         DDRAW_dump_DDSCAPS2(Caps);
1471     }
1472     EnterCriticalSection(&ddraw_cs);
1473
1474     /* Todo: System memory vs local video memory vs non-local video memory
1475      * The MSDN also mentions differences between texture memory and other
1476      * resources, but that's not important
1477      */
1478
1479     if( (!total) && (!free) )
1480     {
1481         LeaveCriticalSection(&ddraw_cs);
1482         return DDERR_INVALIDPARAMS;
1483     }
1484
1485     if(total) *total = This->total_vidmem;
1486     if(free) *free = IWineD3DDevice_GetAvailableTextureMem(This->wineD3DDevice);
1487
1488     LeaveCriticalSection(&ddraw_cs);
1489     return DD_OK;
1490 }
1491
1492 static HRESULT WINAPI ddraw4_GetAvailableVidMem(IDirectDraw4 *iface,
1493         DDSCAPS2 *caps, DWORD *total, DWORD *free)
1494 {
1495     TRACE("iface %p, caps %p, total %p, free %p.\n", iface, caps, total, free);
1496
1497     return ddraw7_GetAvailableVidMem((IDirectDraw7 *)ddraw_from_ddraw4(iface), caps, total, free);
1498 }
1499
1500 static HRESULT WINAPI ddraw3_GetAvailableVidMem(IDirectDraw3 *iface,
1501         DDSCAPS *caps, DWORD *total, DWORD *free)
1502 {
1503     DDSCAPS2 caps2;
1504
1505     TRACE("iface %p, caps %p, total %p, free %p.\n", iface, caps, total, free);
1506
1507     DDRAW_Convert_DDSCAPS_1_To_2(caps, &caps2);
1508     return ddraw7_GetAvailableVidMem((IDirectDraw7 *)ddraw_from_ddraw3(iface), &caps2, total, free);
1509 }
1510
1511 static HRESULT WINAPI ddraw2_GetAvailableVidMem(IDirectDraw2 *iface,
1512         DDSCAPS *caps, DWORD *total, DWORD *free)
1513 {
1514     DDSCAPS2 caps2;
1515
1516     TRACE("iface %p, caps %p, total %p, free %p.\n", iface, caps, total, free);
1517
1518     DDRAW_Convert_DDSCAPS_1_To_2(caps, &caps2);
1519     return ddraw7_GetAvailableVidMem((IDirectDraw7 *)ddraw_from_ddraw2(iface), &caps2, total, free);
1520 }
1521
1522 /*****************************************************************************
1523  * IDirectDraw7::Initialize
1524  *
1525  * Initializes a DirectDraw interface.
1526  *
1527  * Params:
1528  *  GUID: Interface identifier. Well, don't know what this is really good
1529  *   for
1530  *
1531  * Returns
1532  *  Returns DD_OK on the first call,
1533  *  DDERR_ALREADYINITIALIZED on repeated calls
1534  *
1535  *****************************************************************************/
1536 static HRESULT WINAPI ddraw7_Initialize(IDirectDraw7 *iface, GUID *Guid)
1537 {
1538     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
1539
1540     TRACE("iface %p, guid %s.\n", iface, debugstr_guid(Guid));
1541
1542     if(This->initialized)
1543     {
1544         return DDERR_ALREADYINITIALIZED;
1545     }
1546     else
1547     {
1548         return DD_OK;
1549     }
1550 }
1551
1552 static HRESULT WINAPI ddraw4_Initialize(IDirectDraw4 *iface, GUID *guid)
1553 {
1554     TRACE("iface %p, guid %s.\n", iface, debugstr_guid(guid));
1555
1556     return ddraw7_Initialize((IDirectDraw7 *)ddraw_from_ddraw4(iface), guid);
1557 }
1558
1559 static HRESULT WINAPI ddraw3_Initialize(IDirectDraw3 *iface, GUID *guid)
1560 {
1561     TRACE("iface %p, guid %s.\n", iface, debugstr_guid(guid));
1562
1563     return ddraw7_Initialize((IDirectDraw7 *)ddraw_from_ddraw3(iface), guid);
1564 }
1565
1566 static HRESULT WINAPI ddraw2_Initialize(IDirectDraw2 *iface, GUID *guid)
1567 {
1568     TRACE("iface %p, guid %s.\n", iface, debugstr_guid(guid));
1569
1570     return ddraw7_Initialize((IDirectDraw7 *)ddraw_from_ddraw2(iface), guid);
1571 }
1572
1573 static HRESULT WINAPI ddraw1_Initialize(IDirectDraw *iface, GUID *guid)
1574 {
1575     TRACE("iface %p, guid %s.\n", iface, debugstr_guid(guid));
1576
1577     return ddraw7_Initialize((IDirectDraw7 *)ddraw_from_ddraw1(iface), guid);
1578 }
1579
1580 static HRESULT WINAPI d3d1_Initialize(IDirect3D *iface, REFIID riid)
1581 {
1582     TRACE("iface %p, riid %s.\n", iface, debugstr_guid(riid));
1583
1584     return D3D_OK;
1585 }
1586
1587 /*****************************************************************************
1588  * IDirectDraw7::FlipToGDISurface
1589  *
1590  * "Makes the surface that the GDI writes to the primary surface"
1591  * Looks like some windows specific thing we don't have to care about.
1592  * According to MSDN it permits GDI dialog boxes in FULLSCREEN mode. Good to
1593  * show error boxes ;)
1594  * Well, just return DD_OK.
1595  *
1596  * Returns:
1597  *  Always returns DD_OK
1598  *
1599  *****************************************************************************/
1600 static HRESULT WINAPI ddraw7_FlipToGDISurface(IDirectDraw7 *iface)
1601 {
1602     FIXME("iface %p stub!\n", iface);
1603
1604     return DD_OK;
1605 }
1606
1607 static HRESULT WINAPI ddraw4_FlipToGDISurface(IDirectDraw4 *iface)
1608 {
1609     TRACE("iface %p.\n", iface);
1610
1611     return ddraw7_FlipToGDISurface((IDirectDraw7 *)ddraw_from_ddraw4(iface));
1612 }
1613
1614 static HRESULT WINAPI ddraw3_FlipToGDISurface(IDirectDraw3 *iface)
1615 {
1616     TRACE("iface %p.\n", iface);
1617
1618     return ddraw7_FlipToGDISurface((IDirectDraw7 *)ddraw_from_ddraw3(iface));
1619 }
1620
1621 static HRESULT WINAPI ddraw2_FlipToGDISurface(IDirectDraw2 *iface)
1622 {
1623     TRACE("iface %p.\n", iface);
1624
1625     return ddraw7_FlipToGDISurface((IDirectDraw7 *)ddraw_from_ddraw2(iface));
1626 }
1627
1628 static HRESULT WINAPI ddraw1_FlipToGDISurface(IDirectDraw *iface)
1629 {
1630     TRACE("iface %p.\n", iface);
1631
1632     return ddraw7_FlipToGDISurface((IDirectDraw7 *)ddraw_from_ddraw1(iface));
1633 }
1634
1635 /*****************************************************************************
1636  * IDirectDraw7::WaitForVerticalBlank
1637  *
1638  * This method allows applications to get in sync with the vertical blank
1639  * interval.
1640  * The wormhole demo in the DirectX 7 sdk uses this call, and it doesn't
1641  * redraw the screen, most likely because of this stub
1642  *
1643  * Parameters:
1644  *  Flags: one of DDWAITVB_BLOCKBEGIN, DDWAITVB_BLOCKBEGINEVENT
1645  *         or DDWAITVB_BLOCKEND
1646  *  h: Not used, according to MSDN
1647  *
1648  * Returns:
1649  *  Always returns DD_OK
1650  *
1651  *****************************************************************************/
1652 static HRESULT WINAPI ddraw7_WaitForVerticalBlank(IDirectDraw7 *iface, DWORD Flags, HANDLE event)
1653 {
1654     static BOOL hide;
1655
1656     TRACE("iface %p, flags %#x, event %p.\n", iface, Flags, event);
1657
1658     /* This function is called often, so print the fixme only once */
1659     if(!hide)
1660     {
1661         FIXME("iface %p, flags %#x, event %p stub!\n", iface, Flags, event);
1662         hide = TRUE;
1663     }
1664
1665     /* MSDN says DDWAITVB_BLOCKBEGINEVENT is not supported */
1666     if(Flags & DDWAITVB_BLOCKBEGINEVENT)
1667         return DDERR_UNSUPPORTED; /* unchecked */
1668
1669     return DD_OK;
1670 }
1671
1672 static HRESULT WINAPI ddraw4_WaitForVerticalBlank(IDirectDraw4 *iface, DWORD flags, HANDLE event)
1673 {
1674     TRACE("iface %p, flags %#x, event %p.\n", iface, flags, event);
1675
1676     return ddraw7_WaitForVerticalBlank((IDirectDraw7 *)ddraw_from_ddraw4(iface), flags, event);
1677 }
1678
1679 static HRESULT WINAPI ddraw3_WaitForVerticalBlank(IDirectDraw3 *iface, DWORD flags, HANDLE event)
1680 {
1681     TRACE("iface %p, flags %#x, event %p.\n", iface, flags, event);
1682
1683     return ddraw7_WaitForVerticalBlank((IDirectDraw7 *)ddraw_from_ddraw3(iface), flags, event);
1684 }
1685
1686 static HRESULT WINAPI ddraw2_WaitForVerticalBlank(IDirectDraw2 *iface, DWORD flags, HANDLE event)
1687 {
1688     TRACE("iface %p, flags %#x, event %p.\n", iface, flags, event);
1689
1690     return ddraw7_WaitForVerticalBlank((IDirectDraw7 *)ddraw_from_ddraw2(iface), flags, event);
1691 }
1692
1693 static HRESULT WINAPI ddraw1_WaitForVerticalBlank(IDirectDraw *iface, DWORD flags, HANDLE event)
1694 {
1695     TRACE("iface %p, flags %#x, event %p.\n", iface, flags, event);
1696
1697     return ddraw7_WaitForVerticalBlank((IDirectDraw7 *)ddraw_from_ddraw1(iface), flags, event);
1698 }
1699
1700 /*****************************************************************************
1701  * IDirectDraw7::GetScanLine
1702  *
1703  * Returns the scan line that is being drawn on the monitor
1704  *
1705  * Parameters:
1706  *  Scanline: Address to write the scan line value to
1707  *
1708  * Returns:
1709  *  Always returns DD_OK
1710  *
1711  *****************************************************************************/
1712 static HRESULT WINAPI ddraw7_GetScanLine(IDirectDraw7 *iface, DWORD *Scanline)
1713 {
1714     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
1715     static BOOL hide = FALSE;
1716     WINED3DDISPLAYMODE Mode;
1717
1718     TRACE("iface %p, line %p.\n", iface, Scanline);
1719
1720     /* This function is called often, so print the fixme only once */
1721     EnterCriticalSection(&ddraw_cs);
1722     if(!hide)
1723     {
1724         FIXME("iface %p, line %p partial stub!\n", iface, Scanline);
1725         hide = TRUE;
1726     }
1727
1728     IWineD3DDevice_GetDisplayMode(This->wineD3DDevice,
1729                                   0,
1730                                   &Mode);
1731
1732     /* Fake the line sweeping of the monitor */
1733     /* FIXME: We should synchronize with a source to keep the refresh rate */
1734     *Scanline = This->cur_scanline++;
1735     /* Assume 20 scan lines in the vertical blank */
1736     if (This->cur_scanline >= Mode.Height + 20)
1737         This->cur_scanline = 0;
1738
1739     LeaveCriticalSection(&ddraw_cs);
1740     return DD_OK;
1741 }
1742
1743 static HRESULT WINAPI ddraw4_GetScanLine(IDirectDraw4 *iface, DWORD *line)
1744 {
1745     TRACE("iface %p, line %p.\n", iface, line);
1746
1747     return ddraw7_GetScanLine((IDirectDraw7 *)ddraw_from_ddraw4(iface), line);
1748 }
1749
1750 static HRESULT WINAPI ddraw3_GetScanLine(IDirectDraw3 *iface, DWORD *line)
1751 {
1752     TRACE("iface %p, line %p.\n", iface, line);
1753
1754     return ddraw7_GetScanLine((IDirectDraw7 *)ddraw_from_ddraw3(iface), line);
1755 }
1756
1757 static HRESULT WINAPI ddraw2_GetScanLine(IDirectDraw2 *iface, DWORD *line)
1758 {
1759     TRACE("iface %p, line %p.\n", iface, line);
1760
1761     return ddraw7_GetScanLine((IDirectDraw7 *)ddraw_from_ddraw2(iface), line);
1762 }
1763
1764 static HRESULT WINAPI ddraw1_GetScanLine(IDirectDraw *iface, DWORD *line)
1765 {
1766     TRACE("iface %p, line %p.\n", iface, line);
1767
1768     return ddraw7_GetScanLine((IDirectDraw7 *)ddraw_from_ddraw1(iface), line);
1769 }
1770
1771 /*****************************************************************************
1772  * IDirectDraw7::TestCooperativeLevel
1773  *
1774  * Informs the application about the state of the video adapter, depending
1775  * on the cooperative level
1776  *
1777  * Returns:
1778  *  DD_OK if the device is in a sane state
1779  *  DDERR_NOEXCLUSIVEMODE or DDERR_EXCLUSIVEMODEALREADYSET
1780  *  if the state is not correct(See below)
1781  *
1782  *****************************************************************************/
1783 static HRESULT WINAPI ddraw7_TestCooperativeLevel(IDirectDraw7 *iface)
1784 {
1785     TRACE("iface %p.\n", iface);
1786
1787     return DD_OK;
1788 }
1789
1790 static HRESULT WINAPI ddraw4_TestCooperativeLevel(IDirectDraw4 *iface)
1791 {
1792     TRACE("iface %p.\n", iface);
1793
1794     return ddraw7_TestCooperativeLevel((IDirectDraw7 *)ddraw_from_ddraw4(iface));
1795 }
1796
1797 /*****************************************************************************
1798  * IDirectDraw7::GetGDISurface
1799  *
1800  * Returns the surface that GDI is treating as the primary surface.
1801  * For Wine this is the front buffer
1802  *
1803  * Params:
1804  *  GDISurface: Address to write the surface pointer to
1805  *
1806  * Returns:
1807  *  DD_OK if the surface was found
1808  *  DDERR_NOTFOUND if the GDI surface wasn't found
1809  *
1810  *****************************************************************************/
1811 static HRESULT WINAPI ddraw7_GetGDISurface(IDirectDraw7 *iface, IDirectDrawSurface7 **GDISurface)
1812 {
1813     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
1814     IWineD3DSurface *Surf;
1815     IDirectDrawSurface7 *ddsurf;
1816     HRESULT hr;
1817     DDSCAPS2 ddsCaps;
1818
1819     TRACE("iface %p, surface %p.\n", iface, GDISurface);
1820
1821     /* Get the back buffer from the wineD3DDevice and search its
1822      * attached surfaces for the front buffer
1823      */
1824     EnterCriticalSection(&ddraw_cs);
1825     hr = IWineD3DDevice_GetBackBuffer(This->wineD3DDevice,
1826                                       0, /* SwapChain */
1827                                       0, /* first back buffer*/
1828                                       WINED3DBACKBUFFER_TYPE_MONO,
1829                                       &Surf);
1830
1831     if( (hr != D3D_OK) ||
1832         (!Surf) )
1833     {
1834         ERR("IWineD3DDevice::GetBackBuffer failed\n");
1835         LeaveCriticalSection(&ddraw_cs);
1836         return DDERR_NOTFOUND;
1837     }
1838
1839     ddsurf = IWineD3DSurface_GetParent(Surf);
1840     IWineD3DSurface_Release(Surf);
1841
1842     /* Find the front buffer */
1843     ddsCaps.dwCaps = DDSCAPS_FRONTBUFFER;
1844     hr = IDirectDrawSurface7_GetAttachedSurface(ddsurf,
1845                                                 &ddsCaps,
1846                                                 GDISurface);
1847     if(hr != DD_OK)
1848     {
1849         ERR("IDirectDrawSurface7::GetAttachedSurface failed, hr = %x\n", hr);
1850     }
1851
1852     /* The AddRef is OK this time */
1853     LeaveCriticalSection(&ddraw_cs);
1854     return hr;
1855 }
1856
1857 static HRESULT WINAPI ddraw4_GetGDISurface(IDirectDraw4 *iface, IDirectDrawSurface4 **surface)
1858 {
1859     TRACE("iface %p, surface %p.\n", iface, surface);
1860
1861     return ddraw7_GetGDISurface((IDirectDraw7 *)ddraw_from_ddraw4(iface), (IDirectDrawSurface7 **)surface);
1862 }
1863
1864 static HRESULT WINAPI ddraw3_GetGDISurface(IDirectDraw3 *iface, IDirectDrawSurface **surface)
1865 {
1866     IDirectDrawSurface7 *surface7;
1867     HRESULT hr;
1868
1869     TRACE("iface %p, surface %p.\n", iface, surface);
1870
1871     hr = ddraw7_GetGDISurface((IDirectDraw7 *)ddraw_from_ddraw3(iface), &surface7);
1872     *surface = surface7 ? (IDirectDrawSurface *)&((IDirectDrawSurfaceImpl *)surface7)->IDirectDrawSurface3_vtbl : NULL;
1873
1874     return hr;
1875 }
1876
1877 static HRESULT WINAPI ddraw2_GetGDISurface(IDirectDraw2 *iface, IDirectDrawSurface **surface)
1878 {
1879     IDirectDrawSurface7 *surface7;
1880     HRESULT hr;
1881
1882     TRACE("iface %p, surface %p.\n", iface, surface);
1883
1884     hr = ddraw7_GetGDISurface((IDirectDraw7 *)ddraw_from_ddraw2(iface), &surface7);
1885     *surface = surface7 ? (IDirectDrawSurface *)&((IDirectDrawSurfaceImpl *)surface7)->IDirectDrawSurface3_vtbl : NULL;
1886
1887     return hr;
1888 }
1889
1890 static HRESULT WINAPI ddraw1_GetGDISurface(IDirectDraw *iface, IDirectDrawSurface **surface)
1891 {
1892     IDirectDrawSurface7 *surface7;
1893     HRESULT hr;
1894
1895     TRACE("iface %p, surface %p.\n", iface, surface);
1896
1897     hr = ddraw7_GetGDISurface((IDirectDraw7 *)ddraw_from_ddraw1(iface), &surface7);
1898     *surface = surface7 ? (IDirectDrawSurface *)&((IDirectDrawSurfaceImpl *)surface7)->IDirectDrawSurface3_vtbl : NULL;
1899
1900     return hr;
1901 }
1902
1903 struct displaymodescallback_context
1904 {
1905     LPDDENUMMODESCALLBACK func;
1906     void *context;
1907 };
1908
1909 static HRESULT CALLBACK EnumDisplayModesCallbackThunk(DDSURFACEDESC2 *surface_desc, void *context)
1910 {
1911     struct displaymodescallback_context *cbcontext = context;
1912     DDSURFACEDESC desc;
1913
1914     memcpy(&desc, surface_desc, sizeof(desc));
1915     desc.dwSize = sizeof(desc);
1916
1917     return cbcontext->func(&desc, cbcontext->context);
1918 }
1919
1920 /*****************************************************************************
1921  * IDirectDraw7::EnumDisplayModes
1922  *
1923  * Enumerates the supported Display modes. The modes can be filtered with
1924  * the DDSD parameter.
1925  *
1926  * Params:
1927  *  Flags: can be DDEDM_REFRESHRATES and DDEDM_STANDARDVGAMODES
1928  *  DDSD: Surface description to filter the modes
1929  *  Context: Pointer passed back to the callback function
1930  *  cb: Application-provided callback function
1931  *
1932  * Returns:
1933  *  DD_OK on success
1934  *  DDERR_INVALIDPARAMS if the callback wasn't set
1935  *
1936  *****************************************************************************/
1937 static HRESULT WINAPI ddraw7_EnumDisplayModes(IDirectDraw7 *iface, DWORD Flags,
1938         DDSURFACEDESC2 *DDSD, void *Context, LPDDENUMMODESCALLBACK2 cb)
1939 {
1940     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
1941     unsigned int modenum, fmt;
1942     enum wined3d_format_id pixelformat = WINED3DFMT_UNKNOWN;
1943     WINED3DDISPLAYMODE mode;
1944     DDSURFACEDESC2 callback_sd;
1945     WINED3DDISPLAYMODE *enum_modes = NULL;
1946     unsigned enum_mode_count = 0, enum_mode_array_size = 0;
1947
1948     static const enum wined3d_format_id checkFormatList[] =
1949     {
1950         WINED3DFMT_B8G8R8X8_UNORM,
1951         WINED3DFMT_B5G6R5_UNORM,
1952         WINED3DFMT_P8_UINT,
1953     };
1954
1955     TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
1956             iface, Flags, DDSD, Context, cb);
1957
1958     EnterCriticalSection(&ddraw_cs);
1959     /* This looks sane */
1960     if(!cb)
1961     {
1962         LeaveCriticalSection(&ddraw_cs);
1963         return DDERR_INVALIDPARAMS;
1964     }
1965
1966     if(DDSD)
1967     {
1968         if ((DDSD->dwFlags & DDSD_PIXELFORMAT) && (DDSD->u4.ddpfPixelFormat.dwFlags & DDPF_RGB) )
1969             pixelformat = PixelFormat_DD2WineD3D(&DDSD->u4.ddpfPixelFormat);
1970     }
1971
1972     if(!(Flags & DDEDM_REFRESHRATES))
1973     {
1974         enum_mode_array_size = 16;
1975         enum_modes = HeapAlloc(GetProcessHeap(), 0, sizeof(WINED3DDISPLAYMODE) * enum_mode_array_size);
1976         if (!enum_modes)
1977         {
1978             ERR("Out of memory\n");
1979             LeaveCriticalSection(&ddraw_cs);
1980             return DDERR_OUTOFMEMORY;
1981         }
1982     }
1983
1984     for(fmt = 0; fmt < (sizeof(checkFormatList) / sizeof(checkFormatList[0])); fmt++)
1985     {
1986         if(pixelformat != WINED3DFMT_UNKNOWN && checkFormatList[fmt] != pixelformat)
1987         {
1988             continue;
1989         }
1990
1991         modenum = 0;
1992         while(IWineD3D_EnumAdapterModes(This->wineD3D,
1993                                         WINED3DADAPTER_DEFAULT,
1994                                         checkFormatList[fmt],
1995                                         modenum++,
1996                                         &mode) == WINED3D_OK)
1997         {
1998             if(DDSD)
1999             {
2000                 if(DDSD->dwFlags & DDSD_WIDTH && mode.Width != DDSD->dwWidth) continue;
2001                 if(DDSD->dwFlags & DDSD_HEIGHT && mode.Height != DDSD->dwHeight) continue;
2002             }
2003
2004             if(!(Flags & DDEDM_REFRESHRATES))
2005             {
2006                 /* DX docs state EnumDisplayMode should return only unique modes. If DDEDM_REFRESHRATES is not set, refresh
2007                  * rate doesn't matter when determining if the mode is unique. So modes only differing in refresh rate have
2008                  * to be reduced to a single unique result in such case.
2009                  */
2010                 BOOL found = FALSE;
2011                 unsigned i;
2012
2013                 for (i = 0; i < enum_mode_count; i++)
2014                 {
2015                     if(enum_modes[i].Width == mode.Width && enum_modes[i].Height == mode.Height &&
2016                        enum_modes[i].Format == mode.Format)
2017                     {
2018                         found = TRUE;
2019                         break;
2020                     }
2021                 }
2022
2023                 if(found) continue;
2024             }
2025
2026             memset(&callback_sd, 0, sizeof(callback_sd));
2027             callback_sd.dwSize = sizeof(callback_sd);
2028             callback_sd.u4.ddpfPixelFormat.dwSize = sizeof(DDPIXELFORMAT);
2029
2030             callback_sd.dwFlags = DDSD_HEIGHT|DDSD_WIDTH|DDSD_PIXELFORMAT|DDSD_PITCH;
2031             if(Flags & DDEDM_REFRESHRATES)
2032             {
2033                 callback_sd.dwFlags |= DDSD_REFRESHRATE;
2034                 callback_sd.u2.dwRefreshRate = mode.RefreshRate;
2035             }
2036
2037             callback_sd.dwWidth = mode.Width;
2038             callback_sd.dwHeight = mode.Height;
2039
2040             PixelFormat_WineD3DtoDD(&callback_sd.u4.ddpfPixelFormat, mode.Format);
2041
2042             /* Calc pitch and DWORD align like MSDN says */
2043             callback_sd.u1.lPitch = (callback_sd.u4.ddpfPixelFormat.u1.dwRGBBitCount / 8) * mode.Width;
2044             callback_sd.u1.lPitch = (callback_sd.u1.lPitch + 3) & ~3;
2045
2046             TRACE("Enumerating %dx%dx%d @%d\n", callback_sd.dwWidth, callback_sd.dwHeight, callback_sd.u4.ddpfPixelFormat.u1.dwRGBBitCount,
2047               callback_sd.u2.dwRefreshRate);
2048
2049             if(cb(&callback_sd, Context) == DDENUMRET_CANCEL)
2050             {
2051                 TRACE("Application asked to terminate the enumeration\n");
2052                 HeapFree(GetProcessHeap(), 0, enum_modes);
2053                 LeaveCriticalSection(&ddraw_cs);
2054                 return DD_OK;
2055             }
2056
2057             if(!(Flags & DDEDM_REFRESHRATES))
2058             {
2059                 if (enum_mode_count == enum_mode_array_size)
2060                 {
2061                     WINED3DDISPLAYMODE *new_enum_modes;
2062
2063                     enum_mode_array_size *= 2;
2064                     new_enum_modes = HeapReAlloc(GetProcessHeap(), 0, enum_modes, sizeof(WINED3DDISPLAYMODE) * enum_mode_array_size);
2065
2066                     if (!new_enum_modes)
2067                     {
2068                         ERR("Out of memory\n");
2069                         HeapFree(GetProcessHeap(), 0, enum_modes);
2070                         LeaveCriticalSection(&ddraw_cs);
2071                         return DDERR_OUTOFMEMORY;
2072                     }
2073
2074                     enum_modes = new_enum_modes;
2075                 }
2076
2077                 enum_modes[enum_mode_count++] = mode;
2078             }
2079         }
2080     }
2081
2082     TRACE("End of enumeration\n");
2083     HeapFree(GetProcessHeap(), 0, enum_modes);
2084     LeaveCriticalSection(&ddraw_cs);
2085     return DD_OK;
2086 }
2087
2088 static HRESULT WINAPI ddraw4_EnumDisplayModes(IDirectDraw4 *iface, DWORD flags,
2089         DDSURFACEDESC2 *surface_desc, void *context, LPDDENUMMODESCALLBACK2 callback)
2090 {
2091     TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
2092             iface, flags, surface_desc, context, callback);
2093
2094     return ddraw7_EnumDisplayModes((IDirectDraw7 *)ddraw_from_ddraw4(iface), flags,
2095             surface_desc, context, callback);
2096 }
2097
2098 static HRESULT WINAPI ddraw3_EnumDisplayModes(IDirectDraw3 *iface, DWORD flags,
2099         DDSURFACEDESC *surface_desc, void *context, LPDDENUMMODESCALLBACK callback)
2100 {
2101     struct displaymodescallback_context cbcontext;
2102
2103     TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
2104             iface, flags, surface_desc, context, callback);
2105
2106     cbcontext.func = callback;
2107     cbcontext.context = context;
2108
2109     return ddraw7_EnumDisplayModes((IDirectDraw7 *)ddraw_from_ddraw3(iface), flags,
2110             (DDSURFACEDESC2 *)surface_desc, &cbcontext, EnumDisplayModesCallbackThunk);
2111 }
2112
2113 static HRESULT WINAPI ddraw2_EnumDisplayModes(IDirectDraw2 *iface, DWORD flags,
2114         DDSURFACEDESC *surface_desc, void *context, LPDDENUMMODESCALLBACK callback)
2115 {
2116     struct displaymodescallback_context cbcontext;
2117
2118     TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
2119             iface, flags, surface_desc, context, callback);
2120
2121     cbcontext.func = callback;
2122     cbcontext.context = context;
2123
2124     return ddraw7_EnumDisplayModes((IDirectDraw7 *)ddraw_from_ddraw2(iface), flags,
2125             (DDSURFACEDESC2 *)surface_desc, &cbcontext, EnumDisplayModesCallbackThunk);
2126 }
2127
2128 static HRESULT WINAPI ddraw1_EnumDisplayModes(IDirectDraw *iface, DWORD flags,
2129         DDSURFACEDESC *surface_desc, void *context, LPDDENUMMODESCALLBACK callback)
2130 {
2131     struct displaymodescallback_context cbcontext;
2132
2133     TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
2134             iface, flags, surface_desc, context, callback);
2135
2136     cbcontext.func = callback;
2137     cbcontext.context = context;
2138
2139     return ddraw7_EnumDisplayModes((IDirectDraw7 *)ddraw_from_ddraw1(iface), flags,
2140             (DDSURFACEDESC2 *)surface_desc, &cbcontext, EnumDisplayModesCallbackThunk);
2141 }
2142
2143 /*****************************************************************************
2144  * IDirectDraw7::EvaluateMode
2145  *
2146  * Used with IDirectDraw7::StartModeTest to test video modes.
2147  * EvaluateMode is used to pass or fail a mode, and continue with the next
2148  * mode
2149  *
2150  * Params:
2151  *  Flags: DDEM_MODEPASSED or DDEM_MODEFAILED
2152  *  Timeout: Returns the amount of seconds left before the mode would have
2153  *           been failed automatically
2154  *
2155  * Returns:
2156  *  This implementation always DD_OK, because it's a stub
2157  *
2158  *****************************************************************************/
2159 static HRESULT WINAPI ddraw7_EvaluateMode(IDirectDraw7 *iface, DWORD Flags, DWORD *Timeout)
2160 {
2161     FIXME("iface %p, flags %#x, timeout %p stub!\n", iface, Flags, Timeout);
2162
2163     /* When implementing this, implement it in WineD3D */
2164
2165     return DD_OK;
2166 }
2167
2168 /*****************************************************************************
2169  * IDirectDraw7::GetDeviceIdentifier
2170  *
2171  * Returns the device identifier, which gives information about the driver
2172  * Our device identifier is defined at the beginning of this file.
2173  *
2174  * Params:
2175  *  DDDI: Address for the returned structure
2176  *  Flags: Can be DDGDI_GETHOSTIDENTIFIER
2177  *
2178  * Returns:
2179  *  On success it returns DD_OK
2180  *  DDERR_INVALIDPARAMS if DDDI is NULL
2181  *
2182  *****************************************************************************/
2183 static HRESULT WINAPI ddraw7_GetDeviceIdentifier(IDirectDraw7 *iface,
2184         DDDEVICEIDENTIFIER2 *DDDI, DWORD Flags)
2185 {
2186     TRACE("iface %p, device_identifier %p, flags %#x.\n", iface, DDDI, Flags);
2187
2188     if(!DDDI)
2189         return DDERR_INVALIDPARAMS;
2190
2191     /* The DDGDI_GETHOSTIDENTIFIER returns the information about the 2D
2192      * host adapter, if there's a secondary 3D adapter. This doesn't apply
2193      * to any modern hardware, nor is it interesting for Wine, so ignore it.
2194      * Size of DDDEVICEIDENTIFIER2 may be aligned to 8 bytes and thus 4
2195      * bytes too long. So only copy the relevant part of the structure
2196      */
2197
2198     memcpy(DDDI, &deviceidentifier, FIELD_OFFSET(DDDEVICEIDENTIFIER2, dwWHQLLevel) + sizeof(DWORD));
2199     return DD_OK;
2200 }
2201
2202 static HRESULT WINAPI ddraw4_GetDeviceIdentifier(IDirectDraw4 *iface,
2203         DDDEVICEIDENTIFIER *identifier, DWORD flags)
2204 {
2205     DDDEVICEIDENTIFIER2 identifier2;
2206     HRESULT hr;
2207
2208     TRACE("iface %p, identifier %p, flags %#x.\n", iface, identifier, flags);
2209
2210     hr = ddraw7_GetDeviceIdentifier((IDirectDraw7 *)ddraw_from_ddraw4(iface), &identifier2, flags);
2211     DDRAW_Convert_DDDEVICEIDENTIFIER_2_To_1(&identifier2, identifier);
2212
2213     return hr;
2214 }
2215
2216 /*****************************************************************************
2217  * IDirectDraw7::GetSurfaceFromDC
2218  *
2219  * Returns the Surface for a GDI device context handle.
2220  * Is this related to IDirectDrawSurface::GetDC ???
2221  *
2222  * Params:
2223  *  hdc: hdc to return the surface for
2224  *  Surface: Address to write the surface pointer to
2225  *
2226  * Returns:
2227  *  Always returns DD_OK because it's a stub
2228  *
2229  *****************************************************************************/
2230 static HRESULT WINAPI ddraw7_GetSurfaceFromDC(IDirectDraw7 *iface, HDC hdc, IDirectDrawSurface7 **Surface)
2231 {
2232     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
2233     IWineD3DSurface *wined3d_surface;
2234     HRESULT hr;
2235
2236     TRACE("iface %p, dc %p, surface %p.\n", iface, hdc, Surface);
2237
2238     if (!Surface) return E_INVALIDARG;
2239
2240     hr = IWineD3DDevice_GetSurfaceFromDC(This->wineD3DDevice, hdc, &wined3d_surface);
2241     if (FAILED(hr))
2242     {
2243         TRACE("No surface found for dc %p.\n", hdc);
2244         *Surface = NULL;
2245         return DDERR_NOTFOUND;
2246     }
2247
2248     *Surface = IWineD3DSurface_GetParent(wined3d_surface);
2249     IDirectDrawSurface7_AddRef(*Surface);
2250     TRACE("Returning surface %p.\n", Surface);
2251     return DD_OK;
2252 }
2253
2254 static HRESULT WINAPI ddraw4_GetSurfaceFromDC(IDirectDraw4 *iface, HDC dc, IDirectDrawSurface4 **surface)
2255 {
2256     IDirectDrawSurface7 *surface7;
2257     HRESULT hr;
2258
2259     TRACE("iface %p, dc %p, surface %p.\n", iface, dc, surface);
2260
2261     if (!surface) return E_INVALIDARG;
2262
2263     hr = ddraw7_GetSurfaceFromDC((IDirectDraw7 *)ddraw_from_ddraw4(iface), dc, &surface7);
2264     *surface = surface7 ? (IDirectDrawSurface4 *)&((IDirectDrawSurfaceImpl *)surface7)->IDirectDrawSurface3_vtbl : NULL;
2265
2266     return hr;
2267 }
2268
2269 static HRESULT WINAPI ddraw3_GetSurfaceFromDC(IDirectDraw3 *iface, HDC dc, IDirectDrawSurface **surface)
2270 {
2271     TRACE("iface %p, dc %p, surface %p.\n", iface, dc, surface);
2272
2273     return ddraw7_GetSurfaceFromDC((IDirectDraw7 *)ddraw_from_ddraw3(iface),
2274             dc, (IDirectDrawSurface7 **)surface);
2275 }
2276
2277 /*****************************************************************************
2278  * IDirectDraw7::RestoreAllSurfaces
2279  *
2280  * Calls the restore method of all surfaces
2281  *
2282  * Params:
2283  *
2284  * Returns:
2285  *  Always returns DD_OK because it's a stub
2286  *
2287  *****************************************************************************/
2288 static HRESULT WINAPI ddraw7_RestoreAllSurfaces(IDirectDraw7 *iface)
2289 {
2290     FIXME("iface %p stub!\n", iface);
2291
2292     /* This isn't hard to implement: Enumerate all WineD3D surfaces,
2293      * get their parent and call their restore method. Do not implement
2294      * it in WineD3D, as restoring a surface means re-creating the
2295      * WineD3DDSurface
2296      */
2297     return DD_OK;
2298 }
2299
2300 static HRESULT WINAPI ddraw4_RestoreAllSurfaces(IDirectDraw4 *iface)
2301 {
2302     TRACE("iface %p.\n", iface);
2303
2304     return ddraw7_RestoreAllSurfaces((IDirectDraw7 *)ddraw_from_ddraw4(iface));
2305 }
2306
2307 /*****************************************************************************
2308  * IDirectDraw7::StartModeTest
2309  *
2310  * Tests the specified video modes to update the system registry with
2311  * refresh rate information. StartModeTest starts the mode test,
2312  * EvaluateMode is used to fail or pass a mode. If EvaluateMode
2313  * isn't called within 15 seconds, the mode is failed automatically
2314  *
2315  * As refresh rates are handled by the X server, I don't think this
2316  * Method is important
2317  *
2318  * Params:
2319  *  Modes: An array of mode specifications
2320  *  NumModes: The number of modes in Modes
2321  *  Flags: Some flags...
2322  *
2323  * Returns:
2324  *  Returns DDERR_TESTFINISHED if flags contains DDSMT_ISTESTREQUIRED,
2325  *  if no modes are passed, DDERR_INVALIDPARAMS is returned,
2326  *  otherwise DD_OK
2327  *
2328  *****************************************************************************/
2329 static HRESULT WINAPI ddraw7_StartModeTest(IDirectDraw7 *iface, SIZE *Modes, DWORD NumModes, DWORD Flags)
2330 {
2331     FIXME("iface %p, modes %p, mode_count %u, flags %#x partial stub!\n",
2332             iface, Modes, NumModes, Flags);
2333
2334     /* This looks sane */
2335     if( (!Modes) || (NumModes == 0) ) return DDERR_INVALIDPARAMS;
2336
2337     /* DDSMT_ISTESTREQUIRED asks if a mode test is necessary.
2338      * As it is not, DDERR_TESTFINISHED is returned
2339      * (hopefully that's correct
2340      *
2341     if(Flags & DDSMT_ISTESTREQUIRED) return DDERR_TESTFINISHED;
2342      * well, that value doesn't (yet) exist in the wine headers, so ignore it
2343      */
2344
2345     return DD_OK;
2346 }
2347
2348 /*****************************************************************************
2349  * ddraw_recreate_surfaces_cb
2350  *
2351  * Enumeration callback for ddraw_recreate_surface.
2352  * It re-recreates the WineD3DSurface. It's pretty straightforward
2353  *
2354  *****************************************************************************/
2355 HRESULT WINAPI ddraw_recreate_surfaces_cb(IDirectDrawSurface7 *surf, DDSURFACEDESC2 *desc, void *Context)
2356 {
2357     IDirectDrawSurfaceImpl *surfImpl = (IDirectDrawSurfaceImpl *)surf;
2358     IDirectDrawImpl *This = surfImpl->ddraw;
2359     IWineD3DSurface *wineD3DSurface;
2360     IWineD3DSwapChain *swapchain;
2361     void *parent;
2362     HRESULT hr;
2363     IWineD3DClipper *clipper = NULL;
2364
2365     WINED3DSURFACE_DESC     Desc;
2366     enum wined3d_format_id Format;
2367     DWORD                   Usage;
2368     WINED3DPOOL             Pool;
2369
2370     WINED3DMULTISAMPLE_TYPE MultiSampleType;
2371     DWORD                   MultiSampleQuality;
2372     UINT                    Width;
2373     UINT                    Height;
2374
2375     TRACE("surface %p, surface_desc %p, context %p.\n",
2376             surf, desc, Context);
2377
2378     /* For the enumeration */
2379     IDirectDrawSurface7_Release(surf);
2380
2381     if(surfImpl->ImplType == This->ImplType) return DDENUMRET_OK; /* Continue */
2382
2383     /* Get the objects */
2384     swapchain = surfImpl->wineD3DSwapChain;
2385     surfImpl->wineD3DSwapChain = NULL;
2386     wineD3DSurface = surfImpl->WineD3DSurface;
2387
2388     /* get the clipper */
2389     IWineD3DSurface_GetClipper(wineD3DSurface, &clipper);
2390
2391     /* Get the surface properties */
2392     IWineD3DSurface_GetDesc(wineD3DSurface, &Desc);
2393
2394     Format = Desc.format;
2395     Usage = Desc.usage;
2396     Pool = Desc.pool;
2397     MultiSampleType = Desc.multisample_type;
2398     MultiSampleQuality = Desc.multisample_quality;
2399     Width = Desc.width;
2400     Height = Desc.height;
2401
2402     parent = IWineD3DSurface_GetParent(wineD3DSurface);
2403     hr = IWineD3DDevice_CreateSurface(This->wineD3DDevice, Width, Height, Format, TRUE /* Lockable */,
2404             FALSE /* Discard */, surfImpl->mipmap_level, Usage, Pool, MultiSampleType, MultiSampleQuality,
2405             This->ImplType, parent, &ddraw_null_wined3d_parent_ops, &surfImpl->WineD3DSurface);
2406     if (FAILED(hr))
2407     {
2408         surfImpl->WineD3DSurface = wineD3DSurface;
2409         return hr;
2410     }
2411
2412     IWineD3DSurface_SetClipper(surfImpl->WineD3DSurface, clipper);
2413
2414     /* TODO: Copy the surface content, except for render targets */
2415
2416     /* If there's a swapchain, it owns the wined3d surfaces. So Destroy
2417      * the swapchain
2418      */
2419     if(swapchain) {
2420         /* The backbuffers have the swapchain set as well, but the primary
2421          * owns it and destroys it
2422          */
2423         if(surfImpl->surface_desc.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE) {
2424             IWineD3DDevice_UninitGDI(This->wineD3DDevice, D3D7CB_DestroySwapChain);
2425         }
2426         surfImpl->isRenderTarget = FALSE;
2427     } else {
2428         if(IWineD3DSurface_Release(wineD3DSurface) == 0)
2429             TRACE("Surface released successful, next surface\n");
2430         else
2431             ERR("Something's still holding the old WineD3DSurface\n");
2432     }
2433
2434     surfImpl->ImplType = This->ImplType;
2435
2436     if(clipper)
2437     {
2438         IWineD3DClipper_Release(clipper);
2439     }
2440     return DDENUMRET_OK;
2441 }
2442
2443 /*****************************************************************************
2444  * ddraw_recreate_surfaces
2445  *
2446  * A function, that converts all wineD3DSurfaces to the new implementation type
2447  * It enumerates all surfaces with IWineD3DDevice::EnumSurfaces, creates a
2448  * new WineD3DSurface, copies the content and releases the old surface
2449  *
2450  *****************************************************************************/
2451 static HRESULT ddraw_recreate_surfaces(IDirectDrawImpl *This)
2452 {
2453     DDSURFACEDESC2 desc;
2454     TRACE("(%p): Switch to implementation %d\n", This, This->ImplType);
2455
2456     if(This->ImplType != SURFACE_OPENGL && This->d3d_initialized)
2457     {
2458         /* Should happen almost never */
2459         FIXME("(%p) Switching to non-opengl surfaces with d3d started. Is this a bug?\n", This);
2460         /* Shutdown d3d */
2461         IWineD3DDevice_Uninit3D(This->wineD3DDevice, D3D7CB_DestroySwapChain);
2462     }
2463     /* Contrary: D3D starting is handled by the caller, because it knows the render target */
2464
2465     memset(&desc, 0, sizeof(desc));
2466     desc.dwSize = sizeof(desc);
2467
2468     return IDirectDraw7_EnumSurfaces((IDirectDraw7 *)This, 0, &desc, This, ddraw_recreate_surfaces_cb);
2469 }
2470
2471 ULONG WINAPI D3D7CB_DestroySwapChain(IWineD3DSwapChain *pSwapChain)
2472 {
2473     IUnknown *swapChainParent;
2474
2475     TRACE("swapchain %p.\n", pSwapChain);
2476
2477     swapChainParent = IWineD3DSwapChain_GetParent(pSwapChain);
2478     return IUnknown_Release(swapChainParent);
2479 }
2480
2481 /*****************************************************************************
2482  * ddraw_create_surface
2483  *
2484  * A helper function for IDirectDraw7::CreateSurface. It creates a new surface
2485  * with the passed parameters.
2486  *
2487  * Params:
2488  *  DDSD: Description of the surface to create
2489  *  Surf: Address to store the interface pointer at
2490  *
2491  * Returns:
2492  *  DD_OK on success
2493  *
2494  *****************************************************************************/
2495 static HRESULT ddraw_create_surface(IDirectDrawImpl *This, DDSURFACEDESC2 *pDDSD,
2496         IDirectDrawSurfaceImpl **ppSurf, UINT level)
2497 {
2498     WINED3DSURFTYPE ImplType = This->ImplType;
2499     HRESULT hr;
2500
2501     TRACE("ddraw %p, surface_desc %p, surface %p, level %u.\n",
2502             This, pDDSD, ppSurf, level);
2503
2504     if (TRACE_ON(ddraw))
2505     {
2506         TRACE(" (%p) Requesting surface desc :\n", This);
2507         DDRAW_dump_surface_desc(pDDSD);
2508     }
2509
2510     /* Select the surface type, if it wasn't choosen yet */
2511     if(ImplType == SURFACE_UNKNOWN)
2512     {
2513         /* Use GL Surfaces if a D3DDEVICE Surface is requested */
2514         if(pDDSD->ddsCaps.dwCaps & DDSCAPS_3DDEVICE)
2515         {
2516             TRACE("(%p) Choosing GL surfaces because a 3DDEVICE Surface was requested\n", This);
2517             ImplType = SURFACE_OPENGL;
2518         }
2519
2520         /* Otherwise use GDI surfaces for now */
2521         else
2522         {
2523             TRACE("(%p) Choosing GDI surfaces for 2D rendering\n", This);
2524             ImplType = SURFACE_GDI;
2525         }
2526
2527         /* Policy if all surface implementations are available:
2528          * First, check if a default type was set with winecfg. If not,
2529          * try Xrender surfaces, and use them if they work. Next, check if
2530          * accelerated OpenGL is available, and use GL surfaces in this
2531          * case. If all else fails, use GDI surfaces. If a 3DDEVICE surface
2532          * was created, always use OpenGL surfaces.
2533          *
2534          * (Note: Xrender surfaces are not implemented for now, the
2535          * unaccelerated implementation uses GDI to render in Software)
2536          */
2537
2538         /* Store the type. If it needs to be changed, all WineD3DSurfaces have to
2539          * be re-created. This could be done with IDirectDrawSurface7::Restore
2540          */
2541         This->ImplType = ImplType;
2542     }
2543     else
2544     {
2545         if ((pDDSD->ddsCaps.dwCaps & DDSCAPS_3DDEVICE)
2546                 && (This->ImplType != SURFACE_OPENGL)
2547                 && DefaultSurfaceType == SURFACE_UNKNOWN)
2548         {
2549             /* We have to change to OpenGL,
2550              * and re-create all WineD3DSurfaces
2551              */
2552             ImplType = SURFACE_OPENGL;
2553             This->ImplType = ImplType;
2554             TRACE("(%p) Re-creating all surfaces\n", This);
2555             ddraw_recreate_surfaces(This);
2556             TRACE("(%p) Done recreating all surfaces\n", This);
2557         }
2558         else if(This->ImplType != SURFACE_OPENGL && pDDSD->ddsCaps.dwCaps & DDSCAPS_3DDEVICE)
2559         {
2560             WARN("The application requests a 3D capable surface, but a non-opengl surface was set in the registry\n");
2561             /* Do not fail surface creation, only fail 3D device creation */
2562         }
2563     }
2564
2565     /* Create the Surface object */
2566     *ppSurf = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirectDrawSurfaceImpl));
2567     if(!*ppSurf)
2568     {
2569         ERR("(%p) Error allocating memory for a surface\n", This);
2570         return DDERR_OUTOFVIDEOMEMORY;
2571     }
2572
2573     hr = ddraw_surface_init(*ppSurf, This, pDDSD, level, ImplType);
2574     if (FAILED(hr))
2575     {
2576         WARN("Failed to initialize surface, hr %#x.\n", hr);
2577         HeapFree(GetProcessHeap(), 0, *ppSurf);
2578         return hr;
2579     }
2580
2581     /* Increase the surface counter, and attach the surface */
2582     InterlockedIncrement(&This->surfaces);
2583     list_add_head(&This->surface_list, &(*ppSurf)->surface_list_entry);
2584
2585     TRACE("Created surface %p.\n", *ppSurf);
2586
2587     return DD_OK;
2588 }
2589 /*****************************************************************************
2590  * CreateAdditionalSurfaces
2591  *
2592  * Creates a new mipmap chain.
2593  *
2594  * Params:
2595  *  root: Root surface to attach the newly created chain to
2596  *  count: number of surfaces to create
2597  *  DDSD: Description of the surface. Intentionally not a pointer to avoid side
2598  *        effects on the caller
2599  *  CubeFaceRoot: Whether the new surface is a root of a cube map face. This
2600  *                creates an additional surface without the mipmapping flags
2601  *
2602  *****************************************************************************/
2603 static HRESULT
2604 CreateAdditionalSurfaces(IDirectDrawImpl *This,
2605                          IDirectDrawSurfaceImpl *root,
2606                          UINT count,
2607                          DDSURFACEDESC2 DDSD,
2608                          BOOL CubeFaceRoot)
2609 {
2610     UINT i, j, level = 0;
2611     HRESULT hr;
2612     IDirectDrawSurfaceImpl *last = root;
2613
2614     for(i = 0; i < count; i++)
2615     {
2616         IDirectDrawSurfaceImpl *object2 = NULL;
2617
2618         /* increase the mipmap level, but only if a mipmap is created
2619          * In this case, also halve the size
2620          */
2621         if(DDSD.ddsCaps.dwCaps & DDSCAPS_MIPMAP && !CubeFaceRoot)
2622         {
2623             level++;
2624             if(DDSD.dwWidth > 1) DDSD.dwWidth /= 2;
2625             if(DDSD.dwHeight > 1) DDSD.dwHeight /= 2;
2626             /* Set the mipmap sublevel flag according to msdn */
2627             DDSD.ddsCaps.dwCaps2 |= DDSCAPS2_MIPMAPSUBLEVEL;
2628         }
2629         else
2630         {
2631             DDSD.ddsCaps.dwCaps2 &= ~DDSCAPS2_MIPMAPSUBLEVEL;
2632         }
2633         CubeFaceRoot = FALSE;
2634
2635         hr = ddraw_create_surface(This, &DDSD, &object2, level);
2636         if(hr != DD_OK)
2637         {
2638             return hr;
2639         }
2640
2641         /* Add the new surface to the complex attachment array */
2642         for(j = 0; j < MAX_COMPLEX_ATTACHED; j++)
2643         {
2644             if(last->complex_array[j]) continue;
2645             last->complex_array[j] = object2;
2646             break;
2647         }
2648         last = object2;
2649
2650         /* Remove the (possible) back buffer cap from the new surface description,
2651          * because only one surface in the flipping chain is a back buffer, one
2652          * is a front buffer, the others are just primary surfaces.
2653          */
2654         DDSD.ddsCaps.dwCaps &= ~DDSCAPS_BACKBUFFER;
2655     }
2656     return DD_OK;
2657 }
2658
2659 /* Must set all attached surfaces (e.g. mipmaps) versions as well */
2660 static void ddraw_set_surface_version(IDirectDrawSurfaceImpl *surface, UINT version)
2661 {
2662     unsigned int i;
2663
2664     TRACE("surface %p, version %u -> %u.\n", surface, surface->version, version);
2665
2666     surface->version = version;
2667     for (i = 0; i < MAX_COMPLEX_ATTACHED; ++i)
2668     {
2669         if (!surface->complex_array[i]) break;
2670         ddraw_set_surface_version(surface->complex_array[i], version);
2671     }
2672     while ((surface = surface->next_attached))
2673     {
2674         ddraw_set_surface_version(surface, version);
2675     }
2676 }
2677
2678 /*****************************************************************************
2679  * ddraw_attach_d3d_device
2680  *
2681  * Initializes the D3D capabilities of WineD3D
2682  *
2683  * Params:
2684  *  primary: The primary surface for D3D
2685  *
2686  * Returns
2687  *  DD_OK on success,
2688  *  DDERR_* otherwise
2689  *
2690  *****************************************************************************/
2691 static HRESULT ddraw_attach_d3d_device(IDirectDrawImpl *ddraw, IDirectDrawSurfaceImpl *primary)
2692 {
2693     WINED3DPRESENT_PARAMETERS localParameters;
2694     HWND window = ddraw->dest_window;
2695     HRESULT hr;
2696
2697     TRACE("ddraw %p, primary %p.\n", ddraw, primary);
2698
2699     if (!window || window == GetDesktopWindow())
2700     {
2701         window = CreateWindowExA(0, DDRAW_WINDOW_CLASS_NAME, "Hidden D3D Window",
2702                 WS_DISABLED, 0, 0, GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN),
2703                 NULL, NULL, NULL, NULL);
2704         if (!window)
2705         {
2706             ERR("Failed to create window, last error %#x.\n", GetLastError());
2707             return E_FAIL;
2708         }
2709
2710         ShowWindow(window, SW_HIDE);   /* Just to be sure */
2711         WARN("No window for the Direct3DDevice, created hidden window %p.\n", window);
2712     }
2713     else
2714     {
2715         TRACE("Using existing window %p for Direct3D rendering.\n", window);
2716     }
2717     ddraw->d3d_window = window;
2718
2719     /* Store the future Render Target surface */
2720     ddraw->d3d_target = primary;
2721
2722     /* Use the surface description for the device parameters, not the device
2723      * settings. The application might render to an offscreen surface. */
2724     localParameters.BackBufferWidth = primary->surface_desc.dwWidth;
2725     localParameters.BackBufferHeight = primary->surface_desc.dwHeight;
2726     localParameters.BackBufferFormat = PixelFormat_DD2WineD3D(&primary->surface_desc.u4.ddpfPixelFormat);
2727     localParameters.BackBufferCount = (primary->surface_desc.dwFlags & DDSD_BACKBUFFERCOUNT)
2728             ? primary->surface_desc.dwBackBufferCount : 0;
2729     localParameters.MultiSampleType = WINED3DMULTISAMPLE_NONE;
2730     localParameters.MultiSampleQuality = 0;
2731     localParameters.SwapEffect = WINED3DSWAPEFFECT_COPY;
2732     localParameters.hDeviceWindow = window;
2733     localParameters.Windowed = !(ddraw->cooperative_level & DDSCL_FULLSCREEN);
2734     localParameters.EnableAutoDepthStencil = TRUE;
2735     localParameters.AutoDepthStencilFormat = WINED3DFMT_D16_UNORM;
2736     localParameters.Flags = 0;
2737     localParameters.FullScreen_RefreshRateInHz = WINED3DPRESENT_RATE_DEFAULT;
2738     localParameters.PresentationInterval = WINED3DPRESENT_INTERVAL_DEFAULT;
2739
2740     /* Set this NOW, otherwise creating the depth stencil surface will cause a
2741      * recursive loop until ram or emulated video memory is full. */
2742     ddraw->d3d_initialized = TRUE;
2743     hr = IWineD3DDevice_Init3D(ddraw->wineD3DDevice, &localParameters);
2744     if (FAILED(hr))
2745     {
2746         ddraw->d3d_target = NULL;
2747         ddraw->d3d_initialized = FALSE;
2748         return hr;
2749     }
2750
2751     ddraw->declArraySize = 2;
2752     ddraw->decls = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*ddraw->decls) * ddraw->declArraySize);
2753     if (!ddraw->decls)
2754     {
2755         ERR("Error allocating an array for the converted vertex decls.\n");
2756         ddraw->declArraySize = 0;
2757         hr = IWineD3DDevice_Uninit3D(ddraw->wineD3DDevice, D3D7CB_DestroySwapChain);
2758         return E_OUTOFMEMORY;
2759     }
2760
2761     TRACE("Successfully initialized 3D.\n");
2762
2763     return DD_OK;
2764 }
2765
2766 static HRESULT ddraw_create_gdi_swapchain(IDirectDrawImpl *ddraw, IDirectDrawSurfaceImpl *primary)
2767 {
2768     WINED3DPRESENT_PARAMETERS presentation_parameters;
2769     HWND window;
2770     HRESULT hr;
2771
2772     window = ddraw->dest_window;
2773
2774     memset(&presentation_parameters, 0, sizeof(presentation_parameters));
2775
2776     /* Use the surface description for the device parameters, not the device
2777      * settings. The application might render to an offscreen surface. */
2778     presentation_parameters.BackBufferWidth = primary->surface_desc.dwWidth;
2779     presentation_parameters.BackBufferHeight = primary->surface_desc.dwHeight;
2780     presentation_parameters.BackBufferFormat = PixelFormat_DD2WineD3D(&primary->surface_desc.u4.ddpfPixelFormat);
2781     presentation_parameters.BackBufferCount = (primary->surface_desc.dwFlags & DDSD_BACKBUFFERCOUNT)
2782             ? primary->surface_desc.dwBackBufferCount : 0;
2783     presentation_parameters.MultiSampleType = WINED3DMULTISAMPLE_NONE;
2784     presentation_parameters.MultiSampleQuality = 0;
2785     presentation_parameters.SwapEffect = WINED3DSWAPEFFECT_FLIP;
2786     presentation_parameters.hDeviceWindow = window;
2787     presentation_parameters.Windowed = !(ddraw->cooperative_level & DDSCL_FULLSCREEN);
2788     presentation_parameters.EnableAutoDepthStencil = FALSE; /* Not on GDI swapchains */
2789     presentation_parameters.AutoDepthStencilFormat = 0;
2790     presentation_parameters.Flags = 0;
2791     presentation_parameters.FullScreen_RefreshRateInHz = WINED3DPRESENT_RATE_DEFAULT;
2792     presentation_parameters.PresentationInterval = WINED3DPRESENT_INTERVAL_DEFAULT;
2793
2794     ddraw->d3d_target = primary;
2795     hr = IWineD3DDevice_InitGDI(ddraw->wineD3DDevice, &presentation_parameters);
2796     ddraw->d3d_target = NULL;
2797     if (FAILED(hr))
2798     {
2799         WARN("Failed to initialize GDI ddraw implementation, hr %#x.\n", hr);
2800         primary->wineD3DSwapChain = NULL;
2801     }
2802
2803     return hr;
2804 }
2805
2806 /*****************************************************************************
2807  * IDirectDraw7::CreateSurface
2808  *
2809  * Creates a new IDirectDrawSurface object and returns its interface.
2810  *
2811  * The surface connections with wined3d are a bit tricky. Basically it works
2812  * like this:
2813  *
2814  * |------------------------|               |-----------------|
2815  * | DDraw surface          |               | WineD3DSurface  |
2816  * |                        |               |                 |
2817  * |        WineD3DSurface  |-------------->|                 |
2818  * |        Child           |<------------->| Parent          |
2819  * |------------------------|               |-----------------|
2820  *
2821  * The DDraw surface is the parent of the wined3d surface, and it releases
2822  * the WineD3DSurface when the ddraw surface is destroyed.
2823  *
2824  * However, for all surfaces which can be in a container in WineD3D,
2825  * we have to do this. These surfaces are usually complex surfaces,
2826  * so this concerns primary surfaces with a front and a back buffer,
2827  * and textures.
2828  *
2829  * |------------------------|               |-----------------|
2830  * | DDraw surface          |               | Container       |
2831  * |                        |               |                 |
2832  * |                  Child |<------------->| Parent          |
2833  * |                Texture |<------------->|                 |
2834  * |         WineD3DSurface |<----|         |          Levels |<--|
2835  * | Complex connection     |     |         |                 |   |
2836  * |------------------------|     |         |-----------------|   |
2837  *  ^                             |                               |
2838  *  |                             |                               |
2839  *  |                             |                               |
2840  *  |    |------------------|     |         |-----------------|   |
2841  *  |    | IParent          |     |-------->| WineD3DSurface  |   |
2842  *  |    |                  |               |                 |   |
2843  *  |    |            Child |<------------->| Parent          |   |
2844  *  |    |                  |               |       Container |<--|
2845  *  |    |------------------|               |-----------------|   |
2846  *  |                                                             |
2847  *  |   |----------------------|                                  |
2848  *  |   | DDraw surface 2      |                                  |
2849  *  |   |                      |                                  |
2850  *  |<->| Complex root   Child |                                  |
2851  *  |   |              Texture |                                  |
2852  *  |   |       WineD3DSurface |<----|                            |
2853  *  |   |----------------------|     |                            |
2854  *  |                                |                            |
2855  *  |    |---------------------|     |      |-----------------|   |
2856  *  |    | IParent             |     |----->| WineD3DSurface  |   |
2857  *  |    |                     |            |                 |   |
2858  *  |    |               Child |<---------->| Parent          |   |
2859  *  |    |---------------------|            |       Container |<--|
2860  *  |                                       |-----------------|   |
2861  *  |                                                             |
2862  *  |             ---More surfaces can follow---                  |
2863  *
2864  * The reason is that the IWineD3DSwapchain(render target container)
2865  * and the IWineD3DTexure(Texture container) release the parents
2866  * of their surface's children, but by releasing the complex root
2867  * the surfaces which are complexly attached to it are destroyed
2868  * too. See IDirectDrawSurface::Release for a more detailed
2869  * explanation.
2870  *
2871  * Params:
2872  *  DDSD: Description of the surface to create
2873  *  Surf: Address to store the interface pointer at
2874  *  UnkOuter: Basically for aggregation support, but ddraw doesn't support
2875  *            aggregation, so it has to be NULL
2876  *
2877  * Returns:
2878  *  DD_OK on success
2879  *  CLASS_E_NOAGGREGATION if UnkOuter != NULL
2880  *  DDERR_* if an error occurs
2881  *
2882  *****************************************************************************/
2883 static HRESULT WINAPI ddraw7_CreateSurface(IDirectDraw7 *iface,
2884         DDSURFACEDESC2 *DDSD, IDirectDrawSurface7 **Surf, IUnknown *UnkOuter)
2885 {
2886     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
2887     IDirectDrawSurfaceImpl *object = NULL;
2888     HRESULT hr;
2889     LONG extra_surfaces = 0;
2890     DDSURFACEDESC2 desc2;
2891     WINED3DDISPLAYMODE Mode;
2892     const DWORD sysvidmem = DDSCAPS_VIDEOMEMORY | DDSCAPS_SYSTEMMEMORY;
2893
2894     TRACE("iface %p, surface_desc %p, surface %p, outer_unknown %p.\n",
2895             iface, DDSD, Surf, UnkOuter);
2896
2897     /* Some checks before we start */
2898     if (TRACE_ON(ddraw))
2899     {
2900         TRACE(" (%p) Requesting surface desc :\n", This);
2901         DDRAW_dump_surface_desc(DDSD);
2902     }
2903     EnterCriticalSection(&ddraw_cs);
2904
2905     if (UnkOuter != NULL)
2906     {
2907         FIXME("(%p) : outer != NULL?\n", This);
2908         LeaveCriticalSection(&ddraw_cs);
2909         return CLASS_E_NOAGGREGATION; /* unchecked */
2910     }
2911
2912     if (Surf == NULL)
2913     {
2914         FIXME("(%p) You want to get back a surface? Don't give NULL ptrs!\n", This);
2915         LeaveCriticalSection(&ddraw_cs);
2916         return E_POINTER; /* unchecked */
2917     }
2918
2919     if (!(DDSD->dwFlags & DDSD_CAPS))
2920     {
2921         /* DVIDEO.DLL does forget the DDSD_CAPS flag ... *sigh* */
2922         DDSD->dwFlags |= DDSD_CAPS;
2923     }
2924
2925     if (DDSD->ddsCaps.dwCaps & DDSCAPS_ALLOCONLOAD)
2926     {
2927         /* If the surface is of the 'alloconload' type, ignore the LPSURFACE field */
2928         DDSD->dwFlags &= ~DDSD_LPSURFACE;
2929     }
2930
2931     if ((DDSD->dwFlags & DDSD_LPSURFACE) && (DDSD->lpSurface == NULL))
2932     {
2933         /* Frank Herbert's Dune specifies a null pointer for the surface, ignore the LPSURFACE field */
2934         WARN("(%p) Null surface pointer specified, ignore it!\n", This);
2935         DDSD->dwFlags &= ~DDSD_LPSURFACE;
2936     }
2937
2938     if((DDSD->ddsCaps.dwCaps & (DDSCAPS_FLIP | DDSCAPS_PRIMARYSURFACE)) == (DDSCAPS_FLIP | DDSCAPS_PRIMARYSURFACE) &&
2939        !(This->cooperative_level & DDSCL_EXCLUSIVE))
2940     {
2941         TRACE("(%p): Attempt to create a flipable primary surface without DDSCL_EXCLUSIVE set\n", This);
2942         *Surf = NULL;
2943         LeaveCriticalSection(&ddraw_cs);
2944         return DDERR_NOEXCLUSIVEMODE;
2945     }
2946
2947     if(DDSD->ddsCaps.dwCaps & (DDSCAPS_FRONTBUFFER | DDSCAPS_BACKBUFFER)) {
2948         WARN("Application tried to create an explicit front or back buffer\n");
2949         LeaveCriticalSection(&ddraw_cs);
2950         return DDERR_INVALIDCAPS;
2951     }
2952
2953     if((DDSD->ddsCaps.dwCaps & sysvidmem) == sysvidmem)
2954     {
2955         /* This is a special switch in ddrawex.dll, but not allowed in ddraw.dll */
2956         WARN("Application tries to put the surface in both system and video memory\n");
2957         LeaveCriticalSection(&ddraw_cs);
2958         *Surf = NULL;
2959         return DDERR_INVALIDCAPS;
2960     }
2961
2962     /* Check cube maps but only if the size includes them */
2963     if (DDSD->dwSize >= sizeof(DDSURFACEDESC2))
2964     {
2965         if(DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP_ALLFACES &&
2966            !(DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP))
2967         {
2968             WARN("Cube map faces requested without cube map flag\n");
2969             LeaveCriticalSection(&ddraw_cs);
2970             return DDERR_INVALIDCAPS;
2971         }
2972         if(DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP &&
2973            (DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP_ALLFACES) == 0)
2974         {
2975             WARN("Cube map without faces requested\n");
2976             LeaveCriticalSection(&ddraw_cs);
2977             return DDERR_INVALIDPARAMS;
2978         }
2979
2980         /* Quick tests confirm those can be created, but we don't do that yet */
2981         if(DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP &&
2982            (DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP_ALLFACES) != DDSCAPS2_CUBEMAP_ALLFACES)
2983         {
2984             FIXME("Partial cube maps not supported yet\n");
2985         }
2986     }
2987
2988     /* According to the msdn this flag is ignored by CreateSurface */
2989     if (DDSD->dwSize >= sizeof(DDSURFACEDESC2))
2990         DDSD->ddsCaps.dwCaps2 &= ~DDSCAPS2_MIPMAPSUBLEVEL;
2991
2992     /* Modify some flags */
2993     memset(&desc2, 0, sizeof(desc2));
2994     desc2.dwSize = sizeof(desc2);   /* For the struct copy */
2995     DD_STRUCT_COPY_BYSIZE(&desc2, DDSD);
2996     desc2.dwSize = sizeof(desc2);   /* To override a possibly smaller size */
2997     desc2.u4.ddpfPixelFormat.dwSize=sizeof(DDPIXELFORMAT); /* Just to be sure */
2998
2999     /* Get the video mode from WineD3D - we will need it */
3000     hr = IWineD3DDevice_GetDisplayMode(This->wineD3DDevice,
3001                                        0, /* Swapchain 0 */
3002                                        &Mode);
3003     if(FAILED(hr))
3004     {
3005         ERR("Failed to read display mode from wined3d\n");
3006         switch(This->orig_bpp)
3007         {
3008             case 8:
3009                 Mode.Format = WINED3DFMT_P8_UINT;
3010                 break;
3011
3012             case 15:
3013                 Mode.Format = WINED3DFMT_B5G5R5X1_UNORM;
3014                 break;
3015
3016             case 16:
3017                 Mode.Format = WINED3DFMT_B5G6R5_UNORM;
3018                 break;
3019
3020             case 24:
3021                 Mode.Format = WINED3DFMT_B8G8R8_UNORM;
3022                 break;
3023
3024             case 32:
3025                 Mode.Format = WINED3DFMT_B8G8R8X8_UNORM;
3026                 break;
3027         }
3028         Mode.Width = This->orig_width;
3029         Mode.Height = This->orig_height;
3030     }
3031
3032     /* No pixelformat given? Use the current screen format */
3033     if(!(desc2.dwFlags & DDSD_PIXELFORMAT))
3034     {
3035         desc2.dwFlags |= DDSD_PIXELFORMAT;
3036         desc2.u4.ddpfPixelFormat.dwSize=sizeof(DDPIXELFORMAT);
3037
3038         /* Wait: It could be a Z buffer */
3039         if(desc2.ddsCaps.dwCaps & DDSCAPS_ZBUFFER)
3040         {
3041             switch(desc2.u2.dwMipMapCount) /* Who had this glorious idea? */
3042             {
3043                 case 15:
3044                     PixelFormat_WineD3DtoDD(&desc2.u4.ddpfPixelFormat, WINED3DFMT_S1_UINT_D15_UNORM);
3045                     break;
3046                 case 16:
3047                     PixelFormat_WineD3DtoDD(&desc2.u4.ddpfPixelFormat, WINED3DFMT_D16_UNORM);
3048                     break;
3049                 case 24:
3050                     PixelFormat_WineD3DtoDD(&desc2.u4.ddpfPixelFormat, WINED3DFMT_X8D24_UNORM);
3051                     break;
3052                 case 32:
3053                     PixelFormat_WineD3DtoDD(&desc2.u4.ddpfPixelFormat, WINED3DFMT_D32_UNORM);
3054                     break;
3055                 default:
3056                     ERR("Unknown Z buffer bit depth\n");
3057             }
3058         }
3059         else
3060         {
3061             PixelFormat_WineD3DtoDD(&desc2.u4.ddpfPixelFormat, Mode.Format);
3062         }
3063     }
3064
3065     /* No Width or no Height? Use the original screen size
3066      */
3067     if(!(desc2.dwFlags & DDSD_WIDTH) ||
3068        !(desc2.dwFlags & DDSD_HEIGHT) )
3069     {
3070         /* Invalid for non-render targets */
3071         if(!(desc2.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE))
3072         {
3073             WARN("Creating a non-Primary surface without Width or Height info, returning DDERR_INVALIDPARAMS\n");
3074             *Surf = NULL;
3075             LeaveCriticalSection(&ddraw_cs);
3076             return DDERR_INVALIDPARAMS;
3077         }
3078
3079         desc2.dwFlags |= DDSD_WIDTH | DDSD_HEIGHT;
3080         desc2.dwWidth = Mode.Width;
3081         desc2.dwHeight = Mode.Height;
3082     }
3083
3084     /* Mipmap count fixes */
3085     if(desc2.ddsCaps.dwCaps & DDSCAPS_MIPMAP)
3086     {
3087         if(desc2.ddsCaps.dwCaps & DDSCAPS_COMPLEX)
3088         {
3089             if(desc2.dwFlags & DDSD_MIPMAPCOUNT)
3090             {
3091                 /* Mipmap count is given, should not be 0 */
3092                 if( desc2.u2.dwMipMapCount == 0 )
3093                 {
3094                     LeaveCriticalSection(&ddraw_cs);
3095                     return DDERR_INVALIDPARAMS;
3096                 }
3097             }
3098             else
3099             {
3100                 /* Undocumented feature: Create sublevels until
3101                  * either the width or the height is 1
3102                  */
3103                 DWORD min = desc2.dwWidth < desc2.dwHeight ?
3104                             desc2.dwWidth : desc2.dwHeight;
3105                 desc2.u2.dwMipMapCount = 0;
3106                 while( min )
3107                 {
3108                     desc2.u2.dwMipMapCount += 1;
3109                     min >>= 1;
3110                 }
3111             }
3112         }
3113         else
3114         {
3115             /* Not-complex mipmap -> Mipmapcount = 1 */
3116             desc2.u2.dwMipMapCount = 1;
3117         }
3118         extra_surfaces = desc2.u2.dwMipMapCount - 1;
3119
3120         /* There's a mipmap count in the created surface in any case */
3121         desc2.dwFlags |= DDSD_MIPMAPCOUNT;
3122     }
3123     /* If no mipmap is given, the texture has only one level */
3124
3125     /* The first surface is a front buffer, the back buffer is created afterwards */
3126     if( (desc2.dwFlags & DDSD_CAPS) && (desc2.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE) )
3127     {
3128         desc2.ddsCaps.dwCaps |= DDSCAPS_FRONTBUFFER;
3129     }
3130
3131     /* The root surface in a cube map is positive x */
3132     if(desc2.ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP)
3133     {
3134         desc2.ddsCaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_ALLFACES;
3135         desc2.ddsCaps.dwCaps2 |=  DDSCAPS2_CUBEMAP_POSITIVEX;
3136     }
3137
3138     /* Create the first surface */
3139     hr = ddraw_create_surface(This, &desc2, &object, 0);
3140     if (FAILED(hr))
3141     {
3142         WARN("ddraw_create_surface failed, hr %#x.\n", hr);
3143         LeaveCriticalSection(&ddraw_cs);
3144         return hr;
3145     }
3146     object->is_complex_root = TRUE;
3147
3148     *Surf = (IDirectDrawSurface7 *)object;
3149
3150     /* Create Additional surfaces if necessary
3151      * This applies to Primary surfaces which have a back buffer count
3152      * set, but not to mipmap textures. In case of Mipmap textures,
3153      * wineD3D takes care of the creation of additional surfaces
3154      */
3155     if(DDSD->dwFlags & DDSD_BACKBUFFERCOUNT)
3156     {
3157         extra_surfaces = DDSD->dwBackBufferCount;
3158         desc2.ddsCaps.dwCaps &= ~DDSCAPS_FRONTBUFFER; /* It's not a front buffer */
3159         desc2.ddsCaps.dwCaps |= DDSCAPS_BACKBUFFER;
3160         desc2.dwBackBufferCount = 0;
3161     }
3162
3163     hr = DD_OK;
3164     if(desc2.ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP)
3165     {
3166         desc2.ddsCaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_ALLFACES;
3167         desc2.ddsCaps.dwCaps2 |=  DDSCAPS2_CUBEMAP_NEGATIVEZ;
3168         hr |= CreateAdditionalSurfaces(This, object, extra_surfaces + 1, desc2, TRUE);
3169         desc2.ddsCaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_NEGATIVEZ;
3170         desc2.ddsCaps.dwCaps2 |=  DDSCAPS2_CUBEMAP_POSITIVEZ;
3171         hr |= CreateAdditionalSurfaces(This, object, extra_surfaces + 1, desc2, TRUE);
3172         desc2.ddsCaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_POSITIVEZ;
3173         desc2.ddsCaps.dwCaps2 |=  DDSCAPS2_CUBEMAP_NEGATIVEY;
3174         hr |= CreateAdditionalSurfaces(This, object, extra_surfaces + 1, desc2, TRUE);
3175         desc2.ddsCaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_NEGATIVEY;
3176         desc2.ddsCaps.dwCaps2 |=  DDSCAPS2_CUBEMAP_POSITIVEY;
3177         hr |= CreateAdditionalSurfaces(This, object, extra_surfaces + 1, desc2, TRUE);
3178         desc2.ddsCaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_POSITIVEY;
3179         desc2.ddsCaps.dwCaps2 |=  DDSCAPS2_CUBEMAP_NEGATIVEX;
3180         hr |= CreateAdditionalSurfaces(This, object, extra_surfaces + 1, desc2, TRUE);
3181         desc2.ddsCaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_NEGATIVEX;
3182         desc2.ddsCaps.dwCaps2 |=  DDSCAPS2_CUBEMAP_POSITIVEX;
3183     }
3184
3185     hr |= CreateAdditionalSurfaces(This, object, extra_surfaces, desc2, FALSE);
3186     if(hr != DD_OK)
3187     {
3188         /* This destroys and possibly created surfaces too */
3189         IDirectDrawSurface_Release((IDirectDrawSurface7 *)object);
3190         LeaveCriticalSection(&ddraw_cs);
3191         return hr;
3192     }
3193
3194     /* If the implementation is OpenGL and there's no d3ddevice, attach a d3ddevice
3195      * But attach the d3ddevice only if the currently created surface was
3196      * a primary surface (2D app in 3D mode) or a 3DDEVICE surface (3D app)
3197      * The only case I can think of where this doesn't apply is when a
3198      * 2D app was configured by the user to run with OpenGL and it didn't create
3199      * the render target as first surface. In this case the render target creation
3200      * will cause the 3D init.
3201      */
3202     if( (This->ImplType == SURFACE_OPENGL) && !(This->d3d_initialized) &&
3203         desc2.ddsCaps.dwCaps & (DDSCAPS_PRIMARYSURFACE | DDSCAPS_3DDEVICE) )
3204     {
3205         IDirectDrawSurfaceImpl *target = object, *surface;
3206         struct list *entry;
3207
3208         /* Search for the primary to use as render target */
3209         LIST_FOR_EACH(entry, &This->surface_list)
3210         {
3211             surface = LIST_ENTRY(entry, IDirectDrawSurfaceImpl, surface_list_entry);
3212             if((surface->surface_desc.ddsCaps.dwCaps & (DDSCAPS_PRIMARYSURFACE | DDSCAPS_FRONTBUFFER)) ==
3213                (DDSCAPS_PRIMARYSURFACE | DDSCAPS_FRONTBUFFER))
3214             {
3215                 /* found */
3216                 target = surface;
3217                 TRACE("Using primary %p as render target\n", target);
3218                 break;
3219             }
3220         }
3221
3222         TRACE("(%p) Attaching a D3DDevice, rendertarget = %p\n", This, target);
3223         hr = ddraw_attach_d3d_device(This, target);
3224         if (hr != D3D_OK)
3225         {
3226             IDirectDrawSurfaceImpl *release_surf;
3227             ERR("ddraw_attach_d3d_device failed, hr %#x\n", hr);
3228             *Surf = NULL;
3229
3230             /* The before created surface structures are in an incomplete state here.
3231              * WineD3D holds the reference on the IParents, and it released them on the failure
3232              * already. So the regular release method implementation would fail on the attempt
3233              * to destroy either the IParents or the swapchain. So free the surface here.
3234              * The surface structure here is a list, not a tree, because onscreen targets
3235              * cannot be cube textures
3236              */
3237             while(object)
3238             {
3239                 release_surf = object;
3240                 object = object->complex_array[0];
3241                 ddraw_surface_destroy(release_surf);
3242             }
3243             LeaveCriticalSection(&ddraw_cs);
3244             return hr;
3245         }
3246     }
3247     else if(!(This->d3d_initialized) && desc2.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE)
3248     {
3249         ddraw_create_gdi_swapchain(This, object);
3250     }
3251
3252     /* Addref the ddraw interface to keep an reference for each surface */
3253     IDirectDraw7_AddRef(iface);
3254     object->ifaceToRelease = (IUnknown *) iface;
3255
3256     /* Create a WineD3DTexture if a texture was requested */
3257     if(desc2.ddsCaps.dwCaps & DDSCAPS_TEXTURE)
3258     {
3259         enum wined3d_format_id Format;
3260         UINT levels;
3261         WINED3DPOOL Pool = WINED3DPOOL_DEFAULT;
3262
3263         This->tex_root = object;
3264
3265         if(desc2.ddsCaps.dwCaps & DDSCAPS_MIPMAP)
3266         {
3267             /* a mipmap is created, create enough levels */
3268             levels = desc2.u2.dwMipMapCount;
3269         }
3270         else
3271         {
3272             /* No mipmap is created, create one level */
3273             levels = 1;
3274         }
3275
3276         /* DDSCAPS_SYSTEMMEMORY textures are in WINED3DPOOL_SYSTEMMEM */
3277         if(DDSD->ddsCaps.dwCaps & DDSCAPS_SYSTEMMEMORY)
3278         {
3279             Pool = WINED3DPOOL_SYSTEMMEM;
3280         }
3281         /* Should I forward the MANAGED cap to the managed pool ? */
3282
3283         /* Get the format. It's set already by CreateNewSurface */
3284         Format = PixelFormat_DD2WineD3D(&object->surface_desc.u4.ddpfPixelFormat);
3285
3286         /* The surfaces are already created, the callback only
3287          * passes the IWineD3DSurface to WineD3D
3288          */
3289         if(desc2.ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP)
3290         {
3291             hr = IWineD3DDevice_CreateCubeTexture(This->wineD3DDevice, DDSD->dwWidth /* Edgelength */, levels,
3292                     0 /* usage */, Format, Pool, object, &ddraw_null_wined3d_parent_ops,
3293                     (IWineD3DCubeTexture **)&object->wineD3DTexture);
3294         }
3295         else
3296         {
3297             hr = IWineD3DDevice_CreateTexture(This->wineD3DDevice, DDSD->dwWidth, DDSD->dwHeight, levels,
3298                     0 /* usage */, Format, Pool, object, &ddraw_null_wined3d_parent_ops,
3299                     (IWineD3DTexture **)&object->wineD3DTexture);
3300         }
3301         This->tex_root = NULL;
3302     }
3303
3304     LeaveCriticalSection(&ddraw_cs);
3305     return hr;
3306 }
3307
3308 static HRESULT WINAPI ddraw4_CreateSurface(IDirectDraw4 *iface,
3309         DDSURFACEDESC2 *surface_desc, IDirectDrawSurface4 **surface, IUnknown *outer_unknown)
3310 {
3311     IDirectDrawImpl *ddraw = ddraw_from_ddraw4(iface);
3312     IDirectDrawSurfaceImpl *impl;
3313     HRESULT hr;
3314
3315     TRACE("iface %p, surface_desc %p, surface %p, outer_unknown %p.\n",
3316             iface, surface_desc, surface, outer_unknown);
3317
3318     hr = ddraw7_CreateSurface((IDirectDraw7 *)ddraw, surface_desc, (IDirectDrawSurface7 **)surface, outer_unknown);
3319     impl = (IDirectDrawSurfaceImpl *)*surface;
3320     if (SUCCEEDED(hr) && impl)
3321     {
3322         ddraw_set_surface_version(impl, 4);
3323         IDirectDraw7_Release((IDirectDraw7 *)ddraw);
3324         IDirectDraw4_AddRef(iface);
3325         impl->ifaceToRelease = (IUnknown *)iface;
3326     }
3327
3328     return hr;
3329 }
3330
3331 static HRESULT WINAPI ddraw3_CreateSurface(IDirectDraw3 *iface,
3332         DDSURFACEDESC *surface_desc, IDirectDrawSurface **surface, IUnknown *outer_unknown)
3333 {
3334     IDirectDrawImpl *ddraw = ddraw_from_ddraw3(iface);
3335     IDirectDrawSurface7 *surface7;
3336     IDirectDrawSurfaceImpl *impl;
3337     HRESULT hr;
3338
3339     TRACE("iface %p, surface_desc %p, surface %p, outer_unknown %p.\n",
3340             iface, surface_desc, surface, outer_unknown);
3341
3342     hr = ddraw7_CreateSurface((IDirectDraw7 *)ddraw, (DDSURFACEDESC2 *)surface_desc, &surface7, outer_unknown);
3343     if (FAILED(hr))
3344     {
3345         *surface = NULL;
3346         return hr;
3347     }
3348
3349     impl = (IDirectDrawSurfaceImpl *)surface7;
3350     *surface = (IDirectDrawSurface *)&impl->IDirectDrawSurface3_vtbl;
3351     ddraw_set_surface_version(impl, 3);
3352     IDirectDraw7_Release((IDirectDraw7 *)ddraw);
3353     IDirectDraw3_AddRef(iface);
3354     impl->ifaceToRelease = (IUnknown *)iface;
3355
3356     return hr;
3357 }
3358
3359 static HRESULT WINAPI ddraw2_CreateSurface(IDirectDraw2 *iface,
3360         DDSURFACEDESC *surface_desc, IDirectDrawSurface **surface, IUnknown *outer_unknown)
3361 {
3362     IDirectDrawImpl *ddraw = ddraw_from_ddraw2(iface);
3363     IDirectDrawSurface7 *surface7;
3364     IDirectDrawSurfaceImpl *impl;
3365     HRESULT hr;
3366
3367     TRACE("iface %p, surface_desc %p, surface %p, outer_unknown %p.\n",
3368             iface, surface_desc, surface, outer_unknown);
3369
3370     hr = ddraw7_CreateSurface((IDirectDraw7 *)ddraw, (DDSURFACEDESC2 *)surface_desc, &surface7, outer_unknown);
3371     if (FAILED(hr))
3372     {
3373         *surface = NULL;
3374         return hr;
3375     }
3376
3377     impl = (IDirectDrawSurfaceImpl *)surface7;
3378     *surface = (IDirectDrawSurface *)&impl->IDirectDrawSurface3_vtbl;
3379     ddraw_set_surface_version(impl, 2);
3380     IDirectDraw7_Release((IDirectDraw7 *)ddraw);
3381     impl->ifaceToRelease = NULL;
3382
3383     return hr;
3384 }
3385
3386 static HRESULT WINAPI ddraw1_CreateSurface(IDirectDraw *iface,
3387         DDSURFACEDESC *surface_desc, IDirectDrawSurface **surface, IUnknown *outer_unknown)
3388 {
3389     IDirectDrawImpl *ddraw = ddraw_from_ddraw1(iface);
3390     IDirectDrawSurface7 *surface7;
3391     IDirectDrawSurfaceImpl *impl;
3392     HRESULT hr;
3393
3394     TRACE("iface %p, surface_desc %p, surface %p, outer_unknown %p.\n",
3395             iface, surface_desc, surface, outer_unknown);
3396
3397     /* Remove front buffer flag, this causes failure in v7, and its added to normal
3398      * primaries anyway. */
3399     surface_desc->ddsCaps.dwCaps &= ~DDSCAPS_FRONTBUFFER;
3400     hr = ddraw7_CreateSurface((IDirectDraw7 *)ddraw, (DDSURFACEDESC2 *)surface_desc, &surface7, outer_unknown);
3401     if (FAILED(hr))
3402     {
3403         *surface = NULL;
3404         return hr;
3405     }
3406
3407     impl = (IDirectDrawSurfaceImpl *)surface7;
3408     *surface = (IDirectDrawSurface *)&impl->IDirectDrawSurface3_vtbl;
3409     ddraw_set_surface_version(impl, 1);
3410     IDirectDraw7_Release((IDirectDraw7 *)ddraw);
3411     impl->ifaceToRelease = NULL;
3412
3413     return hr;
3414 }
3415
3416 #define DDENUMSURFACES_SEARCHTYPE (DDENUMSURFACES_CANBECREATED|DDENUMSURFACES_DOESEXIST)
3417 #define DDENUMSURFACES_MATCHTYPE (DDENUMSURFACES_ALL|DDENUMSURFACES_MATCH|DDENUMSURFACES_NOMATCH)
3418
3419 static BOOL
3420 Main_DirectDraw_DDPIXELFORMAT_Match(const DDPIXELFORMAT *requested,
3421                                     const DDPIXELFORMAT *provided)
3422 {
3423     /* Some flags must be present in both or neither for a match. */
3424     static const DWORD must_match = DDPF_PALETTEINDEXED1 | DDPF_PALETTEINDEXED2
3425         | DDPF_PALETTEINDEXED4 | DDPF_PALETTEINDEXED8 | DDPF_FOURCC
3426         | DDPF_ZBUFFER | DDPF_STENCILBUFFER;
3427
3428     if ((requested->dwFlags & provided->dwFlags) != requested->dwFlags)
3429         return FALSE;
3430
3431     if ((requested->dwFlags & must_match) != (provided->dwFlags & must_match))
3432         return FALSE;
3433
3434     if (requested->dwFlags & DDPF_FOURCC)
3435         if (requested->dwFourCC != provided->dwFourCC)
3436             return FALSE;
3437
3438     if (requested->dwFlags & (DDPF_RGB|DDPF_YUV|DDPF_ZBUFFER|DDPF_ALPHA
3439                               |DDPF_LUMINANCE|DDPF_BUMPDUDV))
3440         if (requested->u1.dwRGBBitCount != provided->u1.dwRGBBitCount)
3441             return FALSE;
3442
3443     if (requested->dwFlags & (DDPF_RGB|DDPF_YUV|DDPF_STENCILBUFFER
3444                               |DDPF_LUMINANCE|DDPF_BUMPDUDV))
3445         if (requested->u2.dwRBitMask != provided->u2.dwRBitMask)
3446             return FALSE;
3447
3448     if (requested->dwFlags & (DDPF_RGB|DDPF_YUV|DDPF_ZBUFFER|DDPF_BUMPDUDV))
3449         if (requested->u3.dwGBitMask != provided->u3.dwGBitMask)
3450             return FALSE;
3451
3452     /* I could be wrong about the bumpmapping. MSDN docs are vague. */
3453     if (requested->dwFlags & (DDPF_RGB|DDPF_YUV|DDPF_STENCILBUFFER
3454                               |DDPF_BUMPDUDV))
3455         if (requested->u4.dwBBitMask != provided->u4.dwBBitMask)
3456             return FALSE;
3457
3458     if (requested->dwFlags & (DDPF_ALPHAPIXELS|DDPF_ZPIXELS))
3459         if (requested->u5.dwRGBAlphaBitMask != provided->u5.dwRGBAlphaBitMask)
3460             return FALSE;
3461
3462     return TRUE;
3463 }
3464
3465 static BOOL ddraw_match_surface_desc(const DDSURFACEDESC2 *requested, const DDSURFACEDESC2 *provided)
3466 {
3467     struct compare_info
3468     {
3469         DWORD flag;
3470         ptrdiff_t offset;
3471         size_t size;
3472     };
3473
3474 #define CMP(FLAG, FIELD)                                \
3475         { DDSD_##FLAG, offsetof(DDSURFACEDESC2, FIELD), \
3476           sizeof(((DDSURFACEDESC2 *)(NULL))->FIELD) }
3477
3478     static const struct compare_info compare[] =
3479     {
3480         CMP(ALPHABITDEPTH, dwAlphaBitDepth),
3481         CMP(BACKBUFFERCOUNT, dwBackBufferCount),
3482         CMP(CAPS, ddsCaps),
3483         CMP(CKDESTBLT, ddckCKDestBlt),
3484         CMP(CKDESTOVERLAY, u3 /* ddckCKDestOverlay */),
3485         CMP(CKSRCBLT, ddckCKSrcBlt),
3486         CMP(CKSRCOVERLAY, ddckCKSrcOverlay),
3487         CMP(HEIGHT, dwHeight),
3488         CMP(LINEARSIZE, u1 /* dwLinearSize */),
3489         CMP(LPSURFACE, lpSurface),
3490         CMP(MIPMAPCOUNT, u2 /* dwMipMapCount */),
3491         CMP(PITCH, u1 /* lPitch */),
3492         /* PIXELFORMAT: manual */
3493         CMP(REFRESHRATE, u2 /* dwRefreshRate */),
3494         CMP(TEXTURESTAGE, dwTextureStage),
3495         CMP(WIDTH, dwWidth),
3496         /* ZBUFFERBITDEPTH: "obsolete" */
3497     };
3498
3499 #undef CMP
3500
3501     unsigned int i;
3502
3503     if ((requested->dwFlags & provided->dwFlags) != requested->dwFlags)
3504         return FALSE;
3505
3506     for (i=0; i < sizeof(compare)/sizeof(compare[0]); i++)
3507     {
3508         if (requested->dwFlags & compare[i].flag
3509             && memcmp((const char *)provided + compare[i].offset,
3510                       (const char *)requested + compare[i].offset,
3511                       compare[i].size) != 0)
3512             return FALSE;
3513     }
3514
3515     if (requested->dwFlags & DDSD_PIXELFORMAT)
3516     {
3517         if (!Main_DirectDraw_DDPIXELFORMAT_Match(&requested->u4.ddpfPixelFormat,
3518                                                 &provided->u4.ddpfPixelFormat))
3519             return FALSE;
3520     }
3521
3522     return TRUE;
3523 }
3524
3525 #undef DDENUMSURFACES_SEARCHTYPE
3526 #undef DDENUMSURFACES_MATCHTYPE
3527
3528 struct surfacescallback_context
3529 {
3530     LPDDENUMSURFACESCALLBACK func;
3531     void *context;
3532 };
3533
3534 static HRESULT CALLBACK EnumSurfacesCallbackThunk(IDirectDrawSurface7 *surface,
3535         DDSURFACEDESC2 *surface_desc, void *context)
3536 {
3537     struct surfacescallback_context *cbcontext = context;
3538
3539     return cbcontext->func((IDirectDrawSurface *)&((IDirectDrawSurfaceImpl *)surface)->IDirectDrawSurface3_vtbl,
3540             (DDSURFACEDESC *)surface_desc, cbcontext->context);
3541 }
3542
3543 /*****************************************************************************
3544  * IDirectDraw7::EnumSurfaces
3545  *
3546  * Loops through all surfaces attached to this device and calls the
3547  * application callback. This can't be relayed to WineD3DDevice,
3548  * because some WineD3DSurfaces' parents are IParent objects
3549  *
3550  * Params:
3551  *  Flags: Some filtering flags. See IDirectDrawImpl_EnumSurfacesCallback
3552  *  DDSD: Description to filter for
3553  *  Context: Application-provided pointer, it's passed unmodified to the
3554  *           Callback function
3555  *  Callback: Address to call for each surface
3556  *
3557  * Returns:
3558  *  DDERR_INVALIDPARAMS if the callback is NULL
3559  *  DD_OK on success
3560  *
3561  *****************************************************************************/
3562 static HRESULT WINAPI ddraw7_EnumSurfaces(IDirectDraw7 *iface, DWORD Flags,
3563         DDSURFACEDESC2 *DDSD, void *Context, LPDDENUMSURFACESCALLBACK7 Callback)
3564 {
3565     /* The surface enumeration is handled by WineDDraw,
3566      * because it keeps track of all surfaces attached to
3567      * it. The filtering is done by our callback function,
3568      * because WineDDraw doesn't handle ddraw-like surface
3569      * caps structures
3570      */
3571     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
3572     IDirectDrawSurfaceImpl *surf;
3573     BOOL all, nomatch;
3574     DDSURFACEDESC2 desc;
3575     struct list *entry, *entry2;
3576
3577     TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
3578             iface, Flags, DDSD, Context, Callback);
3579
3580     all = Flags & DDENUMSURFACES_ALL;
3581     nomatch = Flags & DDENUMSURFACES_NOMATCH;
3582
3583     EnterCriticalSection(&ddraw_cs);
3584
3585     if(!Callback)
3586     {
3587         LeaveCriticalSection(&ddraw_cs);
3588         return DDERR_INVALIDPARAMS;
3589     }
3590
3591     /* Use the _SAFE enumeration, the app may destroy enumerated surfaces */
3592     LIST_FOR_EACH_SAFE(entry, entry2, &This->surface_list)
3593     {
3594         surf = LIST_ENTRY(entry, IDirectDrawSurfaceImpl, surface_list_entry);
3595         if (all || (nomatch != ddraw_match_surface_desc(DDSD, &surf->surface_desc)))
3596         {
3597             desc = surf->surface_desc;
3598             IDirectDrawSurface7_AddRef((IDirectDrawSurface7 *)surf);
3599             if (Callback((IDirectDrawSurface7 *)surf, &desc, Context) != DDENUMRET_OK)
3600             {
3601                 LeaveCriticalSection(&ddraw_cs);
3602                 return DD_OK;
3603             }
3604         }
3605     }
3606     LeaveCriticalSection(&ddraw_cs);
3607     return DD_OK;
3608 }
3609
3610 static HRESULT WINAPI ddraw4_EnumSurfaces(IDirectDraw4 *iface, DWORD flags,
3611         DDSURFACEDESC2 *surface_desc, void *context, LPDDENUMSURFACESCALLBACK2 callback)
3612 {
3613     TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
3614             iface, flags, surface_desc, context, callback);
3615
3616     return ddraw7_EnumSurfaces((IDirectDraw7 *)ddraw_from_ddraw4(iface),
3617             flags, surface_desc, context, (LPDDENUMSURFACESCALLBACK7)callback);
3618 }
3619
3620 static HRESULT WINAPI ddraw3_EnumSurfaces(IDirectDraw3 *iface, DWORD flags,
3621         DDSURFACEDESC *surface_desc, void *context, LPDDENUMSURFACESCALLBACK callback)
3622 {
3623     struct surfacescallback_context cbcontext;
3624
3625     TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
3626             iface, flags, surface_desc, context, callback);
3627
3628     cbcontext.func = callback;
3629     cbcontext.context = context;
3630
3631     return ddraw7_EnumSurfaces((IDirectDraw7 *)ddraw_from_ddraw3(iface), flags,
3632             (DDSURFACEDESC2 *)surface_desc, &cbcontext, EnumSurfacesCallbackThunk);
3633 }
3634
3635 static HRESULT WINAPI ddraw2_EnumSurfaces(IDirectDraw2 *iface, DWORD flags,
3636         DDSURFACEDESC *surface_desc, void *context, LPDDENUMSURFACESCALLBACK callback)
3637 {
3638     struct surfacescallback_context cbcontext;
3639
3640     TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
3641             iface, flags, surface_desc, context, callback);
3642
3643     cbcontext.func = callback;
3644     cbcontext.context = context;
3645
3646     return ddraw7_EnumSurfaces((IDirectDraw7 *)ddraw_from_ddraw2(iface), flags,
3647             (DDSURFACEDESC2 *)surface_desc, &cbcontext, EnumSurfacesCallbackThunk);
3648 }
3649
3650 static HRESULT WINAPI ddraw1_EnumSurfaces(IDirectDraw *iface, DWORD flags,
3651         DDSURFACEDESC *surface_desc, void *context, LPDDENUMSURFACESCALLBACK callback)
3652 {
3653     struct surfacescallback_context cbcontext;
3654
3655     TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
3656             iface, flags, surface_desc, context, callback);
3657
3658     cbcontext.func = callback;
3659     cbcontext.context = context;
3660
3661     return ddraw7_EnumSurfaces((IDirectDraw7 *)ddraw_from_ddraw1(iface), flags,
3662             (DDSURFACEDESC2 *)surface_desc, &cbcontext, EnumSurfacesCallbackThunk);
3663 }
3664
3665 /*****************************************************************************
3666  * DirectDrawCreateClipper (DDRAW.@)
3667  *
3668  * Creates a new IDirectDrawClipper object.
3669  *
3670  * Params:
3671  *  Clipper: Address to write the interface pointer to
3672  *  UnkOuter: For aggregation support, which ddraw doesn't have. Has to be
3673  *            NULL
3674  *
3675  * Returns:
3676  *  CLASS_E_NOAGGREGATION if UnkOuter != NULL
3677  *  E_OUTOFMEMORY if allocating the object failed
3678  *
3679  *****************************************************************************/
3680 HRESULT WINAPI
3681 DirectDrawCreateClipper(DWORD Flags,
3682                         LPDIRECTDRAWCLIPPER *Clipper,
3683                         IUnknown *UnkOuter)
3684 {
3685     IDirectDrawClipperImpl* object;
3686     HRESULT hr;
3687
3688     TRACE("flags %#x, clipper %p, outer_unknown %p.\n",
3689             Flags, Clipper, UnkOuter);
3690
3691     EnterCriticalSection(&ddraw_cs);
3692     if (UnkOuter != NULL)
3693     {
3694         LeaveCriticalSection(&ddraw_cs);
3695         return CLASS_E_NOAGGREGATION;
3696     }
3697
3698     if (!LoadWineD3D())
3699     {
3700         LeaveCriticalSection(&ddraw_cs);
3701         return DDERR_NODIRECTDRAWSUPPORT;
3702     }
3703
3704     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
3705                      sizeof(IDirectDrawClipperImpl));
3706     if (object == NULL)
3707     {
3708         LeaveCriticalSection(&ddraw_cs);
3709         return E_OUTOFMEMORY;
3710     }
3711
3712     hr = ddraw_clipper_init(object);
3713     if (FAILED(hr))
3714     {
3715         WARN("Failed to initialize clipper, hr %#x.\n", hr);
3716         HeapFree(GetProcessHeap(), 0, object);
3717         LeaveCriticalSection(&ddraw_cs);
3718         return hr;
3719     }
3720
3721     TRACE("Created clipper %p.\n", object);
3722     *Clipper = (IDirectDrawClipper *) object;
3723     LeaveCriticalSection(&ddraw_cs);
3724     return DD_OK;
3725 }
3726
3727 /*****************************************************************************
3728  * IDirectDraw7::CreateClipper
3729  *
3730  * Creates a DDraw clipper. See DirectDrawCreateClipper for details
3731  *
3732  *****************************************************************************/
3733 static HRESULT WINAPI ddraw7_CreateClipper(IDirectDraw7 *iface, DWORD Flags,
3734         IDirectDrawClipper **Clipper, IUnknown *UnkOuter)
3735 {
3736     TRACE("iface %p, flags %#x, clipper %p, outer_unknown %p.\n",
3737             iface, Flags, Clipper, UnkOuter);
3738
3739     return DirectDrawCreateClipper(Flags, Clipper, UnkOuter);
3740 }
3741
3742 static HRESULT WINAPI ddraw4_CreateClipper(IDirectDraw4 *iface,
3743         DWORD flags, IDirectDrawClipper **clipper, IUnknown *outer_unknown)
3744 {
3745     TRACE("iface %p, flags %#x, clipper %p, outer_unknown %p.\n",
3746             iface, flags, clipper, outer_unknown);
3747
3748     return ddraw7_CreateClipper((IDirectDraw7 *)ddraw_from_ddraw4(iface), flags, clipper, outer_unknown);
3749 }
3750
3751 static HRESULT WINAPI ddraw3_CreateClipper(IDirectDraw3 *iface,
3752         DWORD flags, IDirectDrawClipper **clipper, IUnknown *outer_unknown)
3753 {
3754     TRACE("iface %p, flags %#x, clipper %p, outer_unknown %p.\n",
3755             iface, flags, clipper, outer_unknown);
3756
3757     return ddraw7_CreateClipper((IDirectDraw7 *)ddraw_from_ddraw3(iface), flags, clipper, outer_unknown);
3758 }
3759
3760 static HRESULT WINAPI ddraw2_CreateClipper(IDirectDraw2 *iface,
3761         DWORD flags, IDirectDrawClipper **clipper, IUnknown *outer_unknown)
3762 {
3763     TRACE("iface %p, flags %#x, clipper %p, outer_unknown %p.\n",
3764             iface, flags, clipper, outer_unknown);
3765
3766     return ddraw7_CreateClipper((IDirectDraw7 *)ddraw_from_ddraw2(iface), flags, clipper, outer_unknown);
3767 }
3768
3769 static HRESULT WINAPI ddraw1_CreateClipper(IDirectDraw *iface,
3770         DWORD flags, IDirectDrawClipper **clipper, IUnknown *outer_unknown)
3771 {
3772     TRACE("iface %p, flags %#x, clipper %p, outer_unknown %p.\n",
3773             iface, flags, clipper, outer_unknown);
3774
3775     return ddraw7_CreateClipper((IDirectDraw7 *)ddraw_from_ddraw1(iface), flags, clipper, outer_unknown);
3776 }
3777
3778 /*****************************************************************************
3779  * IDirectDraw7::CreatePalette
3780  *
3781  * Creates a new IDirectDrawPalette object
3782  *
3783  * Params:
3784  *  Flags: The flags for the new clipper
3785  *  ColorTable: Color table to assign to the new clipper
3786  *  Palette: Address to write the interface pointer to
3787  *  UnkOuter: For aggregation support, which ddraw doesn't have. Has to be
3788  *            NULL
3789  *
3790  * Returns:
3791  *  CLASS_E_NOAGGREGATION if UnkOuter != NULL
3792  *  E_OUTOFMEMORY if allocating the object failed
3793  *
3794  *****************************************************************************/
3795 static HRESULT WINAPI ddraw7_CreatePalette(IDirectDraw7 *iface, DWORD Flags,
3796         PALETTEENTRY *ColorTable, IDirectDrawPalette **Palette, IUnknown *pUnkOuter)
3797 {
3798     IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
3799     IDirectDrawPaletteImpl *object;
3800     HRESULT hr;
3801
3802     TRACE("iface %p, flags %#x, color_table %p, palette %p, outer_unknown %p.\n",
3803             iface, Flags, ColorTable, Palette, pUnkOuter);
3804
3805     EnterCriticalSection(&ddraw_cs);
3806     if(pUnkOuter != NULL)
3807     {
3808         WARN("pUnkOuter is %p, returning CLASS_E_NOAGGREGATION\n", pUnkOuter);
3809         LeaveCriticalSection(&ddraw_cs);
3810         return CLASS_E_NOAGGREGATION;
3811     }
3812
3813     /* The refcount test shows that a cooplevel is required for this */
3814     if(!This->cooperative_level)
3815     {
3816         WARN("No cooperative level set, returning DDERR_NOCOOPERATIVELEVELSET\n");
3817         LeaveCriticalSection(&ddraw_cs);
3818         return DDERR_NOCOOPERATIVELEVELSET;
3819     }
3820
3821     object = HeapAlloc(GetProcessHeap(), 0, sizeof(IDirectDrawPaletteImpl));
3822     if(!object)
3823     {
3824         ERR("Out of memory when allocating memory for a palette implementation\n");
3825         LeaveCriticalSection(&ddraw_cs);
3826         return E_OUTOFMEMORY;
3827     }
3828
3829     hr = ddraw_palette_init(object, This, Flags, ColorTable);
3830     if (FAILED(hr))
3831     {
3832         WARN("Failed to initialize palette, hr %#x.\n", hr);
3833         HeapFree(GetProcessHeap(), 0, object);
3834         LeaveCriticalSection(&ddraw_cs);
3835         return hr;
3836     }
3837
3838     TRACE("Created palette %p.\n", object);
3839     *Palette = (IDirectDrawPalette *)object;
3840     LeaveCriticalSection(&ddraw_cs);
3841     return DD_OK;
3842 }
3843
3844 static HRESULT WINAPI ddraw4_CreatePalette(IDirectDraw4 *iface, DWORD flags,
3845         PALETTEENTRY *entries, IDirectDrawPalette **palette, IUnknown *outer_unknown)
3846 {
3847     IDirectDrawImpl *ddraw = ddraw_from_ddraw4(iface);
3848     HRESULT hr;
3849
3850     TRACE("iface %p, flags %#x, entries %p, palette %p, outer_unknown %p.\n",
3851             iface, flags, entries, palette, outer_unknown);
3852
3853     hr = ddraw7_CreatePalette((IDirectDraw7 *)ddraw, flags, entries, palette, outer_unknown);
3854     if (SUCCEEDED(hr) && *palette)
3855     {
3856         IDirectDrawPaletteImpl *impl = (IDirectDrawPaletteImpl *)*palette;
3857         IDirectDraw7_Release((IDirectDraw7 *)ddraw);
3858         IDirectDraw4_AddRef(iface);
3859         impl->ifaceToRelease = (IUnknown *)iface;
3860     }
3861     return hr;
3862 }
3863
3864 static HRESULT WINAPI ddraw3_CreatePalette(IDirectDraw3 *iface, DWORD flags,
3865         PALETTEENTRY *entries, IDirectDrawPalette **palette, IUnknown *outer_unknown)
3866 {
3867     IDirectDrawImpl *ddraw = ddraw_from_ddraw3(iface);
3868     HRESULT hr;
3869
3870     TRACE("iface %p, flags %#x, entries %p, palette %p, outer_unknown %p.\n",
3871             iface, flags, entries, palette, outer_unknown);
3872
3873     hr = ddraw7_CreatePalette((IDirectDraw7 *)ddraw, flags, entries, palette, outer_unknown);
3874     if (SUCCEEDED(hr) && *palette)
3875     {
3876         IDirectDrawPaletteImpl *impl = (IDirectDrawPaletteImpl *)*palette;
3877         IDirectDraw7_Release((IDirectDraw7 *)ddraw);
3878         IDirectDraw4_AddRef(iface);
3879         impl->ifaceToRelease = (IUnknown *)iface;
3880     }
3881
3882     return hr;
3883 }
3884
3885 static HRESULT WINAPI ddraw2_CreatePalette(IDirectDraw2 *iface, DWORD flags,
3886         PALETTEENTRY *entries, IDirectDrawPalette **palette, IUnknown *outer_unknown)
3887 {
3888     IDirectDrawImpl *ddraw = ddraw_from_ddraw2(iface);
3889     HRESULT hr;
3890
3891     TRACE("iface %p, flags %#x, entries %p, palette %p, outer_unknown %p.\n",
3892             iface, flags, entries, palette, outer_unknown);
3893
3894     hr = ddraw7_CreatePalette((IDirectDraw7 *)ddraw, flags, entries, palette, outer_unknown);
3895     if (SUCCEEDED(hr) && *palette)
3896     {
3897         IDirectDrawPaletteImpl *impl = (IDirectDrawPaletteImpl *)*palette;
3898         IDirectDraw7_Release((IDirectDraw7 *)ddraw);
3899         impl->ifaceToRelease = NULL;
3900     }
3901
3902     return hr;
3903 }
3904
3905 static HRESULT WINAPI ddraw1_CreatePalette(IDirectDraw *iface, DWORD flags,
3906         PALETTEENTRY *entries, IDirectDrawPalette **palette, IUnknown *outer_unknown)
3907 {
3908     IDirectDrawImpl *ddraw = ddraw_from_ddraw1(iface);
3909     HRESULT hr;
3910
3911     TRACE("iface %p, flags %#x, entries %p, palette %p, outer_unknown %p.\n",
3912             iface, flags, entries, palette, outer_unknown);
3913
3914     hr = ddraw7_CreatePalette((IDirectDraw7 *)ddraw, flags, entries, palette, outer_unknown);
3915     if (SUCCEEDED(hr) && *palette)
3916     {
3917         IDirectDrawPaletteImpl *impl = (IDirectDrawPaletteImpl *)*palette;
3918         IDirectDraw7_Release((IDirectDraw7 *)ddraw);
3919         impl->ifaceToRelease = NULL;
3920     }
3921
3922     return hr;
3923 }
3924
3925 /*****************************************************************************
3926  * IDirectDraw7::DuplicateSurface
3927  *
3928  * Duplicates a surface. The surface memory points to the same memory as
3929  * the original surface, and it's released when the last surface referencing
3930  * it is released. I guess that's beyond Wine's surface management right now
3931  * (Idea: create a new DDraw surface with the same WineD3DSurface. I need a
3932  * test application to implement this)
3933  *
3934  * Params:
3935  *  Src: Address of the source surface
3936  *  Dest: Address to write the new surface pointer to
3937  *
3938  * Returns:
3939  *  See IDirectDraw7::CreateSurface
3940  *
3941  *****************************************************************************/
3942 static HRESULT WINAPI ddraw7_DuplicateSurface(IDirectDraw7 *iface,
3943         IDirectDrawSurface7 *Src, IDirectDrawSurface7 **Dest)
3944 {
3945     IDirectDrawSurfaceImpl *Surf = (IDirectDrawSurfaceImpl *)Src;
3946
3947     FIXME("iface %p, src %p, dst %p partial stub!\n", iface, Src, Dest);
3948
3949     /* For now, simply create a new, independent surface */
3950     return IDirectDraw7_CreateSurface(iface,
3951                                       &Surf->surface_desc,
3952                                       Dest,
3953                                       NULL);
3954 }
3955
3956 static HRESULT WINAPI ddraw4_DuplicateSurface(IDirectDraw4 *iface,
3957         IDirectDrawSurface4 *src, IDirectDrawSurface4 **dst)
3958 {
3959     TRACE("iface %p, src %p, dst %p.\n", iface, src, dst);
3960
3961     return ddraw7_DuplicateSurface((IDirectDraw7 *)ddraw_from_ddraw4(iface),
3962             (IDirectDrawSurface7 *)src, (IDirectDrawSurface7 **)dst);
3963 }
3964
3965 static HRESULT WINAPI ddraw3_DuplicateSurface(IDirectDraw3 *iface,
3966         IDirectDrawSurface *src, IDirectDrawSurface **dst)
3967 {
3968     IDirectDrawSurface7 *src7, *dst7;
3969     HRESULT hr;
3970
3971     TRACE("iface %p, src %p, dst %p.\n", iface, src, dst);
3972     src7 = (IDirectDrawSurface7 *)surface_from_surface3((IDirectDrawSurface3 *)src);
3973     hr = ddraw7_DuplicateSurface((IDirectDraw7 *)ddraw_from_ddraw3(iface), src7, &dst7);
3974     if (FAILED(hr))
3975         return hr;
3976     *dst = (IDirectDrawSurface *)&((IDirectDrawSurfaceImpl *)dst7)->IDirectDrawSurface3_vtbl;
3977     return hr;
3978 }
3979
3980 static HRESULT WINAPI ddraw2_DuplicateSurface(IDirectDraw2 *iface,
3981         IDirectDrawSurface *src, IDirectDrawSurface **dst)
3982 {
3983     IDirectDrawSurface7 *src7, *dst7;
3984     HRESULT hr;
3985
3986     TRACE("iface %p, src %p, dst %p.\n", iface, src, dst);
3987     src7 = (IDirectDrawSurface7 *)surface_from_surface3((IDirectDrawSurface3 *)src);
3988     hr = ddraw7_DuplicateSurface((IDirectDraw7 *)ddraw_from_ddraw2(iface), src7, &dst7);
3989     if (FAILED(hr))
3990         return hr;
3991     *dst = (IDirectDrawSurface *)&((IDirectDrawSurfaceImpl *)dst7)->IDirectDrawSurface3_vtbl;
3992     return hr;
3993 }
3994
3995 static HRESULT WINAPI ddraw1_DuplicateSurface(IDirectDraw *iface,
3996         IDirectDrawSurface *src, IDirectDrawSurface **dst)
3997 {
3998     IDirectDrawSurface7 *src7, *dst7;
3999     HRESULT hr;
4000
4001     TRACE("iface %p, src %p, dst %p.\n", iface, src, dst);
4002     src7 = (IDirectDrawSurface7 *)surface_from_surface3((IDirectDrawSurface3 *)src);
4003     hr = ddraw7_DuplicateSurface((IDirectDraw7 *)ddraw_from_ddraw1(iface), src7, &dst7);
4004     if (FAILED(hr))
4005         return hr;
4006     *dst = (IDirectDrawSurface *)&((IDirectDrawSurfaceImpl *)dst7)->IDirectDrawSurface3_vtbl;
4007     return hr;
4008 }
4009
4010 /*****************************************************************************
4011  * IDirect3D7::EnumDevices
4012  *
4013  * The EnumDevices method for IDirect3D7. It enumerates all supported
4014  * D3D7 devices. Currently the T&L, HAL and RGB devices are enumerated.
4015  *
4016  * Params:
4017  *  callback: Function to call for each enumerated device
4018  *  context: Pointer to pass back to the app
4019  *
4020  * Returns:
4021  *  D3D_OK, or the return value of the GetCaps call
4022  *
4023  *****************************************************************************/
4024 static HRESULT WINAPI d3d7_EnumDevices(IDirect3D7 *iface, LPD3DENUMDEVICESCALLBACK7 callback, void *context)
4025 {
4026     char interface_name_tnl[] = "WINE Direct3D7 Hardware Transform and Lighting acceleration using WineD3D";
4027     char device_name_tnl[] = "Wine D3D7 T&L HAL";
4028     char interface_name_hal[] = "WINE Direct3D7 Hardware acceleration using WineD3D";
4029     char device_name_hal[] = "Wine D3D7 HAL";
4030     char interface_name_rgb[] = "WINE Direct3D7 RGB Software Emulation using WineD3D";
4031     char device_name_rgb[] = "Wine D3D7 RGB";
4032
4033     IDirectDrawImpl *ddraw = ddraw_from_d3d7(iface);
4034     D3DDEVICEDESC7 device_desc7;
4035     D3DDEVICEDESC device_desc1;
4036     HRESULT hr;
4037
4038     TRACE("iface %p, callback %p, context %p.\n", iface, callback, context);
4039
4040     EnterCriticalSection(&ddraw_cs);
4041
4042     hr = IDirect3DImpl_GetCaps(ddraw->wineD3D, &device_desc1, &device_desc7);
4043     if (hr != D3D_OK)
4044     {
4045         LeaveCriticalSection(&ddraw_cs);
4046         return hr;
4047     }
4048     callback(interface_name_tnl, device_name_tnl, &device_desc7, context);
4049
4050     device_desc7.deviceGUID = IID_IDirect3DHALDevice;
4051     callback(interface_name_hal, device_name_hal, &device_desc7, context);
4052
4053     device_desc7.deviceGUID = IID_IDirect3DRGBDevice;
4054     callback(interface_name_rgb, device_name_rgb, &device_desc7, context);
4055
4056     TRACE("End of enumeration.\n");
4057
4058     LeaveCriticalSection(&ddraw_cs);
4059
4060     return D3D_OK;
4061 }
4062
4063 /*****************************************************************************
4064  * IDirect3D3::EnumDevices
4065  *
4066  * Enumerates all supported Direct3DDevice interfaces. This is the
4067  * implementation for Direct3D 1 to Direc3D 3, Version 7 has its own.
4068  *
4069  * Version 1, 2 and 3
4070  *
4071  * Params:
4072  *  callback: Application-provided routine to call for each enumerated device
4073  *  Context: Pointer to pass to the callback
4074  *
4075  * Returns:
4076  *  D3D_OK on success,
4077  *  The result of IDirect3DImpl_GetCaps if it failed
4078  *
4079  *****************************************************************************/
4080 static HRESULT WINAPI d3d3_EnumDevices(IDirect3D3 *iface, LPD3DENUMDEVICESCALLBACK callback, void *context)
4081 {
4082     static CHAR wined3d_description[] = "Wine D3DDevice using WineD3D and OpenGL";
4083
4084     IDirectDrawImpl *ddraw = ddraw_from_d3d3(iface);
4085     D3DDEVICEDESC device_desc1, hal_desc, hel_desc;
4086     D3DDEVICEDESC7 device_desc7;
4087     HRESULT hr;
4088
4089     /* Some games (Motoracer 2 demo) have the bad idea to modify the device
4090      * name string. Let's put the string in a sufficiently sized array in
4091      * writable memory. */
4092     char device_name[50];
4093     strcpy(device_name,"Direct3D HEL");
4094
4095     TRACE("iface %p, callback %p, context %p.\n", iface, callback, context);
4096
4097     EnterCriticalSection(&ddraw_cs);
4098
4099     hr = IDirect3DImpl_GetCaps(ddraw->wineD3D, &device_desc1, &device_desc7);
4100     if (hr != D3D_OK)
4101     {
4102         LeaveCriticalSection(&ddraw_cs);
4103         return hr;
4104     }
4105
4106     /* Do I have to enumerate the reference id? Note from old d3d7:
4107      * "It seems that enumerating the reference IID on Direct3D 1 games
4108      * (AvP / Motoracer2) breaks them". So do not enumerate this iid in V1
4109      *
4110      * There's a registry key HKLM\Software\Microsoft\Direct3D\Drivers,
4111      * EnumReference which enables / disables enumerating the reference
4112      * rasterizer. It's a DWORD, 0 means disabled, 2 means enabled. The
4113      * enablerefrast.reg and disablerefrast.reg files in the DirectX 7.0 sdk
4114      * demo directory suggest this.
4115      *
4116      * Some games(GTA 2) seem to use the second enumerated device, so I have
4117      * to enumerate at least 2 devices. So enumerate the reference device to
4118      * have 2 devices.
4119      *
4120      * Other games (Rollcage) tell emulation and hal device apart by certain
4121      * flags. Rollcage expects D3DPTEXTURECAPS_POW2 to be set (yeah, it is a
4122      * limitation flag), and it refuses all devices that have the perspective
4123      * flag set. This way it refuses the emulation device, and HAL devices
4124      * never have POW2 unset in d3d7 on windows. */
4125     if (ddraw->d3dversion != 1)
4126     {
4127         static CHAR reference_description[] = "RGB Direct3D emulation";
4128
4129         TRACE("Enumerating WineD3D D3DDevice interface.\n");
4130         hal_desc = device_desc1;
4131         hel_desc = device_desc1;
4132         /* The rgb device has the pow2 flag set in the hel caps, but not in the hal caps. */
4133         hal_desc.dpcLineCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2
4134                 | D3DPTEXTURECAPS_NONPOW2CONDITIONAL | D3DPTEXTURECAPS_PERSPECTIVE);
4135         hal_desc.dpcTriCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2
4136                 | D3DPTEXTURECAPS_NONPOW2CONDITIONAL | D3DPTEXTURECAPS_PERSPECTIVE);
4137         hr = callback((GUID *)&IID_IDirect3DRGBDevice, reference_description,
4138                 device_name, &hal_desc, &hel_desc, context);
4139         if (hr != D3DENUMRET_OK)
4140         {
4141             TRACE("Application cancelled the enumeration.\n");
4142             LeaveCriticalSection(&ddraw_cs);
4143             return D3D_OK;
4144         }
4145     }
4146
4147     strcpy(device_name,"Direct3D HAL");
4148
4149     TRACE("Enumerating HAL Direct3D device.\n");
4150     hal_desc = device_desc1;
4151     hel_desc = device_desc1;
4152     /* The hal device does not have the pow2 flag set in hel, but in hal. */
4153     hel_desc.dpcLineCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2
4154             | D3DPTEXTURECAPS_NONPOW2CONDITIONAL | D3DPTEXTURECAPS_PERSPECTIVE);
4155     hel_desc.dpcTriCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2
4156             | D3DPTEXTURECAPS_NONPOW2CONDITIONAL | D3DPTEXTURECAPS_PERSPECTIVE);
4157     hr = callback((GUID *)&IID_IDirect3DHALDevice, wined3d_description,
4158             device_name, &hal_desc, &hel_desc, context);
4159     if (hr != D3DENUMRET_OK)
4160     {
4161         TRACE("Application cancelled the enumeration.\n");
4162         LeaveCriticalSection(&ddraw_cs);
4163         return D3D_OK;
4164     }
4165
4166     TRACE("End of enumeration.\n");
4167
4168     LeaveCriticalSection(&ddraw_cs);
4169     return D3D_OK;
4170 }
4171
4172 static HRESULT WINAPI d3d2_EnumDevices(IDirect3D2 *iface, LPD3DENUMDEVICESCALLBACK callback, void *context)
4173 {
4174     TRACE("iface %p, callback %p, context %p.\n", iface, callback, context);
4175
4176     return d3d3_EnumDevices((IDirect3D3 *)&ddraw_from_d3d2(iface)->IDirect3D3_vtbl, callback, context);
4177 }
4178
4179 static HRESULT WINAPI d3d1_EnumDevices(IDirect3D *iface, LPD3DENUMDEVICESCALLBACK callback, void *context)
4180 {
4181     TRACE("iface %p, callback %p, context %p.\n", iface, callback, context);
4182
4183     return d3d3_EnumDevices((IDirect3D3 *)&ddraw_from_d3d1(iface)->IDirect3D3_vtbl, callback, context);
4184 }
4185
4186 /*****************************************************************************
4187  * IDirect3D3::CreateLight
4188  *
4189  * Creates an IDirect3DLight interface. This interface is used in
4190  * Direct3D3 or earlier for lighting. In Direct3D7 it has been replaced
4191  * by the DIRECT3DLIGHT7 structure. Wine's Direct3DLight implementation
4192  * uses the IDirect3DDevice7 interface with D3D7 lights.
4193  *
4194  * Version 1, 2 and 3
4195  *
4196  * Params:
4197  *  light: Address to store the new interface pointer
4198  *  outer_unknown: Basically for aggregation, but ddraw doesn't support it.
4199  *                 Must be NULL
4200  *
4201  * Returns:
4202  *  D3D_OK on success
4203  *  DDERR_OUTOFMEMORY if memory allocation failed
4204  *  CLASS_E_NOAGGREGATION if outer_unknown != NULL
4205  *
4206  *****************************************************************************/
4207 static HRESULT WINAPI d3d3_CreateLight(IDirect3D3 *iface, IDirect3DLight **light, IUnknown *outer_unknown)
4208 {
4209     IDirect3DLightImpl *object;
4210
4211     TRACE("iface %p, light %p, outer_unknown %p.\n", iface, light, outer_unknown);
4212
4213     if (outer_unknown) return CLASS_E_NOAGGREGATION;
4214
4215     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
4216     if (!object)
4217     {
4218         ERR("Failed to allocate light memory.\n");
4219         return DDERR_OUTOFMEMORY;
4220     }
4221
4222     d3d_light_init(object, ddraw_from_d3d3(iface));
4223
4224     TRACE("Created light %p.\n", object);
4225     *light = (IDirect3DLight *)object;
4226
4227     return D3D_OK;
4228 }
4229
4230 static HRESULT WINAPI d3d2_CreateLight(IDirect3D2 *iface, IDirect3DLight **light, IUnknown *outer_unknown)
4231 {
4232     TRACE("iface %p, light %p, outer_unknown %p.\n", iface, light, outer_unknown);
4233
4234     return d3d3_CreateLight((IDirect3D3 *)&ddraw_from_d3d2(iface)->IDirect3D3_vtbl, light, outer_unknown);
4235 }
4236
4237 static HRESULT WINAPI d3d1_CreateLight(IDirect3D *iface, IDirect3DLight **light, IUnknown *outer_unknown)
4238 {
4239     TRACE("iface %p, light %p, outer_unknown %p.\n", iface, light, outer_unknown);
4240
4241     return d3d3_CreateLight((IDirect3D3 *)&ddraw_from_d3d1(iface)->IDirect3D3_vtbl, light, outer_unknown);
4242 }
4243
4244 /*****************************************************************************
4245  * IDirect3D3::CreateMaterial
4246  *
4247  * Creates an IDirect3DMaterial interface. This interface is used by Direct3D3
4248  * and older versions. The IDirect3DMaterial implementation wraps its
4249  * functionality to IDirect3DDevice7::SetMaterial and friends.
4250  *
4251  * Version 1, 2 and 3
4252  *
4253  * Params:
4254  *  material: Address to store the new interface's pointer to
4255  *  outer_unknown: Basically for aggregation, but ddraw doesn't support it.
4256  *                 Must be NULL
4257  *
4258  * Returns:
4259  *  D3D_OK on success
4260  *  DDERR_OUTOFMEMORY if memory allocation failed
4261  *  CLASS_E_NOAGGREGATION if outer_unknown != NULL
4262  *
4263  *****************************************************************************/
4264 static HRESULT WINAPI d3d3_CreateMaterial(IDirect3D3 *iface, IDirect3DMaterial3 **material, IUnknown *outer_unknown)
4265 {
4266     IDirect3DMaterialImpl *object;
4267
4268     TRACE("iface %p, material %p, outer_unknown %p.\n", iface, material, outer_unknown);
4269
4270     if (outer_unknown) return CLASS_E_NOAGGREGATION;
4271
4272     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
4273     if (!object)
4274     {
4275         ERR("Failed to allocate material memory.\n");
4276         return DDERR_OUTOFMEMORY;
4277     }
4278
4279     d3d_material_init(object, ddraw_from_d3d3(iface));
4280
4281     TRACE("Created material %p.\n", object);
4282     *material = (IDirect3DMaterial3 *)object;
4283
4284     return D3D_OK;
4285 }
4286
4287 static HRESULT WINAPI d3d2_CreateMaterial(IDirect3D2 *iface, IDirect3DMaterial2 **material, IUnknown *outer_unknown)
4288 {
4289     IDirect3DMaterial3 *material3;
4290     HRESULT hr;
4291
4292     TRACE("iface %p, material %p, outer_unknown %p.\n", iface, material, outer_unknown);
4293
4294     hr = d3d3_CreateMaterial((IDirect3D3 *)&ddraw_from_d3d2(iface)->IDirect3D3_vtbl, &material3, outer_unknown);
4295     *material = material3 ? (IDirect3DMaterial2 *)&((IDirect3DMaterialImpl *)material3)->IDirect3DMaterial2_vtbl : NULL;
4296
4297     TRACE("Returning material %p.\n", *material);
4298
4299     return hr;
4300 }
4301
4302 static HRESULT WINAPI d3d1_CreateMaterial(IDirect3D *iface, IDirect3DMaterial **material, IUnknown *outer_unknown)
4303 {
4304     IDirect3DMaterial3 *material3;
4305     HRESULT hr;
4306
4307     TRACE("iface %p, material %p, outer_unknown %p.\n", iface, material, outer_unknown);
4308
4309     hr = d3d3_CreateMaterial((IDirect3D3 *)&ddraw_from_d3d1(iface)->IDirect3D3_vtbl, &material3, outer_unknown);
4310     *material = material3 ? (IDirect3DMaterial *)&((IDirect3DMaterialImpl *)material3)->IDirect3DMaterial_vtbl : NULL;
4311
4312     TRACE("Returning material %p.\n", *material);
4313
4314     return hr;
4315 }
4316
4317 /*****************************************************************************
4318  * IDirect3D3::CreateViewport
4319  *
4320  * Creates an IDirect3DViewport interface. This interface is used
4321  * by Direct3D and earlier versions for Viewport management. In Direct3D7
4322  * it has been replaced by a viewport structure and
4323  * IDirect3DDevice7::*Viewport. Wine's IDirect3DViewport implementation
4324  * uses the IDirect3DDevice7 methods for its functionality
4325  *
4326  * Params:
4327  *  Viewport: Address to store the new interface pointer
4328  *  outer_unknown: Basically for aggregation, but ddraw doesn't support it.
4329  *                 Must be NULL
4330  *
4331  * Returns:
4332  *  D3D_OK on success
4333  *  DDERR_OUTOFMEMORY if memory allocation failed
4334  *  CLASS_E_NOAGGREGATION if outer_unknown != NULL
4335  *
4336  *****************************************************************************/
4337 static HRESULT WINAPI d3d3_CreateViewport(IDirect3D3 *iface, IDirect3DViewport3 **viewport, IUnknown *outer_unknown)
4338 {
4339     IDirect3DViewportImpl *object;
4340
4341     TRACE("iface %p, viewport %p, outer_unknown %p.\n", iface, viewport, outer_unknown);
4342
4343     if (outer_unknown) return CLASS_E_NOAGGREGATION;
4344
4345     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
4346     if (!object)
4347     {
4348         ERR("Failed to allocate viewport memory.\n");
4349         return DDERR_OUTOFMEMORY;
4350     }
4351
4352     d3d_viewport_init(object, ddraw_from_d3d3(iface));
4353
4354     TRACE("Created viewport %p.\n", object);
4355     *viewport = (IDirect3DViewport3 *)object;
4356
4357     return D3D_OK;
4358 }
4359
4360 static HRESULT WINAPI d3d2_CreateViewport(IDirect3D2 *iface, IDirect3DViewport2 **viewport, IUnknown *outer_unknown)
4361 {
4362     TRACE("iface %p, viewport %p, outer_unknown %p.\n", iface, viewport, outer_unknown);
4363
4364     return d3d3_CreateViewport((IDirect3D3 *)&ddraw_from_d3d2(iface)->IDirect3D3_vtbl,
4365             (IDirect3DViewport3 **)viewport, outer_unknown);
4366 }
4367
4368 static HRESULT WINAPI d3d1_CreateViewport(IDirect3D *iface, IDirect3DViewport **viewport, IUnknown *outer_unknown)
4369 {
4370     TRACE("iface %p, viewport %p, outer_unknown %p.\n", iface, viewport, outer_unknown);
4371
4372     return d3d3_CreateViewport((IDirect3D3 *)&ddraw_from_d3d1(iface)->IDirect3D3_vtbl,
4373             (IDirect3DViewport3 **)viewport, outer_unknown);
4374 }
4375
4376 /*****************************************************************************
4377  * IDirect3D3::FindDevice
4378  *
4379  * This method finds a device with the requested properties and returns a
4380  * device description
4381  *
4382  * Verion 1, 2 and 3
4383  * Params:
4384  *  fds: Describes the requested device characteristics
4385  *  fdr: Returns the device description
4386  *
4387  * Returns:
4388  *  D3D_OK on success
4389  *  DDERR_INVALIDPARAMS if no device was found
4390  *
4391  *****************************************************************************/
4392 static HRESULT WINAPI d3d3_FindDevice(IDirect3D3 *iface, D3DFINDDEVICESEARCH *fds, D3DFINDDEVICERESULT *fdr)
4393 {
4394     IDirectDrawImpl *ddraw = ddraw_from_d3d3(iface);
4395     D3DDEVICEDESC7 desc7;
4396     D3DDEVICEDESC desc1;
4397     HRESULT hr;
4398
4399     TRACE("iface %p, fds %p, fdr %p.\n", iface, fds, fdr);
4400
4401     if (!fds || !fdr) return DDERR_INVALIDPARAMS;
4402
4403     if (fds->dwSize != sizeof(D3DFINDDEVICESEARCH)
4404             || fdr->dwSize != sizeof(D3DFINDDEVICERESULT))
4405         return DDERR_INVALIDPARAMS;
4406
4407     if ((fds->dwFlags & D3DFDS_COLORMODEL)
4408             && fds->dcmColorModel != D3DCOLOR_RGB)
4409     {
4410         WARN("Trying to request a non-RGB D3D color model. Not supported.\n");
4411         return DDERR_INVALIDPARAMS; /* No real idea what to return here :-) */
4412     }
4413
4414     if (fds->dwFlags & D3DFDS_GUID)
4415     {
4416         TRACE("Trying to match guid %s.\n", debugstr_guid(&(fds->guid)));
4417         if (!IsEqualGUID(&IID_D3DDEVICE_WineD3D, &fds->guid)
4418                 && !IsEqualGUID(&IID_IDirect3DHALDevice, &fds->guid)
4419                 && !IsEqualGUID(&IID_IDirect3DRGBDevice, &fds->guid))
4420         {
4421             WARN("No match for this GUID.\n");
4422             return DDERR_NOTFOUND;
4423         }
4424     }
4425
4426     /* Get the caps */
4427     hr = IDirect3DImpl_GetCaps(ddraw->wineD3D, &desc1, &desc7);
4428     if (hr != D3D_OK) return hr;
4429
4430     /* Now return our own GUID */
4431     fdr->guid = IID_D3DDEVICE_WineD3D;
4432     fdr->ddHwDesc = desc1;
4433     fdr->ddSwDesc = desc1;
4434
4435     TRACE("Returning Wine's wined3d device with (undumped) capabilities.\n");
4436
4437     return D3D_OK;
4438 }
4439
4440 static HRESULT WINAPI d3d2_FindDevice(IDirect3D2 *iface, D3DFINDDEVICESEARCH *fds, D3DFINDDEVICERESULT *fdr)
4441 {
4442     TRACE("iface %p, fds %p, fdr %p.\n", iface, fds, fdr);
4443
4444     return d3d3_FindDevice((IDirect3D3 *)&ddraw_from_d3d2(iface)->IDirect3D3_vtbl, fds, fdr);
4445 }
4446
4447 static HRESULT WINAPI d3d1_FindDevice(IDirect3D *iface, D3DFINDDEVICESEARCH *fds, D3DFINDDEVICERESULT *fdr)
4448 {
4449     TRACE("iface %p, fds %p, fdr %p.\n", iface, fds, fdr);
4450
4451     return d3d3_FindDevice((IDirect3D3 *)&ddraw_from_d3d1(iface)->IDirect3D3_vtbl, fds, fdr);
4452 }
4453
4454 /*****************************************************************************
4455  * IDirect3D7::CreateDevice
4456  *
4457  * Creates an IDirect3DDevice7 interface.
4458  *
4459  * Version 2, 3 and 7. IDirect3DDevice 1 interfaces are interfaces to
4460  * DirectDraw surfaces and are created with
4461  * IDirectDrawSurface::QueryInterface. This method uses CreateDevice to
4462  * create the device object and QueryInterfaces for IDirect3DDevice
4463  *
4464  * Params:
4465  *  refiid: IID of the device to create
4466  *  Surface: Initial rendertarget
4467  *  Device: Address to return the interface pointer
4468  *
4469  * Returns:
4470  *  D3D_OK on success
4471  *  DDERR_OUTOFMEMORY if memory allocation failed
4472  *  DDERR_INVALIDPARAMS if a device exists already
4473  *
4474  *****************************************************************************/
4475 static HRESULT WINAPI d3d7_CreateDevice(IDirect3D7 *iface, REFCLSID riid,
4476         IDirectDrawSurface7 *surface, IDirect3DDevice7 **device)
4477 {
4478     IDirectDrawSurfaceImpl *target = (IDirectDrawSurfaceImpl *)surface;
4479     IDirectDrawImpl *ddraw = ddraw_from_d3d7(iface);
4480     IDirect3DDeviceImpl *object;
4481     HRESULT hr;
4482
4483     TRACE("iface %p, riid %s, surface %p, device %p.\n", iface, debugstr_guid(riid), surface, device);
4484
4485     EnterCriticalSection(&ddraw_cs);
4486     *device = NULL;
4487
4488     /* Fail device creation if non-opengl surfaces are used. */
4489     if (ddraw->ImplType != SURFACE_OPENGL)
4490     {
4491         ERR("The application wants to create a Direct3D device, but non-opengl surfaces are set in the registry.\n");
4492         ERR("Please set the surface implementation to opengl or autodetection to allow 3D rendering.\n");
4493
4494         /* We only hit this path if a default surface is set in the registry. Incorrect autodetection
4495          * is caught in CreateSurface or QueryInterface. */
4496         LeaveCriticalSection(&ddraw_cs);
4497         return DDERR_NO3D;
4498     }
4499
4500     if (ddraw->d3ddevice)
4501     {
4502         FIXME("Only one Direct3D device per DirectDraw object supported.\n");
4503         LeaveCriticalSection(&ddraw_cs);
4504         return DDERR_INVALIDPARAMS;
4505     }
4506
4507     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
4508     if (!object)
4509     {
4510         ERR("Failed to allocate device memory.\n");
4511         LeaveCriticalSection(&ddraw_cs);
4512         return DDERR_OUTOFMEMORY;
4513     }
4514
4515     hr = d3d_device_init(object, ddraw, target);
4516     if (FAILED(hr))
4517     {
4518         WARN("Failed to initialize device, hr %#x.\n", hr);
4519         HeapFree(GetProcessHeap(), 0, object);
4520         LeaveCriticalSection(&ddraw_cs);
4521         return hr;
4522     }
4523
4524     TRACE("Created device %p.\n", object);
4525     *device = (IDirect3DDevice7 *)object;
4526
4527     LeaveCriticalSection(&ddraw_cs);
4528     return D3D_OK;
4529 }
4530
4531 static HRESULT WINAPI d3d3_CreateDevice(IDirect3D3 *iface, REFCLSID riid,
4532         IDirectDrawSurface4 *surface, IDirect3DDevice3 **device, IUnknown *outer_unknown)
4533 {
4534     HRESULT hr;
4535
4536     TRACE("iface %p, riid %s, surface %p, device %p, outer_unknown %p.\n",
4537             iface, debugstr_guid(riid), surface, device, outer_unknown);
4538
4539     if (outer_unknown) return CLASS_E_NOAGGREGATION;
4540
4541     hr = d3d7_CreateDevice((IDirect3D7 *)&ddraw_from_d3d3(iface)->IDirect3D7_vtbl, riid,
4542             (IDirectDrawSurface7 *)surface, (IDirect3DDevice7 **)device);
4543     if (*device) *device = (IDirect3DDevice3 *)&((IDirect3DDeviceImpl *)*device)->IDirect3DDevice3_vtbl;
4544
4545     return hr;
4546 }
4547
4548 static HRESULT WINAPI d3d2_CreateDevice(IDirect3D2 *iface, REFCLSID riid,
4549         IDirectDrawSurface *surface, IDirect3DDevice2 **device)
4550 {
4551     HRESULT hr;
4552
4553     TRACE("iface %p, riid %s, surface %p, device %p.\n",
4554             iface, debugstr_guid(riid), surface, device);
4555
4556     hr = d3d7_CreateDevice((IDirect3D7 *)&ddraw_from_d3d2(iface)->IDirect3D7_vtbl, riid,
4557             surface ? (IDirectDrawSurface7 *)surface_from_surface3((IDirectDrawSurface3 *)surface) : NULL,
4558             (IDirect3DDevice7 **)device);
4559     if (*device) *device = (IDirect3DDevice2 *)&((IDirect3DDeviceImpl *)*device)->IDirect3DDevice2_vtbl;
4560
4561     return hr;
4562 }
4563
4564 /*****************************************************************************
4565  * IDirect3D7::CreateVertexBuffer
4566  *
4567  * Creates a new vertex buffer object and returns a IDirect3DVertexBuffer7
4568  * interface.
4569  *
4570  * Version 3 and 7
4571  *
4572  * Params:
4573  *  desc: Requested Vertex buffer properties
4574  *  vertex_buffer: Address to return the interface pointer at
4575  *  flags: Some flags, should be 0
4576  *
4577  * Returns
4578  *  D3D_OK on success
4579  *  DDERR_OUTOFMEMORY if memory allocation failed
4580  *  The return value of IWineD3DDevice::CreateVertexBuffer if this call fails
4581  *  DDERR_INVALIDPARAMS if desc or vertex_buffer are NULL
4582  *
4583  *****************************************************************************/
4584 static HRESULT WINAPI d3d7_CreateVertexBuffer(IDirect3D7 *iface, D3DVERTEXBUFFERDESC *desc,
4585         IDirect3DVertexBuffer7 **vertex_buffer, DWORD flags)
4586 {
4587     IDirect3DVertexBufferImpl *object;
4588     HRESULT hr;
4589
4590     TRACE("iface %p, desc %p, vertex_buffer %p, flags %#x.\n",
4591             iface, desc, vertex_buffer, flags);
4592
4593     if (!vertex_buffer || !desc) return DDERR_INVALIDPARAMS;
4594
4595     TRACE("Vertex buffer description:\n");
4596     TRACE("    dwSize %u\n", desc->dwSize);
4597     TRACE("    dwCaps %#x\n", desc->dwCaps);
4598     TRACE("    FVF %#x\n", desc->dwFVF);
4599     TRACE("    dwNumVertices %u\n", desc->dwNumVertices);
4600
4601     /* Now create the vertex buffer */
4602     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
4603     if (!object)
4604     {
4605         ERR("Failed to allocate vertex buffer memory.\n");
4606         return DDERR_OUTOFMEMORY;
4607     }
4608
4609     hr = d3d_vertex_buffer_init(object, ddraw_from_d3d7(iface), desc);
4610     if (FAILED(hr))
4611     {
4612         WARN("Failed to initialize vertex buffer, hr %#x.\n", hr);
4613         HeapFree(GetProcessHeap(), 0, object);
4614         return hr;
4615     }
4616
4617     TRACE("Created vertex buffer %p.\n", object);
4618     *vertex_buffer = (IDirect3DVertexBuffer7 *)object;
4619
4620     return D3D_OK;
4621 }
4622
4623 static HRESULT WINAPI d3d3_CreateVertexBuffer(IDirect3D3 *iface, D3DVERTEXBUFFERDESC *desc,
4624         IDirect3DVertexBuffer **vertex_buffer, DWORD flags, IUnknown *outer_unknown)
4625 {
4626     IDirectDrawImpl *This = ddraw_from_d3d3(iface);
4627     HRESULT hr;
4628
4629     TRACE("iface %p, desc %p, vertex_buffer %p, flags %#x, outer_unknown %p.\n",
4630             iface, desc, vertex_buffer, flags, outer_unknown);
4631
4632     if (outer_unknown) return CLASS_E_NOAGGREGATION;
4633
4634     hr = d3d7_CreateVertexBuffer((IDirect3D7 *)&This->IDirect3D7_vtbl,
4635             desc, (IDirect3DVertexBuffer7 **)vertex_buffer, flags);
4636     if (*vertex_buffer)
4637         *vertex_buffer = (IDirect3DVertexBuffer *)&((IDirect3DVertexBufferImpl *)*vertex_buffer)->IDirect3DVertexBuffer_vtbl;
4638
4639     return hr;
4640 }
4641
4642 /*****************************************************************************
4643  * IDirect3D7::EnumZBufferFormats
4644  *
4645  * Enumerates all supported Z buffer pixel formats
4646  *
4647  * Version 3 and 7
4648  *
4649  * Params:
4650  *  device_iid:
4651  *  callback: callback to call for each pixel format
4652  *  context: Pointer to pass back to the callback
4653  *
4654  * Returns:
4655  *  D3D_OK on success
4656  *  DDERR_INVALIDPARAMS if callback is NULL
4657  *  For details, see IWineD3DDevice::EnumZBufferFormats
4658  *
4659  *****************************************************************************/
4660 static HRESULT WINAPI d3d7_EnumZBufferFormats(IDirect3D7 *iface, REFCLSID device_iid,
4661         LPD3DENUMPIXELFORMATSCALLBACK callback, void *context)
4662 {
4663     IDirectDrawImpl *ddraw = ddraw_from_d3d7(iface);
4664     WINED3DDISPLAYMODE d3ddm;
4665     WINED3DDEVTYPE type;
4666     unsigned int i;
4667     HRESULT hr;
4668
4669     /* Order matters. Specifically, BattleZone II (full version) expects the
4670      * 16-bit depth formats to be listed before the 24 and 32 ones. */
4671     static const enum wined3d_format_id formats[] =
4672     {
4673         WINED3DFMT_S1_UINT_D15_UNORM,
4674         WINED3DFMT_D16_UNORM,
4675         WINED3DFMT_X8D24_UNORM,
4676         WINED3DFMT_S4X4_UINT_D24_UNORM,
4677         WINED3DFMT_D24_UNORM_S8_UINT,
4678         WINED3DFMT_D32_UNORM,
4679     };
4680
4681     TRACE("iface %p, device_iid %s, callback %p, context %p.\n",
4682             iface, debugstr_guid(device_iid), callback, context);
4683
4684     if (!callback) return DDERR_INVALIDPARAMS;
4685
4686     if (IsEqualGUID(device_iid, &IID_IDirect3DHALDevice)
4687             || IsEqualGUID(device_iid, &IID_IDirect3DTnLHalDevice)
4688             || IsEqualGUID(device_iid, &IID_D3DDEVICE_WineD3D))
4689     {
4690         TRACE("Asked for HAL device.\n");
4691         type = WINED3DDEVTYPE_HAL;
4692     }
4693     else if (IsEqualGUID(device_iid, &IID_IDirect3DRGBDevice)
4694             || IsEqualGUID(device_iid, &IID_IDirect3DMMXDevice))
4695     {
4696         TRACE("Asked for SW device.\n");
4697         type = WINED3DDEVTYPE_SW;
4698     }
4699     else if (IsEqualGUID(device_iid, &IID_IDirect3DRefDevice))
4700     {
4701         TRACE("Asked for REF device.\n");
4702         type = WINED3DDEVTYPE_REF;
4703     }
4704     else if (IsEqualGUID(device_iid, &IID_IDirect3DNullDevice))
4705     {
4706         TRACE("Asked for NULLREF device.\n");
4707         type = WINED3DDEVTYPE_NULLREF;
4708     }
4709     else
4710     {
4711         FIXME("Unexpected device GUID %s.\n", debugstr_guid(device_iid));
4712         type = WINED3DDEVTYPE_HAL;
4713     }
4714
4715     EnterCriticalSection(&ddraw_cs);
4716     /* We need an adapter format from somewhere to please wined3d and WGL.
4717      * Use the current display mode. So far all cards offer the same depth
4718      * stencil format for all modes, but if some do not and applications do
4719      * not like that we'll have to find some workaround, like iterating over
4720      * all imaginable formats and collecting all the depth stencil formats we
4721      * can get. */
4722     hr = IWineD3DDevice_GetDisplayMode(ddraw->wineD3DDevice, 0, &d3ddm);
4723
4724     for (i = 0; i < (sizeof(formats) / sizeof(*formats)); ++i)
4725     {
4726         hr = IWineD3D_CheckDeviceFormat(ddraw->wineD3D, WINED3DADAPTER_DEFAULT, type, d3ddm.Format,
4727                 WINED3DUSAGE_DEPTHSTENCIL, WINED3DRTYPE_SURFACE, formats[i], SURFACE_OPENGL);
4728         if (SUCCEEDED(hr))
4729         {
4730             DDPIXELFORMAT pformat;
4731
4732             memset(&pformat, 0, sizeof(pformat));
4733             pformat.dwSize = sizeof(pformat);
4734             PixelFormat_WineD3DtoDD(&pformat, formats[i]);
4735
4736             TRACE("Enumerating wined3d format %#x.\n", formats[i]);
4737             hr = callback(&pformat, context);
4738             if (hr != DDENUMRET_OK)
4739             {
4740                 TRACE("Format enumeration cancelled by application.\n");
4741                 LeaveCriticalSection(&ddraw_cs);
4742                 return D3D_OK;
4743             }
4744         }
4745     }
4746     TRACE("End of enumeration.\n");
4747
4748     LeaveCriticalSection(&ddraw_cs);
4749     return D3D_OK;
4750 }
4751
4752 static HRESULT WINAPI d3d3_EnumZBufferFormats(IDirect3D3 *iface, REFCLSID device_iid,
4753         LPD3DENUMPIXELFORMATSCALLBACK callback, void *context)
4754 {
4755     TRACE("iface %p, device_iid %s, callback %p, context %p.\n",
4756             iface, debugstr_guid(device_iid), callback, context);
4757
4758     return d3d7_EnumZBufferFormats((IDirect3D7 *)&ddraw_from_d3d3(iface)->IDirect3D7_vtbl,
4759             device_iid, callback, context);
4760 }
4761
4762 /*****************************************************************************
4763  * IDirect3D7::EvictManagedTextures
4764  *
4765  * Removes all managed textures (=surfaces with DDSCAPS2_TEXTUREMANAGE or
4766  * DDSCAPS2_D3DTEXTUREMANAGE caps) to be removed from video memory.
4767  *
4768  * Version 3 and 7
4769  *
4770  * Returns:
4771  *  D3D_OK, because it's a stub
4772  *
4773  *****************************************************************************/
4774 static HRESULT WINAPI d3d7_EvictManagedTextures(IDirect3D7 *iface)
4775 {
4776     FIXME("iface %p stub!\n", iface);
4777
4778     /* TODO: Just enumerate resources using IWineD3DDevice_EnumResources(),
4779      * then unload surfaces / textures. */
4780
4781     return D3D_OK;
4782 }
4783
4784 static HRESULT WINAPI d3d3_EvictManagedTextures(IDirect3D3 *iface)
4785 {
4786     TRACE("iface %p.\n", iface);
4787
4788     return d3d7_EvictManagedTextures((IDirect3D7 *)&ddraw_from_d3d3(iface)->IDirect3D7_vtbl);
4789 }
4790
4791 /*****************************************************************************
4792  * IDirect3DImpl_GetCaps
4793  *
4794  * This function retrieves the device caps from wined3d
4795  * and converts it into a D3D7 and D3D - D3D3 structure
4796  * This is a helper function called from various places in ddraw
4797  *
4798  * Params:
4799  *  wined3d: The interface to get the caps from
4800  *  desc1: Old D3D <3 structure to fill (needed)
4801  *  desc7: D3D7 device desc structure to fill (needed)
4802  *
4803  * Returns
4804  *  D3D_OK on success, or the return value of IWineD3D::GetCaps
4805  *
4806  *****************************************************************************/
4807 HRESULT IDirect3DImpl_GetCaps(IWineD3D *wined3d, D3DDEVICEDESC *desc1, D3DDEVICEDESC7 *desc7)
4808 {
4809     WINED3DCAPS wined3d_caps;
4810     HRESULT hr;
4811
4812     TRACE("wined3d %p, desc1 %p, desc7 %p.\n", wined3d, desc1, desc7);
4813
4814     memset(&wined3d_caps, 0, sizeof(wined3d_caps));
4815
4816     EnterCriticalSection(&ddraw_cs);
4817     hr = IWineD3D_GetDeviceCaps(wined3d, 0, WINED3DDEVTYPE_HAL, &wined3d_caps);
4818     LeaveCriticalSection(&ddraw_cs);
4819     if (FAILED(hr))
4820     {
4821         WARN("Failed to get device caps, hr %#x.\n", hr);
4822         return hr;
4823     }
4824
4825     /* Copy the results into the d3d7 and d3d3 structures */
4826     desc7->dwDevCaps = wined3d_caps.DevCaps;
4827     desc7->dpcLineCaps.dwMiscCaps = wined3d_caps.PrimitiveMiscCaps;
4828     desc7->dpcLineCaps.dwRasterCaps = wined3d_caps.RasterCaps;
4829     desc7->dpcLineCaps.dwZCmpCaps = wined3d_caps.ZCmpCaps;
4830     desc7->dpcLineCaps.dwSrcBlendCaps = wined3d_caps.SrcBlendCaps;
4831     desc7->dpcLineCaps.dwDestBlendCaps = wined3d_caps.DestBlendCaps;
4832     desc7->dpcLineCaps.dwAlphaCmpCaps = wined3d_caps.AlphaCmpCaps;
4833     desc7->dpcLineCaps.dwShadeCaps = wined3d_caps.ShadeCaps;
4834     desc7->dpcLineCaps.dwTextureCaps = wined3d_caps.TextureCaps;
4835     desc7->dpcLineCaps.dwTextureFilterCaps = wined3d_caps.TextureFilterCaps;
4836     desc7->dpcLineCaps.dwTextureAddressCaps = wined3d_caps.TextureAddressCaps;
4837
4838     desc7->dwMaxTextureWidth = wined3d_caps.MaxTextureWidth;
4839     desc7->dwMaxTextureHeight = wined3d_caps.MaxTextureHeight;
4840
4841     desc7->dwMaxTextureRepeat = wined3d_caps.MaxTextureRepeat;
4842     desc7->dwMaxTextureAspectRatio = wined3d_caps.MaxTextureAspectRatio;
4843     desc7->dwMaxAnisotropy = wined3d_caps.MaxAnisotropy;
4844     desc7->dvMaxVertexW = wined3d_caps.MaxVertexW;
4845
4846     desc7->dvGuardBandLeft = wined3d_caps.GuardBandLeft;
4847     desc7->dvGuardBandTop = wined3d_caps.GuardBandTop;
4848     desc7->dvGuardBandRight = wined3d_caps.GuardBandRight;
4849     desc7->dvGuardBandBottom = wined3d_caps.GuardBandBottom;
4850
4851     desc7->dvExtentsAdjust = wined3d_caps.ExtentsAdjust;
4852     desc7->dwStencilCaps = wined3d_caps.StencilCaps;
4853
4854     desc7->dwFVFCaps = wined3d_caps.FVFCaps;
4855     desc7->dwTextureOpCaps = wined3d_caps.TextureOpCaps;
4856
4857     desc7->dwVertexProcessingCaps = wined3d_caps.VertexProcessingCaps;
4858     desc7->dwMaxActiveLights = wined3d_caps.MaxActiveLights;
4859
4860     /* Remove all non-d3d7 caps */
4861     desc7->dwDevCaps &= (
4862         D3DDEVCAPS_FLOATTLVERTEX         | D3DDEVCAPS_SORTINCREASINGZ          | D3DDEVCAPS_SORTDECREASINGZ          |
4863         D3DDEVCAPS_SORTEXACT             | D3DDEVCAPS_EXECUTESYSTEMMEMORY      | D3DDEVCAPS_EXECUTEVIDEOMEMORY       |
4864         D3DDEVCAPS_TLVERTEXSYSTEMMEMORY  | D3DDEVCAPS_TLVERTEXVIDEOMEMORY      | D3DDEVCAPS_TEXTURESYSTEMMEMORY      |
4865         D3DDEVCAPS_TEXTUREVIDEOMEMORY    | D3DDEVCAPS_DRAWPRIMTLVERTEX         | D3DDEVCAPS_CANRENDERAFTERFLIP       |
4866         D3DDEVCAPS_TEXTURENONLOCALVIDMEM | D3DDEVCAPS_DRAWPRIMITIVES2          | D3DDEVCAPS_SEPARATETEXTUREMEMORIES  |
4867         D3DDEVCAPS_DRAWPRIMITIVES2EX     | D3DDEVCAPS_HWTRANSFORMANDLIGHT      | D3DDEVCAPS_CANBLTSYSTONONLOCAL      |
4868         D3DDEVCAPS_HWRASTERIZATION);
4869
4870     desc7->dwStencilCaps &= (
4871         D3DSTENCILCAPS_KEEP              | D3DSTENCILCAPS_ZERO                 | D3DSTENCILCAPS_REPLACE              |
4872         D3DSTENCILCAPS_INCRSAT           | D3DSTENCILCAPS_DECRSAT              | D3DSTENCILCAPS_INVERT               |
4873         D3DSTENCILCAPS_INCR              | D3DSTENCILCAPS_DECR);
4874
4875     /* FVF caps ?*/
4876
4877     desc7->dwTextureOpCaps &= (
4878         D3DTEXOPCAPS_DISABLE             | D3DTEXOPCAPS_SELECTARG1             | D3DTEXOPCAPS_SELECTARG2             |
4879         D3DTEXOPCAPS_MODULATE            | D3DTEXOPCAPS_MODULATE2X             | D3DTEXOPCAPS_MODULATE4X             |
4880         D3DTEXOPCAPS_ADD                 | D3DTEXOPCAPS_ADDSIGNED              | D3DTEXOPCAPS_ADDSIGNED2X            |
4881         D3DTEXOPCAPS_SUBTRACT            | D3DTEXOPCAPS_ADDSMOOTH              | D3DTEXOPCAPS_BLENDTEXTUREALPHA      |
4882         D3DTEXOPCAPS_BLENDFACTORALPHA    | D3DTEXOPCAPS_BLENDTEXTUREALPHAPM    | D3DTEXOPCAPS_BLENDCURRENTALPHA      |
4883         D3DTEXOPCAPS_PREMODULATE         | D3DTEXOPCAPS_MODULATEALPHA_ADDCOLOR | D3DTEXOPCAPS_MODULATECOLOR_ADDALPHA |
4884         D3DTEXOPCAPS_MODULATEINVALPHA_ADDCOLOR | D3DTEXOPCAPS_MODULATEINVCOLOR_ADDALPHA | D3DTEXOPCAPS_BUMPENVMAP    |
4885         D3DTEXOPCAPS_BUMPENVMAPLUMINANCE | D3DTEXOPCAPS_DOTPRODUCT3);
4886
4887     desc7->dwVertexProcessingCaps &= (
4888         D3DVTXPCAPS_TEXGEN               | D3DVTXPCAPS_MATERIALSOURCE7         | D3DVTXPCAPS_VERTEXFOG               |
4889         D3DVTXPCAPS_DIRECTIONALLIGHTS    | D3DVTXPCAPS_POSITIONALLIGHTS        | D3DVTXPCAPS_LOCALVIEWER);
4890
4891     desc7->dpcLineCaps.dwMiscCaps &= (
4892         D3DPMISCCAPS_MASKPLANES          | D3DPMISCCAPS_MASKZ                  | D3DPMISCCAPS_LINEPATTERNREP         |
4893         D3DPMISCCAPS_CONFORMANT          | D3DPMISCCAPS_CULLNONE               | D3DPMISCCAPS_CULLCW                 |
4894         D3DPMISCCAPS_CULLCCW);
4895
4896     desc7->dpcLineCaps.dwRasterCaps &= (
4897         D3DPRASTERCAPS_DITHER            | D3DPRASTERCAPS_ROP2                 | D3DPRASTERCAPS_XOR                  |
4898         D3DPRASTERCAPS_PAT               | D3DPRASTERCAPS_ZTEST                | D3DPRASTERCAPS_SUBPIXEL             |
4899         D3DPRASTERCAPS_SUBPIXELX         | D3DPRASTERCAPS_FOGVERTEX            | D3DPRASTERCAPS_FOGTABLE             |
4900         D3DPRASTERCAPS_STIPPLE           | D3DPRASTERCAPS_ANTIALIASSORTDEPENDENT | D3DPRASTERCAPS_ANTIALIASSORTINDEPENDENT |
4901         D3DPRASTERCAPS_ANTIALIASEDGES    | D3DPRASTERCAPS_MIPMAPLODBIAS        | D3DPRASTERCAPS_ZBIAS                |
4902         D3DPRASTERCAPS_ZBUFFERLESSHSR    | D3DPRASTERCAPS_FOGRANGE             | D3DPRASTERCAPS_ANISOTROPY           |
4903         D3DPRASTERCAPS_WBUFFER           | D3DPRASTERCAPS_TRANSLUCENTSORTINDEPENDENT | D3DPRASTERCAPS_WFOG           |
4904         D3DPRASTERCAPS_ZFOG);
4905
4906     desc7->dpcLineCaps.dwZCmpCaps &= (
4907         D3DPCMPCAPS_NEVER                | D3DPCMPCAPS_LESS                    | D3DPCMPCAPS_EQUAL                   |
4908         D3DPCMPCAPS_LESSEQUAL            | D3DPCMPCAPS_GREATER                 | D3DPCMPCAPS_NOTEQUAL                |
4909         D3DPCMPCAPS_GREATEREQUAL         | D3DPCMPCAPS_ALWAYS);
4910
4911     desc7->dpcLineCaps.dwSrcBlendCaps &= (
4912         D3DPBLENDCAPS_ZERO               | D3DPBLENDCAPS_ONE                   | D3DPBLENDCAPS_SRCCOLOR              |
4913         D3DPBLENDCAPS_INVSRCCOLOR        | D3DPBLENDCAPS_SRCALPHA              | D3DPBLENDCAPS_INVSRCALPHA           |
4914         D3DPBLENDCAPS_DESTALPHA          | D3DPBLENDCAPS_INVDESTALPHA          | D3DPBLENDCAPS_DESTCOLOR             |
4915         D3DPBLENDCAPS_INVDESTCOLOR       | D3DPBLENDCAPS_SRCALPHASAT           | D3DPBLENDCAPS_BOTHSRCALPHA          |
4916         D3DPBLENDCAPS_BOTHINVSRCALPHA);
4917
4918     desc7->dpcLineCaps.dwDestBlendCaps &= (
4919         D3DPBLENDCAPS_ZERO               | D3DPBLENDCAPS_ONE                   | D3DPBLENDCAPS_SRCCOLOR              |
4920         D3DPBLENDCAPS_INVSRCCOLOR        | D3DPBLENDCAPS_SRCALPHA              | D3DPBLENDCAPS_INVSRCALPHA           |
4921         D3DPBLENDCAPS_DESTALPHA          | D3DPBLENDCAPS_INVDESTALPHA          | D3DPBLENDCAPS_DESTCOLOR             |
4922         D3DPBLENDCAPS_INVDESTCOLOR       | D3DPBLENDCAPS_SRCALPHASAT           | D3DPBLENDCAPS_BOTHSRCALPHA          |
4923         D3DPBLENDCAPS_BOTHINVSRCALPHA);
4924
4925     desc7->dpcLineCaps.dwAlphaCmpCaps &= (
4926         D3DPCMPCAPS_NEVER                | D3DPCMPCAPS_LESS                    | D3DPCMPCAPS_EQUAL                   |
4927         D3DPCMPCAPS_LESSEQUAL            | D3DPCMPCAPS_GREATER                 | D3DPCMPCAPS_NOTEQUAL                |
4928         D3DPCMPCAPS_GREATEREQUAL         | D3DPCMPCAPS_ALWAYS);
4929
4930     desc7->dpcLineCaps.dwShadeCaps &= (
4931         D3DPSHADECAPS_COLORFLATMONO      | D3DPSHADECAPS_COLORFLATRGB          | D3DPSHADECAPS_COLORGOURAUDMONO      |
4932         D3DPSHADECAPS_COLORGOURAUDRGB    | D3DPSHADECAPS_COLORPHONGMONO        | D3DPSHADECAPS_COLORPHONGRGB         |
4933         D3DPSHADECAPS_SPECULARFLATMONO   | D3DPSHADECAPS_SPECULARFLATRGB       | D3DPSHADECAPS_SPECULARGOURAUDMONO   |
4934         D3DPSHADECAPS_SPECULARGOURAUDRGB | D3DPSHADECAPS_SPECULARPHONGMONO     | D3DPSHADECAPS_SPECULARPHONGRGB      |
4935         D3DPSHADECAPS_ALPHAFLATBLEND     | D3DPSHADECAPS_ALPHAFLATSTIPPLED     | D3DPSHADECAPS_ALPHAGOURAUDBLEND     |
4936         D3DPSHADECAPS_ALPHAGOURAUDSTIPPLED | D3DPSHADECAPS_ALPHAPHONGBLEND     | D3DPSHADECAPS_ALPHAPHONGSTIPPLED    |
4937         D3DPSHADECAPS_FOGFLAT            | D3DPSHADECAPS_FOGGOURAUD            | D3DPSHADECAPS_FOGPHONG);
4938
4939     desc7->dpcLineCaps.dwTextureCaps &= (
4940         D3DPTEXTURECAPS_PERSPECTIVE      | D3DPTEXTURECAPS_POW2                | D3DPTEXTURECAPS_ALPHA               |
4941         D3DPTEXTURECAPS_TRANSPARENCY     | D3DPTEXTURECAPS_BORDER              | D3DPTEXTURECAPS_SQUAREONLY          |
4942         D3DPTEXTURECAPS_TEXREPEATNOTSCALEDBYSIZE | D3DPTEXTURECAPS_ALPHAPALETTE| D3DPTEXTURECAPS_NONPOW2CONDITIONAL  |
4943         D3DPTEXTURECAPS_PROJECTED        | D3DPTEXTURECAPS_CUBEMAP             | D3DPTEXTURECAPS_COLORKEYBLEND);
4944
4945     desc7->dpcLineCaps.dwTextureFilterCaps &= (
4946         D3DPTFILTERCAPS_NEAREST          | D3DPTFILTERCAPS_LINEAR              | D3DPTFILTERCAPS_MIPNEAREST          |
4947         D3DPTFILTERCAPS_MIPLINEAR        | D3DPTFILTERCAPS_LINEARMIPNEAREST    | D3DPTFILTERCAPS_LINEARMIPLINEAR     |
4948         D3DPTFILTERCAPS_MINFPOINT        | D3DPTFILTERCAPS_MINFLINEAR          | D3DPTFILTERCAPS_MINFANISOTROPIC     |
4949         D3DPTFILTERCAPS_MIPFPOINT        | D3DPTFILTERCAPS_MIPFLINEAR          | D3DPTFILTERCAPS_MAGFPOINT           |
4950         D3DPTFILTERCAPS_MAGFLINEAR       | D3DPTFILTERCAPS_MAGFANISOTROPIC     | D3DPTFILTERCAPS_MAGFAFLATCUBIC      |
4951         D3DPTFILTERCAPS_MAGFGAUSSIANCUBIC);
4952
4953     desc7->dpcLineCaps.dwTextureBlendCaps &= (
4954         D3DPTBLENDCAPS_DECAL             | D3DPTBLENDCAPS_MODULATE             | D3DPTBLENDCAPS_DECALALPHA           |
4955         D3DPTBLENDCAPS_MODULATEALPHA     | D3DPTBLENDCAPS_DECALMASK            | D3DPTBLENDCAPS_MODULATEMASK         |
4956         D3DPTBLENDCAPS_COPY              | D3DPTBLENDCAPS_ADD);
4957
4958     desc7->dpcLineCaps.dwTextureAddressCaps &= (
4959         D3DPTADDRESSCAPS_WRAP            | D3DPTADDRESSCAPS_MIRROR             | D3DPTADDRESSCAPS_CLAMP              |
4960         D3DPTADDRESSCAPS_BORDER          | D3DPTADDRESSCAPS_INDEPENDENTUV);
4961
4962     if (!(desc7->dpcLineCaps.dwTextureCaps & D3DPTEXTURECAPS_POW2))
4963     {
4964         /* DirectX7 always has the np2 flag set, no matter what the card
4965          * supports. Some old games (Rollcage) check the caps incorrectly.
4966          * If wined3d supports nonpow2 textures it also has np2 conditional
4967          * support. */
4968         desc7->dpcLineCaps.dwTextureCaps |= D3DPTEXTURECAPS_POW2 | D3DPTEXTURECAPS_NONPOW2CONDITIONAL;
4969     }
4970
4971     /* Fill the missing members, and do some fixup */
4972     desc7->dpcLineCaps.dwSize = sizeof(desc7->dpcLineCaps);
4973     desc7->dpcLineCaps.dwTextureBlendCaps = D3DPTBLENDCAPS_ADD | D3DPTBLENDCAPS_MODULATEMASK |
4974                                             D3DPTBLENDCAPS_COPY | D3DPTBLENDCAPS_DECAL |
4975                                             D3DPTBLENDCAPS_DECALALPHA | D3DPTBLENDCAPS_DECALMASK |
4976                                             D3DPTBLENDCAPS_MODULATE | D3DPTBLENDCAPS_MODULATEALPHA;
4977     desc7->dpcLineCaps.dwStippleWidth = 32;
4978     desc7->dpcLineCaps.dwStippleHeight = 32;
4979     /* Use the same for the TriCaps */
4980     desc7->dpcTriCaps = desc7->dpcLineCaps;
4981
4982     desc7->dwDeviceRenderBitDepth = DDBD_16 | DDBD_24 | DDBD_32;
4983     desc7->dwDeviceZBufferBitDepth = DDBD_16 | DDBD_24;
4984     desc7->dwMinTextureWidth = 1;
4985     desc7->dwMinTextureHeight = 1;
4986
4987     /* Convert DWORDs safely to WORDs */
4988     if (wined3d_caps.MaxTextureBlendStages > 0xffff) desc7->wMaxTextureBlendStages = 0xffff;
4989     else desc7->wMaxTextureBlendStages = (WORD)wined3d_caps.MaxTextureBlendStages;
4990     if (wined3d_caps.MaxSimultaneousTextures > 0xffff) desc7->wMaxSimultaneousTextures = 0xffff;
4991     else desc7->wMaxSimultaneousTextures = (WORD)wined3d_caps.MaxSimultaneousTextures;
4992
4993     if (wined3d_caps.MaxUserClipPlanes > 0xffff) desc7->wMaxUserClipPlanes = 0xffff;
4994     else desc7->wMaxUserClipPlanes = (WORD)wined3d_caps.MaxUserClipPlanes;
4995     if (wined3d_caps.MaxVertexBlendMatrices > 0xffff) desc7->wMaxVertexBlendMatrices = 0xffff;
4996     else desc7->wMaxVertexBlendMatrices = (WORD)wined3d_caps.MaxVertexBlendMatrices;
4997
4998     desc7->deviceGUID = IID_IDirect3DTnLHalDevice;
4999
5000     desc7->dwReserved1 = 0;
5001     desc7->dwReserved2 = 0;
5002     desc7->dwReserved3 = 0;
5003     desc7->dwReserved4 = 0;
5004
5005     /* Fill the old structure */
5006     memset(desc1, 0, sizeof(desc1));
5007     desc1->dwSize = sizeof(D3DDEVICEDESC);
5008     desc1->dwFlags = D3DDD_COLORMODEL
5009             | D3DDD_DEVCAPS
5010             | D3DDD_TRANSFORMCAPS
5011             | D3DDD_BCLIPPING
5012             | D3DDD_LIGHTINGCAPS
5013             | D3DDD_LINECAPS
5014             | D3DDD_TRICAPS
5015             | D3DDD_DEVICERENDERBITDEPTH
5016             | D3DDD_DEVICEZBUFFERBITDEPTH
5017             | D3DDD_MAXBUFFERSIZE
5018             | D3DDD_MAXVERTEXCOUNT;
5019
5020     desc1->dcmColorModel = D3DCOLOR_RGB;
5021     desc1->dwDevCaps = desc7->dwDevCaps;
5022     desc1->dtcTransformCaps.dwSize = sizeof(D3DTRANSFORMCAPS);
5023     desc1->dtcTransformCaps.dwCaps = D3DTRANSFORMCAPS_CLIP;
5024     desc1->bClipping = TRUE;
5025     desc1->dlcLightingCaps.dwSize = sizeof(D3DLIGHTINGCAPS);
5026     desc1->dlcLightingCaps.dwCaps = D3DLIGHTCAPS_DIRECTIONAL
5027             | D3DLIGHTCAPS_PARALLELPOINT
5028             | D3DLIGHTCAPS_POINT
5029             | D3DLIGHTCAPS_SPOT;
5030
5031     desc1->dlcLightingCaps.dwLightingModel = D3DLIGHTINGMODEL_RGB;
5032     desc1->dlcLightingCaps.dwNumLights = desc7->dwMaxActiveLights;
5033
5034     desc1->dpcLineCaps.dwSize = sizeof(D3DPRIMCAPS);
5035     desc1->dpcLineCaps.dwMiscCaps = desc7->dpcLineCaps.dwMiscCaps;
5036     desc1->dpcLineCaps.dwRasterCaps = desc7->dpcLineCaps.dwRasterCaps;
5037     desc1->dpcLineCaps.dwZCmpCaps = desc7->dpcLineCaps.dwZCmpCaps;
5038     desc1->dpcLineCaps.dwSrcBlendCaps = desc7->dpcLineCaps.dwSrcBlendCaps;
5039     desc1->dpcLineCaps.dwDestBlendCaps = desc7->dpcLineCaps.dwDestBlendCaps;
5040     desc1->dpcLineCaps.dwShadeCaps = desc7->dpcLineCaps.dwShadeCaps;
5041     desc1->dpcLineCaps.dwTextureCaps = desc7->dpcLineCaps.dwTextureCaps;
5042     desc1->dpcLineCaps.dwTextureFilterCaps = desc7->dpcLineCaps.dwTextureFilterCaps;
5043     desc1->dpcLineCaps.dwTextureBlendCaps = desc7->dpcLineCaps.dwTextureBlendCaps;
5044     desc1->dpcLineCaps.dwTextureAddressCaps = desc7->dpcLineCaps.dwTextureAddressCaps;
5045     desc1->dpcLineCaps.dwStippleWidth = desc7->dpcLineCaps.dwStippleWidth;
5046     desc1->dpcLineCaps.dwAlphaCmpCaps = desc7->dpcLineCaps.dwAlphaCmpCaps;
5047
5048     desc1->dpcTriCaps.dwSize = sizeof(D3DPRIMCAPS);
5049     desc1->dpcTriCaps.dwMiscCaps = desc7->dpcTriCaps.dwMiscCaps;
5050     desc1->dpcTriCaps.dwRasterCaps = desc7->dpcTriCaps.dwRasterCaps;
5051     desc1->dpcTriCaps.dwZCmpCaps = desc7->dpcTriCaps.dwZCmpCaps;
5052     desc1->dpcTriCaps.dwSrcBlendCaps = desc7->dpcTriCaps.dwSrcBlendCaps;
5053     desc1->dpcTriCaps.dwDestBlendCaps = desc7->dpcTriCaps.dwDestBlendCaps;
5054     desc1->dpcTriCaps.dwShadeCaps = desc7->dpcTriCaps.dwShadeCaps;
5055     desc1->dpcTriCaps.dwTextureCaps = desc7->dpcTriCaps.dwTextureCaps;
5056     desc1->dpcTriCaps.dwTextureFilterCaps = desc7->dpcTriCaps.dwTextureFilterCaps;
5057     desc1->dpcTriCaps.dwTextureBlendCaps = desc7->dpcTriCaps.dwTextureBlendCaps;
5058     desc1->dpcTriCaps.dwTextureAddressCaps = desc7->dpcTriCaps.dwTextureAddressCaps;
5059     desc1->dpcTriCaps.dwStippleWidth = desc7->dpcTriCaps.dwStippleWidth;
5060     desc1->dpcTriCaps.dwAlphaCmpCaps = desc7->dpcTriCaps.dwAlphaCmpCaps;
5061
5062     desc1->dwDeviceRenderBitDepth = desc7->dwDeviceRenderBitDepth;
5063     desc1->dwDeviceZBufferBitDepth = desc7->dwDeviceZBufferBitDepth;
5064     desc1->dwMaxBufferSize = 0;
5065     desc1->dwMaxVertexCount = 65536;
5066     desc1->dwMinTextureWidth  = desc7->dwMinTextureWidth;
5067     desc1->dwMinTextureHeight = desc7->dwMinTextureHeight;
5068     desc1->dwMaxTextureWidth  = desc7->dwMaxTextureWidth;
5069     desc1->dwMaxTextureHeight = desc7->dwMaxTextureHeight;
5070     desc1->dwMinStippleWidth  = 1;
5071     desc1->dwMinStippleHeight = 1;
5072     desc1->dwMaxStippleWidth  = 32;
5073     desc1->dwMaxStippleHeight = 32;
5074     desc1->dwMaxTextureRepeat = desc7->dwMaxTextureRepeat;
5075     desc1->dwMaxTextureAspectRatio = desc7->dwMaxTextureAspectRatio;
5076     desc1->dwMaxAnisotropy = desc7->dwMaxAnisotropy;
5077     desc1->dvGuardBandLeft = desc7->dvGuardBandLeft;
5078     desc1->dvGuardBandRight = desc7->dvGuardBandRight;
5079     desc1->dvGuardBandTop = desc7->dvGuardBandTop;
5080     desc1->dvGuardBandBottom = desc7->dvGuardBandBottom;
5081     desc1->dvExtentsAdjust = desc7->dvExtentsAdjust;
5082     desc1->dwStencilCaps = desc7->dwStencilCaps;
5083     desc1->dwFVFCaps = desc7->dwFVFCaps;
5084     desc1->dwTextureOpCaps = desc7->dwTextureOpCaps;
5085     desc1->wMaxTextureBlendStages = desc7->wMaxTextureBlendStages;
5086     desc1->wMaxSimultaneousTextures = desc7->wMaxSimultaneousTextures;
5087
5088     return DD_OK;
5089 }
5090
5091 /*****************************************************************************
5092  * IDirectDraw7 VTable
5093  *****************************************************************************/
5094 static const struct IDirectDraw7Vtbl ddraw7_vtbl =
5095 {
5096     /* IUnknown */
5097     ddraw7_QueryInterface,
5098     ddraw7_AddRef,
5099     ddraw7_Release,
5100     /* IDirectDraw */
5101     ddraw7_Compact,
5102     ddraw7_CreateClipper,
5103     ddraw7_CreatePalette,
5104     ddraw7_CreateSurface,
5105     ddraw7_DuplicateSurface,
5106     ddraw7_EnumDisplayModes,
5107     ddraw7_EnumSurfaces,
5108     ddraw7_FlipToGDISurface,
5109     ddraw7_GetCaps,
5110     ddraw7_GetDisplayMode,
5111     ddraw7_GetFourCCCodes,
5112     ddraw7_GetGDISurface,
5113     ddraw7_GetMonitorFrequency,
5114     ddraw7_GetScanLine,
5115     ddraw7_GetVerticalBlankStatus,
5116     ddraw7_Initialize,
5117     ddraw7_RestoreDisplayMode,
5118     ddraw7_SetCooperativeLevel,
5119     ddraw7_SetDisplayMode,
5120     ddraw7_WaitForVerticalBlank,
5121     /* IDirectDraw2 */
5122     ddraw7_GetAvailableVidMem,
5123     /* IDirectDraw3 */
5124     ddraw7_GetSurfaceFromDC,
5125     /* IDirectDraw4 */
5126     ddraw7_RestoreAllSurfaces,
5127     ddraw7_TestCooperativeLevel,
5128     ddraw7_GetDeviceIdentifier,
5129     /* IDirectDraw7 */
5130     ddraw7_StartModeTest,
5131     ddraw7_EvaluateMode
5132 };
5133
5134 static const struct IDirectDraw4Vtbl ddraw4_vtbl =
5135 {
5136     /* IUnknown */
5137     ddraw4_QueryInterface,
5138     ddraw4_AddRef,
5139     ddraw4_Release,
5140     /* IDirectDraw */
5141     ddraw4_Compact,
5142     ddraw4_CreateClipper,
5143     ddraw4_CreatePalette,
5144     ddraw4_CreateSurface,
5145     ddraw4_DuplicateSurface,
5146     ddraw4_EnumDisplayModes,
5147     ddraw4_EnumSurfaces,
5148     ddraw4_FlipToGDISurface,
5149     ddraw4_GetCaps,
5150     ddraw4_GetDisplayMode,
5151     ddraw4_GetFourCCCodes,
5152     ddraw4_GetGDISurface,
5153     ddraw4_GetMonitorFrequency,
5154     ddraw4_GetScanLine,
5155     ddraw4_GetVerticalBlankStatus,
5156     ddraw4_Initialize,
5157     ddraw4_RestoreDisplayMode,
5158     ddraw4_SetCooperativeLevel,
5159     ddraw4_SetDisplayMode,
5160     ddraw4_WaitForVerticalBlank,
5161     /* IDirectDraw2 */
5162     ddraw4_GetAvailableVidMem,
5163     /* IDirectDraw3 */
5164     ddraw4_GetSurfaceFromDC,
5165     /* IDirectDraw4 */
5166     ddraw4_RestoreAllSurfaces,
5167     ddraw4_TestCooperativeLevel,
5168     ddraw4_GetDeviceIdentifier,
5169 };
5170
5171 static const struct IDirectDraw3Vtbl ddraw3_vtbl =
5172 {
5173     /* IUnknown */
5174     ddraw3_QueryInterface,
5175     ddraw3_AddRef,
5176     ddraw3_Release,
5177     /* IDirectDraw */
5178     ddraw3_Compact,
5179     ddraw3_CreateClipper,
5180     ddraw3_CreatePalette,
5181     ddraw3_CreateSurface,
5182     ddraw3_DuplicateSurface,
5183     ddraw3_EnumDisplayModes,
5184     ddraw3_EnumSurfaces,
5185     ddraw3_FlipToGDISurface,
5186     ddraw3_GetCaps,
5187     ddraw3_GetDisplayMode,
5188     ddraw3_GetFourCCCodes,
5189     ddraw3_GetGDISurface,
5190     ddraw3_GetMonitorFrequency,
5191     ddraw3_GetScanLine,
5192     ddraw3_GetVerticalBlankStatus,
5193     ddraw3_Initialize,
5194     ddraw3_RestoreDisplayMode,
5195     ddraw3_SetCooperativeLevel,
5196     ddraw3_SetDisplayMode,
5197     ddraw3_WaitForVerticalBlank,
5198     /* IDirectDraw2 */
5199     ddraw3_GetAvailableVidMem,
5200     /* IDirectDraw3 */
5201     ddraw3_GetSurfaceFromDC,
5202 };
5203
5204 static const struct IDirectDraw2Vtbl ddraw2_vtbl =
5205 {
5206     /* IUnknown */
5207     ddraw2_QueryInterface,
5208     ddraw2_AddRef,
5209     ddraw2_Release,
5210     /* IDirectDraw */
5211     ddraw2_Compact,
5212     ddraw2_CreateClipper,
5213     ddraw2_CreatePalette,
5214     ddraw2_CreateSurface,
5215     ddraw2_DuplicateSurface,
5216     ddraw2_EnumDisplayModes,
5217     ddraw2_EnumSurfaces,
5218     ddraw2_FlipToGDISurface,
5219     ddraw2_GetCaps,
5220     ddraw2_GetDisplayMode,
5221     ddraw2_GetFourCCCodes,
5222     ddraw2_GetGDISurface,
5223     ddraw2_GetMonitorFrequency,
5224     ddraw2_GetScanLine,
5225     ddraw2_GetVerticalBlankStatus,
5226     ddraw2_Initialize,
5227     ddraw2_RestoreDisplayMode,
5228     ddraw2_SetCooperativeLevel,
5229     ddraw2_SetDisplayMode,
5230     ddraw2_WaitForVerticalBlank,
5231     /* IDirectDraw2 */
5232     ddraw2_GetAvailableVidMem,
5233 };
5234
5235 static const struct IDirectDrawVtbl ddraw1_vtbl =
5236 {
5237     /* IUnknown */
5238     ddraw1_QueryInterface,
5239     ddraw1_AddRef,
5240     ddraw1_Release,
5241     /* IDirectDraw */
5242     ddraw1_Compact,
5243     ddraw1_CreateClipper,
5244     ddraw1_CreatePalette,
5245     ddraw1_CreateSurface,
5246     ddraw1_DuplicateSurface,
5247     ddraw1_EnumDisplayModes,
5248     ddraw1_EnumSurfaces,
5249     ddraw1_FlipToGDISurface,
5250     ddraw1_GetCaps,
5251     ddraw1_GetDisplayMode,
5252     ddraw1_GetFourCCCodes,
5253     ddraw1_GetGDISurface,
5254     ddraw1_GetMonitorFrequency,
5255     ddraw1_GetScanLine,
5256     ddraw1_GetVerticalBlankStatus,
5257     ddraw1_Initialize,
5258     ddraw1_RestoreDisplayMode,
5259     ddraw1_SetCooperativeLevel,
5260     ddraw1_SetDisplayMode,
5261     ddraw1_WaitForVerticalBlank,
5262 };
5263
5264 static const struct IDirect3D7Vtbl d3d7_vtbl =
5265 {
5266     /* IUnknown methods */
5267     d3d7_QueryInterface,
5268     d3d7_AddRef,
5269     d3d7_Release,
5270     /* IDirect3D7 methods */
5271     d3d7_EnumDevices,
5272     d3d7_CreateDevice,
5273     d3d7_CreateVertexBuffer,
5274     d3d7_EnumZBufferFormats,
5275     d3d7_EvictManagedTextures
5276 };
5277
5278 static const struct IDirect3D3Vtbl d3d3_vtbl =
5279 {
5280     /* IUnknown methods */
5281     d3d3_QueryInterface,
5282     d3d3_AddRef,
5283     d3d3_Release,
5284     /* IDirect3D3 methods */
5285     d3d3_EnumDevices,
5286     d3d3_CreateLight,
5287     d3d3_CreateMaterial,
5288     d3d3_CreateViewport,
5289     d3d3_FindDevice,
5290     d3d3_CreateDevice,
5291     d3d3_CreateVertexBuffer,
5292     d3d3_EnumZBufferFormats,
5293     d3d3_EvictManagedTextures
5294 };
5295
5296 static const struct IDirect3D2Vtbl d3d2_vtbl =
5297 {
5298     /* IUnknown methods */
5299     d3d2_QueryInterface,
5300     d3d2_AddRef,
5301     d3d2_Release,
5302     /* IDirect3D2 methods */
5303     d3d2_EnumDevices,
5304     d3d2_CreateLight,
5305     d3d2_CreateMaterial,
5306     d3d2_CreateViewport,
5307     d3d2_FindDevice,
5308     d3d2_CreateDevice
5309 };
5310
5311 static const struct IDirect3DVtbl d3d1_vtbl =
5312 {
5313     /* IUnknown methods */
5314     d3d1_QueryInterface,
5315     d3d1_AddRef,
5316     d3d1_Release,
5317     /* IDirect3D methods */
5318     d3d1_Initialize,
5319     d3d1_EnumDevices,
5320     d3d1_CreateLight,
5321     d3d1_CreateMaterial,
5322     d3d1_CreateViewport,
5323     d3d1_FindDevice
5324 };
5325
5326 /*****************************************************************************
5327  * ddraw_find_decl
5328  *
5329  * Finds the WineD3D vertex declaration for a specific fvf, and creates one
5330  * if none was found.
5331  *
5332  * This function is in ddraw.c and the DDraw object space because D3D7
5333  * vertex buffers are created using the IDirect3D interface to the ddraw
5334  * object, so they can be valid across D3D devices(theoretically. The ddraw
5335  * object also owns the wined3d device
5336  *
5337  * Parameters:
5338  *  This: Device
5339  *  fvf: Fvf to find the decl for
5340  *
5341  * Returns:
5342  *  NULL in case of an error, the IWineD3DVertexDeclaration interface for the
5343  *  fvf otherwise.
5344  *
5345  *****************************************************************************/
5346 IWineD3DVertexDeclaration *ddraw_find_decl(IDirectDrawImpl *This, DWORD fvf)
5347 {
5348     HRESULT hr;
5349     IWineD3DVertexDeclaration* pDecl = NULL;
5350     int p, low, high; /* deliberately signed */
5351     struct FvfToDecl *convertedDecls = This->decls;
5352
5353     TRACE("Searching for declaration for fvf %08x... ", fvf);
5354
5355     low = 0;
5356     high = This->numConvertedDecls - 1;
5357     while(low <= high) {
5358         p = (low + high) >> 1;
5359         TRACE("%d ", p);
5360         if(convertedDecls[p].fvf == fvf) {
5361             TRACE("found %p\n", convertedDecls[p].decl);
5362             return convertedDecls[p].decl;
5363         } else if(convertedDecls[p].fvf < fvf) {
5364             low = p + 1;
5365         } else {
5366             high = p - 1;
5367         }
5368     }
5369     TRACE("not found. Creating and inserting at position %d.\n", low);
5370
5371     hr = IWineD3DDevice_CreateVertexDeclarationFromFVF(This->wineD3DDevice,
5372             fvf, This, &ddraw_null_wined3d_parent_ops, &pDecl);
5373     if (hr != S_OK) return NULL;
5374
5375     if(This->declArraySize == This->numConvertedDecls) {
5376         int grow = max(This->declArraySize / 2, 8);
5377         convertedDecls = HeapReAlloc(GetProcessHeap(), 0, convertedDecls,
5378                                      sizeof(convertedDecls[0]) * (This->numConvertedDecls + grow));
5379         if(!convertedDecls) {
5380             /* This will destroy it */
5381             IWineD3DVertexDeclaration_Release(pDecl);
5382             return NULL;
5383         }
5384         This->decls = convertedDecls;
5385         This->declArraySize += grow;
5386     }
5387
5388     memmove(convertedDecls + low + 1, convertedDecls + low, sizeof(convertedDecls[0]) * (This->numConvertedDecls - low));
5389     convertedDecls[low].decl = pDecl;
5390     convertedDecls[low].fvf = fvf;
5391     This->numConvertedDecls++;
5392
5393     TRACE("Returning %p. %d decls in array\n", pDecl, This->numConvertedDecls);
5394     return pDecl;
5395 }
5396
5397 /* IWineD3DDeviceParent IUnknown methods */
5398
5399 static inline struct IDirectDrawImpl *ddraw_from_device_parent(IWineD3DDeviceParent *iface)
5400 {
5401     return (struct IDirectDrawImpl *)((char*)iface - FIELD_OFFSET(struct IDirectDrawImpl, device_parent_vtbl));
5402 }
5403
5404 static HRESULT STDMETHODCALLTYPE device_parent_QueryInterface(IWineD3DDeviceParent *iface, REFIID riid, void **object)
5405 {
5406     struct IDirectDrawImpl *This = ddraw_from_device_parent(iface);
5407     return ddraw7_QueryInterface((IDirectDraw7 *)This, riid, object);
5408 }
5409
5410 static ULONG STDMETHODCALLTYPE device_parent_AddRef(IWineD3DDeviceParent *iface)
5411 {
5412     struct IDirectDrawImpl *This = ddraw_from_device_parent(iface);
5413     return ddraw7_AddRef((IDirectDraw7 *)This);
5414 }
5415
5416 static ULONG STDMETHODCALLTYPE device_parent_Release(IWineD3DDeviceParent *iface)
5417 {
5418     struct IDirectDrawImpl *This = ddraw_from_device_parent(iface);
5419     return ddraw7_Release((IDirectDraw7 *)This);
5420 }
5421
5422 /* IWineD3DDeviceParent methods */
5423
5424 static void STDMETHODCALLTYPE device_parent_WineD3DDeviceCreated(IWineD3DDeviceParent *iface, IWineD3DDevice *device)
5425 {
5426     TRACE("iface %p, device %p\n", iface, device);
5427 }
5428
5429 static HRESULT STDMETHODCALLTYPE device_parent_CreateSurface(IWineD3DDeviceParent *iface,
5430         IUnknown *superior, UINT width, UINT height, enum wined3d_format_id format, DWORD usage,
5431         WINED3DPOOL pool, UINT level, WINED3DCUBEMAP_FACES face, IWineD3DSurface **surface)
5432 {
5433     struct IDirectDrawImpl *This = ddraw_from_device_parent(iface);
5434     IDirectDrawSurfaceImpl *surf = NULL;
5435     UINT i = 0;
5436     DDSCAPS2 searchcaps = This->tex_root->surface_desc.ddsCaps;
5437
5438     TRACE("iface %p, superior %p, width %u, height %u, format %#x, usage %#x,\n"
5439             "\tpool %#x, level %u, face %u, surface %p\n",
5440             iface, superior, width, height, format, usage, pool, level, face, surface);
5441
5442     searchcaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_ALLFACES;
5443     switch(face)
5444     {
5445         case WINED3DCUBEMAP_FACE_POSITIVE_X:
5446             TRACE("Asked for positive x\n");
5447             if (searchcaps.dwCaps2 & DDSCAPS2_CUBEMAP)
5448             {
5449                 searchcaps.dwCaps2 |= DDSCAPS2_CUBEMAP_POSITIVEX;
5450             }
5451             surf = This->tex_root; break;
5452         case WINED3DCUBEMAP_FACE_NEGATIVE_X:
5453             TRACE("Asked for negative x\n");
5454             searchcaps.dwCaps2 |= DDSCAPS2_CUBEMAP_NEGATIVEX; break;
5455         case WINED3DCUBEMAP_FACE_POSITIVE_Y:
5456             TRACE("Asked for positive y\n");
5457             searchcaps.dwCaps2 |= DDSCAPS2_CUBEMAP_POSITIVEY; break;
5458         case WINED3DCUBEMAP_FACE_NEGATIVE_Y:
5459             TRACE("Asked for negative y\n");
5460             searchcaps.dwCaps2 |= DDSCAPS2_CUBEMAP_NEGATIVEY; break;
5461         case WINED3DCUBEMAP_FACE_POSITIVE_Z:
5462             TRACE("Asked for positive z\n");
5463             searchcaps.dwCaps2 |= DDSCAPS2_CUBEMAP_POSITIVEZ; break;
5464         case WINED3DCUBEMAP_FACE_NEGATIVE_Z:
5465             TRACE("Asked for negative z\n");
5466             searchcaps.dwCaps2 |= DDSCAPS2_CUBEMAP_NEGATIVEZ; break;
5467         default: {ERR("Unexpected cube face\n");} /* Stupid compiler */
5468     }
5469
5470     if (!surf)
5471     {
5472         IDirectDrawSurface7 *attached;
5473         IDirectDrawSurface7_GetAttachedSurface((IDirectDrawSurface7 *)This->tex_root, &searchcaps, &attached);
5474         surf = (IDirectDrawSurfaceImpl *)attached;
5475         IDirectDrawSurface7_Release(attached);
5476     }
5477     if (!surf) ERR("root search surface not found\n");
5478
5479     /* Find the wanted mipmap. There are enough mipmaps in the chain */
5480     while (i < level)
5481     {
5482         IDirectDrawSurface7 *attached;
5483         IDirectDrawSurface7_GetAttachedSurface((IDirectDrawSurface7 *)surf, &searchcaps, &attached);
5484         if(!attached) ERR("Surface not found\n");
5485         surf = (IDirectDrawSurfaceImpl *)attached;
5486         IDirectDrawSurface7_Release(attached);
5487         ++i;
5488     }
5489
5490     /* Return the surface */
5491     *surface = surf->WineD3DSurface;
5492     IWineD3DSurface_AddRef(*surface);
5493
5494     TRACE("Returning wineD3DSurface %p, it belongs to surface %p\n", *surface, surf);
5495
5496     return D3D_OK;
5497 }
5498
5499 static HRESULT WINAPI findRenderTarget(IDirectDrawSurface7 *surface, DDSURFACEDESC2 *surface_desc, void *ctx)
5500 {
5501     IDirectDrawSurfaceImpl *s = (IDirectDrawSurfaceImpl *)surface;
5502     IDirectDrawSurfaceImpl **target = ctx;
5503
5504     if (!s->isRenderTarget)
5505     {
5506         *target = s;
5507         IDirectDrawSurface7_Release(surface);
5508         return DDENUMRET_CANCEL;
5509     }
5510
5511     /* Recurse into the surface tree */
5512     IDirectDrawSurface7_EnumAttachedSurfaces(surface, ctx, findRenderTarget);
5513
5514     IDirectDrawSurface7_Release(surface);
5515     if (*target) return DDENUMRET_CANCEL;
5516
5517     return DDENUMRET_OK;
5518 }
5519
5520 static HRESULT STDMETHODCALLTYPE device_parent_CreateRenderTarget(IWineD3DDeviceParent *iface,
5521         IUnknown *superior, UINT width, UINT height, enum wined3d_format_id format,
5522         WINED3DMULTISAMPLE_TYPE multisample_type, DWORD multisample_quality, BOOL lockable,
5523         IWineD3DSurface **surface)
5524 {
5525     struct IDirectDrawImpl *This = ddraw_from_device_parent(iface);
5526     IDirectDrawSurfaceImpl *d3d_surface = This->d3d_target;
5527     IDirectDrawSurfaceImpl *target = NULL;
5528
5529     TRACE("iface %p, superior %p, width %u, height %u, format %#x, multisample_type %#x,\n"
5530             "\tmultisample_quality %u, lockable %u, surface %p\n",
5531             iface, superior, width, height, format, multisample_type, multisample_quality, lockable, surface);
5532
5533     if (d3d_surface->isRenderTarget)
5534     {
5535         IDirectDrawSurface7_EnumAttachedSurfaces((IDirectDrawSurface7 *)d3d_surface, &target, findRenderTarget);
5536     }
5537     else
5538     {
5539         target = d3d_surface;
5540     }
5541
5542     if (!target)
5543     {
5544         target = This->d3d_target;
5545         ERR(" (%p) : No DirectDrawSurface found to create the back buffer. Using the front buffer as back buffer. Uncertain consequences\n", This);
5546     }
5547
5548     /* TODO: Return failure if the dimensions do not match, but this shouldn't happen */
5549
5550     *surface = target->WineD3DSurface;
5551     IWineD3DSurface_AddRef(*surface);
5552     target->isRenderTarget = TRUE;
5553
5554     TRACE("Returning wineD3DSurface %p, it belongs to surface %p\n", *surface, d3d_surface);
5555
5556     return D3D_OK;
5557 }
5558
5559 static HRESULT STDMETHODCALLTYPE device_parent_CreateDepthStencilSurface(IWineD3DDeviceParent *iface,
5560         UINT width, UINT height, enum wined3d_format_id format, WINED3DMULTISAMPLE_TYPE multisample_type,
5561         DWORD multisample_quality, BOOL discard, IWineD3DSurface **surface)
5562 {
5563     struct IDirectDrawImpl *This = ddraw_from_device_parent(iface);
5564     IDirectDrawSurfaceImpl *ddraw_surface;
5565     DDSURFACEDESC2 ddsd;
5566     HRESULT hr;
5567
5568     TRACE("iface %p, width %u, height %u, format %#x, multisample_type %#x,\n"
5569             "\tmultisample_quality %u, discard %u, surface %p\n",
5570             iface, width, height, format, multisample_type, multisample_quality, discard, surface);
5571
5572     *surface = NULL;
5573
5574     /* Create a DirectDraw surface */
5575     memset(&ddsd, 0, sizeof(ddsd));
5576     ddsd.dwSize = sizeof(ddsd);
5577     ddsd.u4.ddpfPixelFormat.dwSize = sizeof(DDPIXELFORMAT);
5578     ddsd.dwFlags = DDSD_PIXELFORMAT | DDSD_WIDTH | DDSD_HEIGHT | DDSD_CAPS;
5579     ddsd.ddsCaps.dwCaps = DDSCAPS_OFFSCREENPLAIN;
5580     ddsd.dwHeight = height;
5581     ddsd.dwWidth = width;
5582     if (format)
5583     {
5584         PixelFormat_WineD3DtoDD(&ddsd.u4.ddpfPixelFormat, format);
5585     }
5586     else
5587     {
5588         ddsd.dwFlags ^= DDSD_PIXELFORMAT;
5589     }
5590
5591     This->depthstencil = TRUE;
5592     hr = IDirectDraw7_CreateSurface((IDirectDraw7 *)This, &ddsd, (IDirectDrawSurface7 **)&ddraw_surface, NULL);
5593     This->depthstencil = FALSE;
5594     if(FAILED(hr))
5595     {
5596         ERR(" (%p) Creating a DepthStencil Surface failed, result = %x\n", This, hr);
5597         return hr;
5598     }
5599
5600     *surface = ddraw_surface->WineD3DSurface;
5601     IWineD3DSurface_AddRef(*surface);
5602     IDirectDrawSurface7_Release((IDirectDrawSurface7 *)ddraw_surface);
5603
5604     return D3D_OK;
5605 }
5606
5607 static HRESULT STDMETHODCALLTYPE device_parent_CreateVolume(IWineD3DDeviceParent *iface,
5608         IUnknown *superior, UINT width, UINT height, UINT depth, enum wined3d_format_id format,
5609         WINED3DPOOL pool, DWORD usage, IWineD3DVolume **volume)
5610 {
5611     TRACE("iface %p, superior %p, width %u, height %u, depth %u, format %#x, pool %#x, usage %#x, volume %p\n",
5612                 iface, superior, width, height, depth, format, pool, usage, volume);
5613
5614     ERR("Not implemented!\n");
5615
5616     return E_NOTIMPL;
5617 }
5618
5619 static HRESULT STDMETHODCALLTYPE device_parent_CreateSwapChain(IWineD3DDeviceParent *iface,
5620         WINED3DPRESENT_PARAMETERS *present_parameters, IWineD3DSwapChain **swapchain)
5621 {
5622     struct IDirectDrawImpl *This = ddraw_from_device_parent(iface);
5623     IDirectDrawSurfaceImpl *iterator;
5624     IParentImpl *object;
5625     HRESULT hr;
5626
5627     TRACE("iface %p, present_parameters %p, swapchain %p\n", iface, present_parameters, swapchain);
5628
5629     object = HeapAlloc(GetProcessHeap(),  HEAP_ZERO_MEMORY, sizeof(IParentImpl));
5630     if (!object)
5631     {
5632         FIXME("Allocation of memory failed\n");
5633         *swapchain = NULL;
5634         return DDERR_OUTOFVIDEOMEMORY;
5635     }
5636
5637     ddraw_parent_init(object);
5638
5639     hr = IWineD3DDevice_CreateSwapChain(This->wineD3DDevice, present_parameters,
5640             This->ImplType, object, swapchain);
5641     if (FAILED(hr))
5642     {
5643         FIXME("(%p) CreateSwapChain failed, returning %#x\n", iface, hr);
5644         HeapFree(GetProcessHeap(), 0 , object);
5645         *swapchain = NULL;
5646         return hr;
5647     }
5648
5649     object->child = (IUnknown *)*swapchain;
5650     This->d3d_target->wineD3DSwapChain = *swapchain;
5651     iterator = This->d3d_target->complex_array[0];
5652     while (iterator)
5653     {
5654         iterator->wineD3DSwapChain = *swapchain;
5655         iterator = iterator->complex_array[0];
5656     }
5657
5658     return hr;
5659 }
5660
5661 static const IWineD3DDeviceParentVtbl ddraw_wined3d_device_parent_vtbl =
5662 {
5663     /* IUnknown methods */
5664     device_parent_QueryInterface,
5665     device_parent_AddRef,
5666     device_parent_Release,
5667     /* IWineD3DDeviceParent methods */
5668     device_parent_WineD3DDeviceCreated,
5669     device_parent_CreateSurface,
5670     device_parent_CreateRenderTarget,
5671     device_parent_CreateDepthStencilSurface,
5672     device_parent_CreateVolume,
5673     device_parent_CreateSwapChain,
5674 };
5675
5676 HRESULT ddraw_init(IDirectDrawImpl *ddraw, WINED3DDEVTYPE device_type)
5677 {
5678     HRESULT hr;
5679     HDC hDC;
5680
5681     ddraw->lpVtbl = &ddraw7_vtbl;
5682     ddraw->IDirectDraw_vtbl = &ddraw1_vtbl;
5683     ddraw->IDirectDraw2_vtbl = &ddraw2_vtbl;
5684     ddraw->IDirectDraw3_vtbl = &ddraw3_vtbl;
5685     ddraw->IDirectDraw4_vtbl = &ddraw4_vtbl;
5686     ddraw->IDirect3D_vtbl = &d3d1_vtbl;
5687     ddraw->IDirect3D2_vtbl = &d3d2_vtbl;
5688     ddraw->IDirect3D3_vtbl = &d3d3_vtbl;
5689     ddraw->IDirect3D7_vtbl = &d3d7_vtbl;
5690     ddraw->device_parent_vtbl = &ddraw_wined3d_device_parent_vtbl;
5691     ddraw->numIfaces = 1;
5692     ddraw->ref7 = 1;
5693
5694     /* See comments in IDirectDrawImpl_CreateNewSurface for a description of
5695      * this field. */
5696     ddraw->ImplType = DefaultSurfaceType;
5697
5698     /* Get the current screen settings. */
5699     hDC = GetDC(0);
5700     ddraw->orig_bpp = GetDeviceCaps(hDC, BITSPIXEL) * GetDeviceCaps(hDC, PLANES);
5701     ReleaseDC(0, hDC);
5702     ddraw->orig_width = GetSystemMetrics(SM_CXSCREEN);
5703     ddraw->orig_height = GetSystemMetrics(SM_CYSCREEN);
5704
5705     if (!LoadWineD3D())
5706     {
5707         ERR("Failed to load wined3d - broken OpenGL setup?\n");
5708         return DDERR_NODIRECTDRAWSUPPORT;
5709     }
5710
5711     ddraw->wineD3D = pWineDirect3DCreate(7, (IUnknown *)ddraw);
5712     if (!ddraw->wineD3D)
5713     {
5714         WARN("Failed to create a wined3d object.\n");
5715         return E_OUTOFMEMORY;
5716     }
5717
5718     hr = IWineD3D_CreateDevice(ddraw->wineD3D, WINED3DADAPTER_DEFAULT, device_type, NULL, 0,
5719             (IWineD3DDeviceParent *)&ddraw->device_parent_vtbl, &ddraw->wineD3DDevice);
5720     if (FAILED(hr))
5721     {
5722         WARN("Failed to create a wined3d device, hr %#x.\n", hr);
5723         IWineD3D_Release(ddraw->wineD3D);
5724         return hr;
5725     }
5726
5727     /* Get the amount of video memory */
5728     ddraw->total_vidmem = IWineD3DDevice_GetAvailableTextureMem(ddraw->wineD3DDevice);
5729
5730     list_init(&ddraw->surface_list);
5731
5732     return DD_OK;
5733 }