msxml3: Skip leading space characters when loading from BSTR.
[wine] / dlls / ddraw / surface.c
1 /* DirectDraw Surface Implementation
2  *
3  * Copyright (c) 1997-2000 Marcus Meissner
4  * Copyright (c) 1998-2000 Lionel Ulmer
5  * Copyright (c) 2000-2001 TransGaming Technologies Inc.
6  * Copyright (c) 2006 Stefan Dösinger
7  * Copyright (c) 2011 Ričardas Barkauskas for CodeWeavers
8  *
9  * This file contains the (internal) driver registration functions,
10  * driver enumeration APIs and DirectDraw creation functions.
11  *
12  * This library is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU Lesser General Public
14  * License as published by the Free Software Foundation; either
15  * version 2.1 of the License, or (at your option) any later version.
16  *
17  * This library is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20  * Lesser General Public License for more details.
21  *
22  * You should have received a copy of the GNU Lesser General Public
23  * License along with this library; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25  */
26
27 #include "config.h"
28 #include "wine/port.h"
29
30 #include "ddraw_private.h"
31
32 WINE_DEFAULT_DEBUG_CHANNEL(ddraw);
33
34 static IDirectDrawSurfaceImpl *unsafe_impl_from_IDirectDrawSurface2(IDirectDrawSurface2 *iface);
35 static IDirectDrawSurfaceImpl *unsafe_impl_from_IDirectDrawSurface3(IDirectDrawSurface3 *iface);
36
37 static inline IDirectDrawSurfaceImpl *impl_from_IDirectDrawGammaControl(IDirectDrawGammaControl *iface)
38 {
39     return CONTAINING_RECORD(iface, IDirectDrawSurfaceImpl, IDirectDrawGammaControl_iface);
40 }
41
42 /* This is slow, of course. Also, in case of locks, we can't prevent other
43  * applications from drawing to the screen while we've locked the frontbuffer.
44  * We'd like to do this in wined3d instead, but for that to work wined3d needs
45  * to support windowless rendering first. */
46 static HRESULT ddraw_surface_update_frontbuffer(IDirectDrawSurfaceImpl *surface, const RECT *rect, BOOL read)
47 {
48     HDC surface_dc, screen_dc;
49     int x, y, w, h;
50     HRESULT hr;
51     BOOL ret;
52
53     if (!rect)
54     {
55         x = 0;
56         y = 0;
57         w = surface->surface_desc.dwWidth;
58         h = surface->surface_desc.dwHeight;
59     }
60     else
61     {
62         x = rect->left;
63         y = rect->top;
64         w = rect->right - rect->left;
65         h = rect->bottom - rect->top;
66     }
67
68     if (w <= 0 || h <= 0)
69         return DD_OK;
70
71     if (surface->ddraw->swapchain_window)
72     {
73         /* Nothing to do, we control the frontbuffer, or at least the parts we
74          * care about. */
75         if (read)
76             return DD_OK;
77
78         return wined3d_surface_blt(surface->ddraw->wined3d_frontbuffer, rect,
79                 surface->wined3d_surface, rect, 0, NULL, WINED3DTEXF_POINT);
80     }
81
82     if (FAILED(hr = wined3d_surface_getdc(surface->wined3d_surface, &surface_dc)))
83     {
84         ERR("Failed to get surface DC, hr %#x.\n", hr);
85         return hr;
86     }
87
88     if (!(screen_dc = GetDC(NULL)))
89     {
90         wined3d_surface_releasedc(surface->wined3d_surface, surface_dc);
91         ERR("Failed to get screen DC.\n");
92         return E_FAIL;
93     }
94
95     if (read)
96         ret = BitBlt(surface_dc, x, y, w, h,
97                 screen_dc, x, y, SRCCOPY);
98     else
99         ret = BitBlt(screen_dc, x, y, w, h,
100                 surface_dc, x, y, SRCCOPY);
101
102     ReleaseDC(NULL, screen_dc);
103     wined3d_surface_releasedc(surface->wined3d_surface, surface_dc);
104
105     if (!ret)
106     {
107         ERR("Failed to blit to/from screen.\n");
108         return E_FAIL;
109     }
110
111     return DD_OK;
112 }
113
114 /*****************************************************************************
115  * IUnknown parts follow
116  *****************************************************************************/
117
118 /*****************************************************************************
119  * IDirectDrawSurface7::QueryInterface
120  *
121  * A normal QueryInterface implementation. For QueryInterface rules
122  * see ddraw.c, IDirectDraw7::QueryInterface. This method
123  * can Query IDirectDrawSurface interfaces in all version, IDirect3DTexture
124  * in all versions, the IDirectDrawGammaControl interface and it can
125  * create an IDirect3DDevice. (Uses IDirect3D7::CreateDevice)
126  *
127  * Params:
128  *  riid: The interface id queried for
129  *  obj: Address to write the pointer to
130  *
131  * Returns:
132  *  S_OK on success
133  *  E_NOINTERFACE if the requested interface wasn't found
134  *
135  *****************************************************************************/
136 static HRESULT WINAPI ddraw_surface7_QueryInterface(IDirectDrawSurface7 *iface, REFIID riid, void **obj)
137 {
138     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
139
140     TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), obj);
141
142     /* According to COM docs, if the QueryInterface fails, obj should be set to NULL */
143     *obj = NULL;
144
145     if(!riid)
146         return DDERR_INVALIDPARAMS;
147
148     if (IsEqualGUID(riid, &IID_IUnknown)
149      || IsEqualGUID(riid, &IID_IDirectDrawSurface7) )
150     {
151         IDirectDrawSurface7_AddRef(iface);
152         *obj = iface;
153         TRACE("(%p) returning IDirectDrawSurface7 interface at %p\n", This, *obj);
154         return S_OK;
155     }
156     else if (IsEqualGUID(riid, &IID_IDirectDrawSurface4))
157     {
158         IDirectDrawSurface4_AddRef(&This->IDirectDrawSurface4_iface);
159         *obj = &This->IDirectDrawSurface4_iface;
160         TRACE("(%p) returning IDirectDrawSurface4 interface at %p\n", This, *obj);
161         return S_OK;
162     }
163     else if (IsEqualGUID(riid, &IID_IDirectDrawSurface3))
164     {
165         IDirectDrawSurface3_AddRef(&This->IDirectDrawSurface3_iface);
166         *obj = &This->IDirectDrawSurface3_iface;
167         TRACE("(%p) returning IDirectDrawSurface3 interface at %p\n", This, *obj);
168         return S_OK;
169     }
170     else if (IsEqualGUID(riid, &IID_IDirectDrawSurface2))
171     {
172         IDirectDrawSurface2_AddRef(&This->IDirectDrawSurface2_iface);
173         *obj = &This->IDirectDrawSurface2_iface;
174         TRACE("(%p) returning IDirectDrawSurface2 interface at %p\n", This, *obj);
175         return S_OK;
176     }
177     else if (IsEqualGUID(riid, &IID_IDirectDrawSurface))
178     {
179         IDirectDrawSurface_AddRef(&This->IDirectDrawSurface_iface);
180         *obj = &This->IDirectDrawSurface_iface;
181         TRACE("(%p) returning IDirectDrawSurface interface at %p\n", This, *obj);
182         return S_OK;
183     }
184     else if( IsEqualGUID(riid, &IID_IDirectDrawGammaControl) )
185     {
186         IDirectDrawGammaControl_AddRef(&This->IDirectDrawGammaControl_iface);
187         *obj = &This->IDirectDrawGammaControl_iface;
188         TRACE("(%p) returning IDirectDrawGammaControl interface at %p\n", This, *obj);
189         return S_OK;
190     }
191     else if( IsEqualGUID(riid, &IID_D3DDEVICE_WineD3D) ||
192              IsEqualGUID(riid, &IID_IDirect3DHALDevice)||
193              IsEqualGUID(riid, &IID_IDirect3DRGBDevice) )
194     {
195         IDirect3DDevice7 *d3d;
196         IDirect3DDeviceImpl *device_impl;
197
198         /* Call into IDirect3D7 for creation */
199         IDirect3D7_CreateDevice(&This->ddraw->IDirect3D7_iface, riid, &This->IDirectDrawSurface7_iface,
200                 &d3d);
201
202         if (d3d)
203         {
204             device_impl = impl_from_IDirect3DDevice7(d3d);
205             *obj = &device_impl->IDirect3DDevice_iface;
206             TRACE("(%p) Returning IDirect3DDevice interface at %p\n", This, *obj);
207             return S_OK;
208         }
209
210         WARN("Unable to create a IDirect3DDevice instance, returning E_NOINTERFACE\n");
211         return E_NOINTERFACE;
212     }
213     else if (IsEqualGUID( &IID_IDirect3DTexture, riid ) ||
214              IsEqualGUID( &IID_IDirect3DTexture2, riid ))
215     {
216         if (IsEqualGUID( &IID_IDirect3DTexture, riid ))
217         {
218             *obj = &This->IDirect3DTexture_iface;
219             TRACE(" returning Direct3DTexture interface at %p.\n", *obj);
220         }
221         else
222         {
223             *obj = &This->IDirect3DTexture2_iface;
224             TRACE(" returning Direct3DTexture2 interface at %p.\n", *obj);
225         }
226         IUnknown_AddRef( (IUnknown *) *obj);
227         return S_OK;
228     }
229
230     ERR("No interface\n");
231     return E_NOINTERFACE;
232 }
233
234 static HRESULT WINAPI ddraw_surface4_QueryInterface(IDirectDrawSurface4 *iface, REFIID riid, void **object)
235 {
236     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
237     TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
238
239     return ddraw_surface7_QueryInterface(&This->IDirectDrawSurface7_iface, riid, object);
240 }
241
242 static HRESULT WINAPI ddraw_surface3_QueryInterface(IDirectDrawSurface3 *iface, REFIID riid, void **object)
243 {
244     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
245     TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
246
247     return ddraw_surface7_QueryInterface(&This->IDirectDrawSurface7_iface, riid, object);
248 }
249
250 static HRESULT WINAPI ddraw_surface2_QueryInterface(IDirectDrawSurface2 *iface, REFIID riid, void **object)
251 {
252     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
253     TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
254
255     return ddraw_surface7_QueryInterface(&This->IDirectDrawSurface7_iface, riid, object);
256 }
257
258 static HRESULT WINAPI ddraw_surface1_QueryInterface(IDirectDrawSurface *iface, REFIID riid, void **object)
259 {
260     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
261     TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
262
263     return ddraw_surface7_QueryInterface(&This->IDirectDrawSurface7_iface, riid, object);
264 }
265
266 static HRESULT WINAPI ddraw_gamma_control_QueryInterface(IDirectDrawGammaControl *iface,
267         REFIID riid, void **object)
268 {
269     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawGammaControl(iface);
270
271     TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
272
273     return ddraw_surface7_QueryInterface(&This->IDirectDrawSurface7_iface, riid, object);
274 }
275
276 static HRESULT WINAPI d3d_texture2_QueryInterface(IDirect3DTexture2 *iface, REFIID riid, void **object)
277 {
278     IDirectDrawSurfaceImpl *This = impl_from_IDirect3DTexture2(iface);
279     TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
280
281     return ddraw_surface7_QueryInterface(&This->IDirectDrawSurface7_iface, riid, object);
282 }
283
284 static HRESULT WINAPI d3d_texture1_QueryInterface(IDirect3DTexture *iface, REFIID riid, void **object)
285 {
286     IDirectDrawSurfaceImpl *This = impl_from_IDirect3DTexture(iface);
287     TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
288
289     return ddraw_surface7_QueryInterface(&This->IDirectDrawSurface7_iface, riid, object);
290 }
291
292 static void ddraw_surface_add_iface(IDirectDrawSurfaceImpl *This)
293 {
294     ULONG iface_count = InterlockedIncrement(&This->iface_count);
295     TRACE("%p increasing iface count to %u.\n", This, iface_count);
296
297     if (iface_count == 1)
298     {
299         wined3d_mutex_lock();
300         if (This->wined3d_surface)
301             wined3d_surface_incref(This->wined3d_surface);
302         if (This->wined3d_texture)
303             wined3d_texture_incref(This->wined3d_texture);
304         wined3d_mutex_unlock();
305     }
306 }
307
308 /*****************************************************************************
309  * IDirectDrawSurface7::AddRef
310  *
311  * A normal addref implementation
312  *
313  * Returns:
314  *  The new refcount
315  *
316  *****************************************************************************/
317 static ULONG WINAPI ddraw_surface7_AddRef(IDirectDrawSurface7 *iface)
318 {
319     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
320     ULONG refcount = InterlockedIncrement(&This->ref7);
321
322     TRACE("iface %p increasing refcount to %u.\n", iface, refcount);
323
324     if (refcount == 1)
325     {
326         ddraw_surface_add_iface(This);
327     }
328
329     return refcount;
330 }
331
332 static ULONG WINAPI ddraw_surface4_AddRef(IDirectDrawSurface4 *iface)
333 {
334     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
335     ULONG refcount = InterlockedIncrement(&This->ref4);
336
337     TRACE("iface %p increasing refcount to %u.\n", iface, refcount);
338
339     if (refcount == 1)
340     {
341         ddraw_surface_add_iface(This);
342     }
343
344     return refcount;
345 }
346
347 static ULONG WINAPI ddraw_surface3_AddRef(IDirectDrawSurface3 *iface)
348 {
349     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
350     ULONG refcount = InterlockedIncrement(&This->ref3);
351
352     TRACE("iface %p increasing refcount to %u.\n", iface, refcount);
353
354     if (refcount == 1)
355     {
356         ddraw_surface_add_iface(This);
357     }
358
359     return refcount;
360 }
361
362 static ULONG WINAPI ddraw_surface2_AddRef(IDirectDrawSurface2 *iface)
363 {
364     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
365     ULONG refcount = InterlockedIncrement(&This->ref2);
366
367     TRACE("iface %p increasing refcount to %u.\n", iface, refcount);
368
369     if (refcount == 1)
370     {
371         ddraw_surface_add_iface(This);
372     }
373
374     return refcount;
375 }
376
377 static ULONG WINAPI ddraw_surface1_AddRef(IDirectDrawSurface *iface)
378 {
379     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
380     ULONG refcount = InterlockedIncrement(&This->ref1);
381
382     TRACE("iface %p increasing refcount to %u.\n", iface, refcount);
383
384     if (refcount == 1)
385     {
386         ddraw_surface_add_iface(This);
387     }
388
389     return refcount;
390 }
391
392 static ULONG WINAPI ddraw_gamma_control_AddRef(IDirectDrawGammaControl *iface)
393 {
394     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawGammaControl(iface);
395     ULONG refcount = InterlockedIncrement(&This->gamma_count);
396
397     TRACE("iface %p increasing refcount to %u.\n", iface, refcount);
398
399     if (refcount == 1)
400     {
401         ddraw_surface_add_iface(This);
402     }
403
404     return refcount;
405 }
406
407 static ULONG WINAPI d3d_texture2_AddRef(IDirect3DTexture2 *iface)
408 {
409     IDirectDrawSurfaceImpl *This = impl_from_IDirect3DTexture2(iface);
410     TRACE("iface %p.\n", iface);
411
412     return ddraw_surface1_AddRef(&This->IDirectDrawSurface_iface);
413 }
414
415 static ULONG WINAPI d3d_texture1_AddRef(IDirect3DTexture *iface)
416 {
417     IDirectDrawSurfaceImpl *This = impl_from_IDirect3DTexture(iface);
418     TRACE("iface %p.\n", iface);
419
420     return ddraw_surface1_AddRef(&This->IDirectDrawSurface_iface);
421 }
422
423 /*****************************************************************************
424  * ddraw_surface_destroy
425  *
426  * A helper function for IDirectDrawSurface7::Release
427  *
428  * Frees the surface, regardless of its refcount.
429  *  See IDirectDrawSurface7::Release for more information
430  *
431  * Params:
432  *  This: Surface to free
433  *
434  *****************************************************************************/
435 void ddraw_surface_destroy(IDirectDrawSurfaceImpl *This)
436 {
437     TRACE("surface %p.\n", This);
438
439     /* Check the iface count and give a warning */
440     if(This->iface_count > 1)
441     {
442         /* This can happen when a complex surface is destroyed,
443          * because the 2nd surface was addref()ed when the app
444          * called GetAttachedSurface
445          */
446         WARN("(%p): Destroying surface with refcounts 7: %d 4: %d 3: %d 2: %d 1: %d\n",
447                 This, This->ref7, This->ref4, This->ref3, This->ref2, This->ref1);
448     }
449
450     if (This->wined3d_surface)
451         wined3d_surface_decref(This->wined3d_surface);
452 }
453
454 static void ddraw_surface_cleanup(IDirectDrawSurfaceImpl *surface)
455 {
456     IDirectDrawSurfaceImpl *surf;
457     IUnknown *ifaceToRelease;
458     UINT i;
459
460     TRACE("surface %p.\n", surface);
461
462     /* The refcount test shows that the palette is detached when the surface
463      * is destroyed. */
464     IDirectDrawSurface7_SetPalette(&surface->IDirectDrawSurface7_iface, NULL);
465
466     /* Loop through all complex attached surfaces and destroy them.
467      *
468      * Yet again, only the root can have more than one complexly attached
469      * surface, all the others have a total of one. */
470     for (i = 0; i < MAX_COMPLEX_ATTACHED; ++i)
471     {
472         if (!surface->complex_array[i])
473             break;
474
475         surf = surface->complex_array[i];
476         surface->complex_array[i] = NULL;
477         while (surf)
478         {
479             IDirectDrawSurfaceImpl *destroy = surf;
480             surf = surf->complex_array[0];              /* Iterate through the "tree" */
481             ddraw_surface_destroy(destroy);             /* Destroy it */
482         }
483     }
484
485     ifaceToRelease = surface->ifaceToRelease;
486
487     /* Destroy the root surface. */
488     ddraw_surface_destroy(surface);
489
490     /* Reduce the ddraw refcount */
491     if (ifaceToRelease)
492         IUnknown_Release(ifaceToRelease);
493 }
494
495 ULONG ddraw_surface_release_iface(IDirectDrawSurfaceImpl *This)
496 {
497     ULONG iface_count = InterlockedDecrement(&This->iface_count);
498     TRACE("%p decreasing iface count to %u.\n", This, iface_count);
499
500     if (iface_count == 0)
501     {
502         /* Complex attached surfaces are destroyed implicitly when the root is released */
503         wined3d_mutex_lock();
504         if(!This->is_complex_root)
505         {
506             WARN("(%p) Attempt to destroy a surface that is not a complex root\n", This);
507             wined3d_mutex_unlock();
508             return iface_count;
509         }
510         if (This->wined3d_texture) /* If it's a texture, destroy the wined3d texture. */
511             wined3d_texture_decref(This->wined3d_texture);
512         else
513             ddraw_surface_cleanup(This);
514         wined3d_mutex_unlock();
515     }
516
517     return iface_count;
518 }
519
520 /*****************************************************************************
521  * IDirectDrawSurface7::Release
522  *
523  * Reduces the surface's refcount by 1. If the refcount falls to 0, the
524  * surface is destroyed.
525  *
526  * Destroying the surface is a bit tricky. For the connection between
527  * WineD3DSurfaces and DirectDrawSurfaces see IDirectDraw7::CreateSurface
528  * It has a nice graph explaining the connection.
529  *
530  * What happens here is basically this:
531  * When a surface is destroyed, its WineD3DSurface is released,
532  * and the refcount of the DirectDraw interface is reduced by 1. If it has
533  * complex surfaces attached to it, then these surfaces are destroyed too,
534  * regardless of their refcount. If any surface being destroyed has another
535  * surface attached to it (with a "soft" attachment, not complex), then
536  * this surface is detached with DeleteAttachedSurface.
537  *
538  * When the surface is a texture, the WineD3DTexture is released.
539  * If the surface is the Direct3D render target, then the D3D
540  * capabilities of the WineD3DDevice are uninitialized, which causes the
541  * swapchain to be released.
542  *
543  * When a complex sublevel falls to ref zero, then this is ignored.
544  *
545  * Returns:
546  *  The new refcount
547  *
548  *****************************************************************************/
549 static ULONG WINAPI ddraw_surface7_Release(IDirectDrawSurface7 *iface)
550 {
551     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
552     ULONG refcount = InterlockedDecrement(&This->ref7);
553
554     TRACE("iface %p decreasing refcount to %u.\n", iface, refcount);
555
556     if (refcount == 0)
557     {
558         ddraw_surface_release_iface(This);
559     }
560
561     return refcount;
562 }
563
564 static ULONG WINAPI ddraw_surface4_Release(IDirectDrawSurface4 *iface)
565 {
566     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
567     ULONG refcount = InterlockedDecrement(&This->ref4);
568
569     TRACE("iface %p decreasing refcount to %u.\n", iface, refcount);
570
571     if (refcount == 0)
572     {
573         ddraw_surface_release_iface(This);
574     }
575
576     return refcount;
577 }
578
579 static ULONG WINAPI ddraw_surface3_Release(IDirectDrawSurface3 *iface)
580 {
581     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
582     ULONG refcount = InterlockedDecrement(&This->ref3);
583
584     TRACE("iface %p decreasing refcount to %u.\n", iface, refcount);
585
586     if (refcount == 0)
587     {
588         ddraw_surface_release_iface(This);
589     }
590
591     return refcount;
592 }
593
594 static ULONG WINAPI ddraw_surface2_Release(IDirectDrawSurface2 *iface)
595 {
596     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
597     ULONG refcount = InterlockedDecrement(&This->ref2);
598
599     TRACE("iface %p decreasing refcount to %u.\n", iface, refcount);
600
601     if (refcount == 0)
602     {
603         ddraw_surface_release_iface(This);
604     }
605
606     return refcount;
607 }
608
609 static ULONG WINAPI ddraw_surface1_Release(IDirectDrawSurface *iface)
610 {
611     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
612     ULONG refcount = InterlockedDecrement(&This->ref1);
613
614     TRACE("iface %p decreasing refcount to %u.\n", iface, refcount);
615
616     if (refcount == 0)
617     {
618         ddraw_surface_release_iface(This);
619     }
620
621     return refcount;
622 }
623
624 static ULONG WINAPI ddraw_gamma_control_Release(IDirectDrawGammaControl *iface)
625 {
626     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawGammaControl(iface);
627     ULONG refcount = InterlockedDecrement(&This->gamma_count);
628
629     TRACE("iface %p decreasing refcount to %u.\n", iface, refcount);
630
631     if (refcount == 0)
632     {
633         ddraw_surface_release_iface(This);
634     }
635
636     return refcount;
637 }
638
639 static ULONG WINAPI d3d_texture2_Release(IDirect3DTexture2 *iface)
640 {
641     IDirectDrawSurfaceImpl *This = impl_from_IDirect3DTexture2(iface);
642     TRACE("iface %p.\n", iface);
643
644     return ddraw_surface1_Release(&This->IDirectDrawSurface_iface);
645 }
646
647 static ULONG WINAPI d3d_texture1_Release(IDirect3DTexture *iface)
648 {
649     IDirectDrawSurfaceImpl *This = impl_from_IDirect3DTexture(iface);
650     TRACE("iface %p.\n", iface);
651
652     return ddraw_surface1_Release(&This->IDirectDrawSurface_iface);
653 }
654
655 /*****************************************************************************
656  * IDirectDrawSurface7::GetAttachedSurface
657  *
658  * Returns an attached surface with the requested caps. Surface attachment
659  * and complex surfaces are not clearly described by the MSDN or sdk,
660  * so this method is tricky and likely to contain problems.
661  * This implementation searches the complex list first, then the
662  * attachment chain.
663  *
664  * The chains are searched from This down to the last surface in the chain,
665  * not from the first element in the chain. The first surface found is
666  * returned. The MSDN says that this method fails if more than one surface
667  * matches the caps, but it is not sure if that is right. The attachment
668  * structure may not even allow two matching surfaces.
669  *
670  * The found surface is AddRef-ed before it is returned.
671  *
672  * Params:
673  *  Caps: Pointer to a DDCAPS2 structure describing the caps asked for
674  *  Surface: Address to store the found surface
675  *
676  * Returns:
677  *  DD_OK on success
678  *  DDERR_INVALIDPARAMS if Caps or Surface is NULL
679  *  DDERR_NOTFOUND if no surface was found
680  *
681  *****************************************************************************/
682 static HRESULT WINAPI ddraw_surface7_GetAttachedSurface(IDirectDrawSurface7 *iface,
683         DDSCAPS2 *Caps, IDirectDrawSurface7 **Surface)
684 {
685     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
686     IDirectDrawSurfaceImpl *surf;
687     DDSCAPS2 our_caps;
688     int i;
689
690     TRACE("iface %p, caps %p, attachment %p.\n", iface, Caps, Surface);
691
692     wined3d_mutex_lock();
693
694     if(This->version < 7)
695     {
696         /* Earlier dx apps put garbage into these members, clear them */
697         our_caps.dwCaps = Caps->dwCaps;
698         our_caps.dwCaps2 = 0;
699         our_caps.dwCaps3 = 0;
700         our_caps.dwCaps4 = 0;
701     }
702     else
703     {
704         our_caps = *Caps;
705     }
706
707     TRACE("(%p): Looking for caps: %x,%x,%x,%x\n", This, our_caps.dwCaps, our_caps.dwCaps2, our_caps.dwCaps3, our_caps.dwCaps4); /* FIXME: Better debugging */
708
709     for(i = 0; i < MAX_COMPLEX_ATTACHED; i++)
710     {
711         surf = This->complex_array[i];
712         if(!surf) break;
713
714         if (TRACE_ON(ddraw))
715         {
716             TRACE("Surface: (%p) caps: %x,%x,%x,%x\n", surf,
717                    surf->surface_desc.ddsCaps.dwCaps,
718                    surf->surface_desc.ddsCaps.dwCaps2,
719                    surf->surface_desc.ddsCaps.dwCaps3,
720                    surf->surface_desc.ddsCaps.dwCaps4);
721         }
722
723         if (((surf->surface_desc.ddsCaps.dwCaps & our_caps.dwCaps) == our_caps.dwCaps) &&
724             ((surf->surface_desc.ddsCaps.dwCaps2 & our_caps.dwCaps2) == our_caps.dwCaps2)) {
725
726             /* MSDN: "This method fails if more than one surface is attached
727              * that matches the capabilities requested."
728              *
729              * Not sure how to test this.
730              */
731
732             TRACE("(%p): Returning surface %p\n", This, surf);
733             TRACE("(%p): mipmapcount=%d\n", This, surf->mipmap_level);
734             *Surface = &surf->IDirectDrawSurface7_iface;
735             ddraw_surface7_AddRef(*Surface);
736             wined3d_mutex_unlock();
737
738             return DD_OK;
739         }
740     }
741
742     /* Next, look at the attachment chain */
743     surf = This;
744
745     while( (surf = surf->next_attached) )
746     {
747         if (TRACE_ON(ddraw))
748         {
749             TRACE("Surface: (%p) caps: %x,%x,%x,%x\n", surf,
750                    surf->surface_desc.ddsCaps.dwCaps,
751                    surf->surface_desc.ddsCaps.dwCaps2,
752                    surf->surface_desc.ddsCaps.dwCaps3,
753                    surf->surface_desc.ddsCaps.dwCaps4);
754         }
755
756         if (((surf->surface_desc.ddsCaps.dwCaps & our_caps.dwCaps) == our_caps.dwCaps) &&
757             ((surf->surface_desc.ddsCaps.dwCaps2 & our_caps.dwCaps2) == our_caps.dwCaps2)) {
758
759             TRACE("(%p): Returning surface %p\n", This, surf);
760             *Surface = &surf->IDirectDrawSurface7_iface;
761             ddraw_surface7_AddRef(*Surface);
762             wined3d_mutex_unlock();
763             return DD_OK;
764         }
765     }
766
767     TRACE("(%p) Didn't find a valid surface\n", This);
768
769     wined3d_mutex_unlock();
770
771     *Surface = NULL;
772     return DDERR_NOTFOUND;
773 }
774
775 static HRESULT WINAPI ddraw_surface4_GetAttachedSurface(IDirectDrawSurface4 *iface,
776         DDSCAPS2 *caps, IDirectDrawSurface4 **attachment)
777 {
778     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
779     IDirectDrawSurface7 *attachment7;
780     IDirectDrawSurfaceImpl *attachment_impl;
781     HRESULT hr;
782
783     TRACE("iface %p, caps %p, attachment %p.\n", iface, caps, attachment);
784
785     hr = ddraw_surface7_GetAttachedSurface(&This->IDirectDrawSurface7_iface,
786             caps, &attachment7);
787     if (FAILED(hr))
788     {
789         *attachment = NULL;
790         return hr;
791     }
792     attachment_impl = impl_from_IDirectDrawSurface7(attachment7);
793     *attachment = &attachment_impl->IDirectDrawSurface4_iface;
794     ddraw_surface4_AddRef(*attachment);
795     ddraw_surface7_Release(attachment7);
796
797     return hr;
798 }
799
800 static HRESULT WINAPI ddraw_surface3_GetAttachedSurface(IDirectDrawSurface3 *iface,
801         DDSCAPS *caps, IDirectDrawSurface3 **attachment)
802 {
803     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
804     IDirectDrawSurface7 *attachment7;
805     IDirectDrawSurfaceImpl *attachment_impl;
806     DDSCAPS2 caps2;
807     HRESULT hr;
808
809     TRACE("iface %p, caps %p, attachment %p.\n", iface, caps, attachment);
810
811     caps2.dwCaps  = caps->dwCaps;
812     caps2.dwCaps2 = 0;
813     caps2.dwCaps3 = 0;
814     caps2.dwCaps4 = 0;
815
816     hr = ddraw_surface7_GetAttachedSurface(&This->IDirectDrawSurface7_iface,
817             &caps2, &attachment7);
818     if (FAILED(hr))
819     {
820         *attachment = NULL;
821         return hr;
822     }
823     attachment_impl = impl_from_IDirectDrawSurface7(attachment7);
824     *attachment = &attachment_impl->IDirectDrawSurface3_iface;
825     ddraw_surface3_AddRef(*attachment);
826     ddraw_surface7_Release(attachment7);
827
828     return hr;
829 }
830
831 static HRESULT WINAPI ddraw_surface2_GetAttachedSurface(IDirectDrawSurface2 *iface,
832         DDSCAPS *caps, IDirectDrawSurface2 **attachment)
833 {
834     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
835     IDirectDrawSurface7 *attachment7;
836     IDirectDrawSurfaceImpl *attachment_impl;
837     DDSCAPS2 caps2;
838     HRESULT hr;
839
840     TRACE("iface %p, caps %p, attachment %p.\n", iface, caps, attachment);
841
842     caps2.dwCaps  = caps->dwCaps;
843     caps2.dwCaps2 = 0;
844     caps2.dwCaps3 = 0;
845     caps2.dwCaps4 = 0;
846
847     hr = ddraw_surface7_GetAttachedSurface(&This->IDirectDrawSurface7_iface,
848             &caps2, &attachment7);
849     if (FAILED(hr))
850     {
851         *attachment = NULL;
852         return hr;
853     }
854     attachment_impl = impl_from_IDirectDrawSurface7(attachment7);
855     *attachment = &attachment_impl->IDirectDrawSurface2_iface;
856     ddraw_surface2_AddRef(*attachment);
857     ddraw_surface7_Release(attachment7);
858
859     return hr;
860 }
861
862 static HRESULT WINAPI ddraw_surface1_GetAttachedSurface(IDirectDrawSurface *iface,
863         DDSCAPS *caps, IDirectDrawSurface **attachment)
864 {
865     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
866     IDirectDrawSurface7 *attachment7;
867     IDirectDrawSurfaceImpl *attachment_impl;
868     DDSCAPS2 caps2;
869     HRESULT hr;
870
871     TRACE("iface %p, caps %p, attachment %p.\n", iface, caps, attachment);
872
873     caps2.dwCaps  = caps->dwCaps;
874     caps2.dwCaps2 = 0;
875     caps2.dwCaps3 = 0;
876     caps2.dwCaps4 = 0;
877
878     hr = ddraw_surface7_GetAttachedSurface(&This->IDirectDrawSurface7_iface,
879             &caps2, &attachment7);
880     if (FAILED(hr))
881     {
882         *attachment = NULL;
883         return hr;
884     }
885     attachment_impl = impl_from_IDirectDrawSurface7(attachment7);
886     *attachment = &attachment_impl->IDirectDrawSurface_iface;
887     ddraw_surface1_AddRef(*attachment);
888     ddraw_surface7_Release(attachment7);
889
890     return hr;
891 }
892
893 /*****************************************************************************
894  * IDirectDrawSurface7::Lock
895  *
896  * Locks the surface and returns a pointer to the surface's memory
897  *
898  * Params:
899  *  Rect: Rectangle to lock. If NULL, the whole surface is locked
900  *  DDSD: Pointer to a DDSURFACEDESC2 which shall receive the surface's desc.
901  *  Flags: Locking flags, e.g Read only or write only
902  *  h: An event handle that's not used and must be NULL
903  *
904  * Returns:
905  *  DD_OK on success
906  *  DDERR_INVALIDPARAMS if DDSD is NULL
907  *  For more details, see IWineD3DSurface::LockRect
908  *
909  *****************************************************************************/
910 static HRESULT surface_lock(IDirectDrawSurfaceImpl *This,
911         RECT *Rect, DDSURFACEDESC2 *DDSD, DWORD Flags, HANDLE h)
912 {
913     struct wined3d_mapped_rect mapped_rect;
914     HRESULT hr = DD_OK;
915
916     TRACE("This %p, rect %s, surface_desc %p, flags %#x, h %p.\n",
917             This, wine_dbgstr_rect(Rect), DDSD, Flags, h);
918
919     /* This->surface_desc.dwWidth and dwHeight are changeable, thus lock */
920     wined3d_mutex_lock();
921
922     /* Should I check for the handle to be NULL?
923      *
924      * The DDLOCK flags and the D3DLOCK flags are equal
925      * for the supported values. The others are ignored by WineD3D
926      */
927
928     /* Windows zeroes this if the rect is invalid */
929     DDSD->lpSurface = 0;
930
931     if (Rect)
932     {
933         if ((Rect->left < 0)
934                 || (Rect->top < 0)
935                 || (Rect->left > Rect->right)
936                 || (Rect->top > Rect->bottom)
937                 || (Rect->right > This->surface_desc.dwWidth)
938                 || (Rect->bottom > This->surface_desc.dwHeight))
939         {
940             WARN("Trying to lock an invalid rectangle, returning DDERR_INVALIDPARAMS\n");
941             wined3d_mutex_unlock();
942             return DDERR_INVALIDPARAMS;
943         }
944     }
945
946     if (This->surface_desc.ddsCaps.dwCaps & DDSCAPS_FRONTBUFFER)
947         hr = ddraw_surface_update_frontbuffer(This, Rect, TRUE);
948     if (SUCCEEDED(hr))
949         hr = wined3d_surface_map(This->wined3d_surface, &mapped_rect, Rect, Flags);
950     if (FAILED(hr))
951     {
952         wined3d_mutex_unlock();
953         switch(hr)
954         {
955             /* D3D8 and D3D9 return the general D3DERR_INVALIDCALL error, but ddraw has a more
956              * specific error. But since IWineD3DSurface::LockRect returns that error in this
957              * only occasion, keep d3d8 and d3d9 free from the return value override. There are
958              * many different places where d3d8/9 would have to catch the DDERR_SURFACEBUSY, it
959              * is much easier to do it in one place in ddraw
960              */
961             case WINED3DERR_INVALIDCALL:    return DDERR_SURFACEBUSY;
962             default:                        return hr;
963         }
964     }
965
966     if (This->surface_desc.ddsCaps.dwCaps & DDSCAPS_FRONTBUFFER)
967     {
968         if (Flags & DDLOCK_READONLY)
969             memset(&This->ddraw->primary_lock, 0, sizeof(This->ddraw->primary_lock));
970         else if (Rect)
971             This->ddraw->primary_lock = *Rect;
972         else
973             SetRect(&This->ddraw->primary_lock, 0, 0, This->surface_desc.dwWidth, This->surface_desc.dwHeight);
974     }
975
976     /* Override the memory area. The pitch should be set already. Strangely windows
977      * does not set the LPSURFACE flag on locked surfaces !?!.
978      * DDSD->dwFlags |= DDSD_LPSURFACE;
979      */
980     This->surface_desc.lpSurface = mapped_rect.data;
981     DD_STRUCT_COPY_BYSIZE(DDSD,&(This->surface_desc));
982
983     TRACE("locked surface returning description :\n");
984     if (TRACE_ON(ddraw)) DDRAW_dump_surface_desc(DDSD);
985
986     wined3d_mutex_unlock();
987
988     return DD_OK;
989 }
990
991 static HRESULT WINAPI ddraw_surface7_Lock(IDirectDrawSurface7 *iface,
992         RECT *rect, DDSURFACEDESC2 *surface_desc, DWORD flags, HANDLE h)
993 {
994     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
995     TRACE("iface %p, rect %s, surface_desc %p, flags %#x, h %p.\n",
996             iface, wine_dbgstr_rect(rect), surface_desc, flags, h);
997
998     if (!surface_desc) return DDERR_INVALIDPARAMS;
999     if (surface_desc->dwSize != sizeof(DDSURFACEDESC) &&
1000             surface_desc->dwSize != sizeof(DDSURFACEDESC2))
1001     {
1002         WARN("Invalid structure size %d, returning DDERR_INVALIDPARAMS\n", surface_desc->dwSize);
1003         return DDERR_INVALIDPARAMS;
1004     }
1005     return surface_lock(This, rect, surface_desc, flags, h);
1006 }
1007
1008 static HRESULT WINAPI ddraw_surface4_Lock(IDirectDrawSurface4 *iface, RECT *rect,
1009         DDSURFACEDESC2 *surface_desc, DWORD flags, HANDLE h)
1010 {
1011     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
1012     TRACE("iface %p, rect %s, surface_desc %p, flags %#x, h %p.\n",
1013             iface, wine_dbgstr_rect(rect), surface_desc, flags, h);
1014
1015     if (!surface_desc) return DDERR_INVALIDPARAMS;
1016     if (surface_desc->dwSize != sizeof(DDSURFACEDESC) &&
1017             surface_desc->dwSize != sizeof(DDSURFACEDESC2))
1018     {
1019         WARN("Invalid structure size %d, returning DDERR_INVALIDPARAMS\n", surface_desc->dwSize);
1020         return DDERR_INVALIDPARAMS;
1021     }
1022     return surface_lock(This, rect, surface_desc, flags, h);
1023 }
1024
1025 static HRESULT WINAPI ddraw_surface3_Lock(IDirectDrawSurface3 *iface, RECT *rect,
1026         DDSURFACEDESC *surface_desc, DWORD flags, HANDLE h)
1027 {
1028     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
1029     DDSURFACEDESC2 surface_desc2;
1030     HRESULT hr;
1031     TRACE("iface %p, rect %s, surface_desc %p, flags %#x, h %p.\n",
1032             iface, wine_dbgstr_rect(rect), surface_desc, flags, h);
1033
1034     if (!surface_desc) return DDERR_INVALIDPARAMS;
1035     if (surface_desc->dwSize != sizeof(DDSURFACEDESC) &&
1036             surface_desc->dwSize != sizeof(DDSURFACEDESC2))
1037     {
1038         WARN("Invalid structure size %d, returning DDERR_INVALIDPARAMS\n", surface_desc->dwSize);
1039         return DDERR_INVALIDPARAMS;
1040     }
1041
1042     surface_desc2.dwSize = surface_desc->dwSize;
1043     surface_desc2.dwFlags = 0;
1044     hr = surface_lock(This, rect, &surface_desc2, flags, h);
1045     DDSD2_to_DDSD(&surface_desc2, surface_desc);
1046     surface_desc->dwSize = surface_desc2.dwSize;
1047     return hr;
1048 }
1049
1050 static HRESULT WINAPI ddraw_surface2_Lock(IDirectDrawSurface2 *iface, RECT *rect,
1051         DDSURFACEDESC *surface_desc, DWORD flags, HANDLE h)
1052 {
1053     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
1054     DDSURFACEDESC2 surface_desc2;
1055     HRESULT hr;
1056     TRACE("iface %p, rect %s, surface_desc %p, flags %#x, h %p.\n",
1057             iface, wine_dbgstr_rect(rect), surface_desc, flags, h);
1058
1059     if (!surface_desc) return DDERR_INVALIDPARAMS;
1060     if (surface_desc->dwSize != sizeof(DDSURFACEDESC) &&
1061             surface_desc->dwSize != sizeof(DDSURFACEDESC2))
1062     {
1063         WARN("Invalid structure size %d, returning DDERR_INVALIDPARAMS\n", surface_desc->dwSize);
1064         return DDERR_INVALIDPARAMS;
1065     }
1066
1067     surface_desc2.dwSize = surface_desc->dwSize;
1068     surface_desc2.dwFlags = 0;
1069     hr = surface_lock(This, rect, &surface_desc2, flags, h);
1070     DDSD2_to_DDSD(&surface_desc2, surface_desc);
1071     surface_desc->dwSize = surface_desc2.dwSize;
1072     return hr;
1073 }
1074
1075 static HRESULT WINAPI ddraw_surface1_Lock(IDirectDrawSurface *iface, RECT *rect,
1076         DDSURFACEDESC *surface_desc, DWORD flags, HANDLE h)
1077 {
1078     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
1079     DDSURFACEDESC2 surface_desc2;
1080     HRESULT hr;
1081     TRACE("iface %p, rect %s, surface_desc %p, flags %#x, h %p.\n",
1082             iface, wine_dbgstr_rect(rect), surface_desc, flags, h);
1083
1084     if (!surface_desc) return DDERR_INVALIDPARAMS;
1085     if (surface_desc->dwSize != sizeof(DDSURFACEDESC) &&
1086             surface_desc->dwSize != sizeof(DDSURFACEDESC2))
1087     {
1088         WARN("Invalid structure size %d, returning DDERR_INVALIDPARAMS\n", surface_desc->dwSize);
1089         return DDERR_INVALIDPARAMS;
1090     }
1091
1092     surface_desc2.dwSize = surface_desc->dwSize;
1093     surface_desc2.dwFlags = 0;
1094     hr = surface_lock(This, rect, &surface_desc2, flags, h);
1095     DDSD2_to_DDSD(&surface_desc2, surface_desc);
1096     surface_desc->dwSize = surface_desc2.dwSize;
1097     return hr;
1098 }
1099
1100 /*****************************************************************************
1101  * IDirectDrawSurface7::Unlock
1102  *
1103  * Unlocks an locked surface
1104  *
1105  * Params:
1106  *  Rect: Not used by this implementation
1107  *
1108  * Returns:
1109  *  D3D_OK on success
1110  *  For more details, see IWineD3DSurface::UnlockRect
1111  *
1112  *****************************************************************************/
1113 static HRESULT WINAPI ddraw_surface7_Unlock(IDirectDrawSurface7 *iface, RECT *pRect)
1114 {
1115     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
1116     HRESULT hr;
1117
1118     TRACE("iface %p, rect %s.\n", iface, wine_dbgstr_rect(pRect));
1119
1120     wined3d_mutex_lock();
1121     hr = wined3d_surface_unmap(This->wined3d_surface);
1122     if (SUCCEEDED(hr))
1123     {
1124         if (This->surface_desc.ddsCaps.dwCaps & DDSCAPS_FRONTBUFFER)
1125             hr = ddraw_surface_update_frontbuffer(This, &This->ddraw->primary_lock, FALSE);
1126         This->surface_desc.lpSurface = NULL;
1127     }
1128     wined3d_mutex_unlock();
1129
1130     return hr;
1131 }
1132
1133 static HRESULT WINAPI ddraw_surface4_Unlock(IDirectDrawSurface4 *iface, RECT *pRect)
1134 {
1135     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
1136     TRACE("iface %p, rect %p.\n", iface, pRect);
1137
1138     return ddraw_surface7_Unlock(&This->IDirectDrawSurface7_iface, pRect);
1139 }
1140
1141 static HRESULT WINAPI ddraw_surface3_Unlock(IDirectDrawSurface3 *iface, void *data)
1142 {
1143     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
1144     TRACE("iface %p, data %p.\n", iface, data);
1145
1146     /* data might not be the LPRECT of later versions, so drop it. */
1147     return ddraw_surface7_Unlock(&This->IDirectDrawSurface7_iface, NULL);
1148 }
1149
1150 static HRESULT WINAPI ddraw_surface2_Unlock(IDirectDrawSurface2 *iface, void *data)
1151 {
1152     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
1153     TRACE("iface %p, data %p.\n", iface, data);
1154
1155     /* data might not be the LPRECT of later versions, so drop it. */
1156     return ddraw_surface7_Unlock(&This->IDirectDrawSurface7_iface, NULL);
1157 }
1158
1159 static HRESULT WINAPI ddraw_surface1_Unlock(IDirectDrawSurface *iface, void *data)
1160 {
1161     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
1162     TRACE("iface %p, data %p.\n", iface, data);
1163
1164     /* data might not be the LPRECT of later versions, so drop it. */
1165     return ddraw_surface7_Unlock(&This->IDirectDrawSurface7_iface, NULL);
1166 }
1167
1168 /*****************************************************************************
1169  * IDirectDrawSurface7::Flip
1170  *
1171  * Flips a surface with the DDSCAPS_FLIP flag. The flip is relayed to
1172  * IWineD3DSurface::Flip. Because WineD3D doesn't handle attached surfaces,
1173  * the flip target is passed to WineD3D, even if the app didn't specify one
1174  *
1175  * Params:
1176  *  DestOverride: Specifies the surface that will become the new front
1177  *                buffer. If NULL, the current back buffer is used
1178  *  Flags: some DirectDraw flags, see include/ddraw.h
1179  *
1180  * Returns:
1181  *  DD_OK on success
1182  *  DDERR_NOTFLIPPABLE if no flip target could be found
1183  *  DDERR_INVALIDOBJECT if the surface isn't a front buffer
1184  *  For more details, see IWineD3DSurface::Flip
1185  *
1186  *****************************************************************************/
1187 static HRESULT WINAPI ddraw_surface7_Flip(IDirectDrawSurface7 *iface, IDirectDrawSurface7 *DestOverride, DWORD Flags)
1188 {
1189     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
1190     IDirectDrawSurfaceImpl *Override = unsafe_impl_from_IDirectDrawSurface7(DestOverride);
1191     IDirectDrawSurface7 *Override7;
1192     HRESULT hr;
1193
1194     TRACE("iface %p, dst %p, flags %#x.\n", iface, DestOverride, Flags);
1195
1196     /* Flip has to be called from a front buffer
1197      * What about overlay surfaces, AFAIK they can flip too?
1198      */
1199     if( !(This->surface_desc.ddsCaps.dwCaps & (DDSCAPS_FRONTBUFFER | DDSCAPS_OVERLAY)) )
1200         return DDERR_INVALIDOBJECT; /* Unchecked */
1201
1202     wined3d_mutex_lock();
1203
1204     /* WineD3D doesn't keep track of attached surface, so find the target */
1205     if(!Override)
1206     {
1207         DDSCAPS2 Caps;
1208
1209         memset(&Caps, 0, sizeof(Caps));
1210         Caps.dwCaps |= DDSCAPS_BACKBUFFER;
1211         hr = ddraw_surface7_GetAttachedSurface(iface, &Caps, &Override7);
1212         if(hr != DD_OK)
1213         {
1214             ERR("Can't find a flip target\n");
1215             wined3d_mutex_unlock();
1216             return DDERR_NOTFLIPPABLE; /* Unchecked */
1217         }
1218         Override = impl_from_IDirectDrawSurface7(Override7);
1219
1220         /* For the GetAttachedSurface */
1221         ddraw_surface7_Release(Override7);
1222     }
1223
1224     hr = wined3d_surface_flip(This->wined3d_surface, Override->wined3d_surface, Flags);
1225     if (SUCCEEDED(hr) && This->surface_desc.ddsCaps.dwCaps & DDSCAPS_FRONTBUFFER)
1226         hr = ddraw_surface_update_frontbuffer(This, NULL, FALSE);
1227
1228     wined3d_mutex_unlock();
1229
1230     return hr;
1231 }
1232
1233 static HRESULT WINAPI ddraw_surface4_Flip(IDirectDrawSurface4 *iface, IDirectDrawSurface4 *dst, DWORD flags)
1234 {
1235     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
1236     IDirectDrawSurfaceImpl *dst_impl = unsafe_impl_from_IDirectDrawSurface4(dst);
1237     TRACE("iface %p, dst %p, flags %#x.\n", iface, dst, flags);
1238
1239     return ddraw_surface7_Flip(&This->IDirectDrawSurface7_iface,
1240             dst_impl ? &dst_impl->IDirectDrawSurface7_iface : NULL, flags);
1241 }
1242
1243 static HRESULT WINAPI ddraw_surface3_Flip(IDirectDrawSurface3 *iface, IDirectDrawSurface3 *dst, DWORD flags)
1244 {
1245     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
1246     IDirectDrawSurfaceImpl *dst_impl = unsafe_impl_from_IDirectDrawSurface3(dst);
1247     TRACE("iface %p, dst %p, flags %#x.\n", iface, dst, flags);
1248
1249     return ddraw_surface7_Flip(&This->IDirectDrawSurface7_iface,
1250             dst_impl ? &dst_impl->IDirectDrawSurface7_iface : NULL, flags);
1251 }
1252
1253 static HRESULT WINAPI ddraw_surface2_Flip(IDirectDrawSurface2 *iface, IDirectDrawSurface2 *dst, DWORD flags)
1254 {
1255     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
1256     IDirectDrawSurfaceImpl *dst_impl = unsafe_impl_from_IDirectDrawSurface2(dst);
1257     TRACE("iface %p, dst %p, flags %#x.\n", iface, dst, flags);
1258
1259     return ddraw_surface7_Flip(&This->IDirectDrawSurface7_iface,
1260             dst_impl ? &dst_impl->IDirectDrawSurface7_iface : NULL, flags);
1261 }
1262
1263 static HRESULT WINAPI ddraw_surface1_Flip(IDirectDrawSurface *iface, IDirectDrawSurface *dst, DWORD flags)
1264 {
1265     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
1266     IDirectDrawSurfaceImpl *dst_impl = unsafe_impl_from_IDirectDrawSurface(dst);
1267     TRACE("iface %p, dst %p, flags %#x.\n", iface, dst, flags);
1268
1269     return ddraw_surface7_Flip(&This->IDirectDrawSurface7_iface,
1270             dst_impl ? &dst_impl->IDirectDrawSurface7_iface : NULL, flags);
1271 }
1272
1273 static HRESULT ddraw_surface_blt_clipped(IDirectDrawSurfaceImpl *dst_surface, const RECT *dst_rect_in,
1274         IDirectDrawSurfaceImpl *src_surface, const RECT *src_rect_in, DWORD flags,
1275         const WINEDDBLTFX *fx, WINED3DTEXTUREFILTERTYPE filter)
1276 {
1277     struct wined3d_surface *wined3d_src_surface = src_surface ? src_surface->wined3d_surface : NULL;
1278     RECT src_rect, dst_rect;
1279     float scale_x, scale_y;
1280     const RECT *clip_rect;
1281     UINT clip_list_size;
1282     RGNDATA *clip_list;
1283     HRESULT hr = DD_OK;
1284     UINT i;
1285
1286     if (!dst_surface->clipper)
1287     {
1288         if (src_surface && src_surface->surface_desc.ddsCaps.dwCaps & DDSCAPS_FRONTBUFFER)
1289             hr = ddraw_surface_update_frontbuffer(src_surface, src_rect_in, TRUE);
1290         if (SUCCEEDED(hr))
1291             hr = wined3d_surface_blt(dst_surface->wined3d_surface, dst_rect_in,
1292                     wined3d_src_surface, src_rect_in, flags, fx, filter);
1293         if (SUCCEEDED(hr) && (dst_surface->surface_desc.ddsCaps.dwCaps & DDSCAPS_FRONTBUFFER))
1294             hr = ddraw_surface_update_frontbuffer(dst_surface, dst_rect_in, FALSE);
1295
1296         return hr;
1297     }
1298
1299     if (!dst_rect_in)
1300     {
1301         dst_rect.left = 0;
1302         dst_rect.top = 0;
1303         dst_rect.right = dst_surface->surface_desc.dwWidth;
1304         dst_rect.bottom = dst_surface->surface_desc.dwHeight;
1305     }
1306     else
1307     {
1308         dst_rect = *dst_rect_in;
1309     }
1310
1311     if (IsRectEmpty(&dst_rect))
1312         return DDERR_INVALIDRECT;
1313
1314     if (src_surface)
1315     {
1316         if (!src_rect_in)
1317         {
1318             src_rect.left = 0;
1319             src_rect.top = 0;
1320             src_rect.right = src_surface->surface_desc.dwWidth;
1321             src_rect.bottom = src_surface->surface_desc.dwHeight;
1322         }
1323         else
1324         {
1325             src_rect = *src_rect_in;
1326         }
1327
1328         if (IsRectEmpty(&src_rect))
1329             return DDERR_INVALIDRECT;
1330     }
1331     else
1332     {
1333         SetRect(&src_rect, 0, 0, 0, 0);
1334     }
1335
1336     scale_x = (float)(src_rect.right - src_rect.left) / (float)(dst_rect.right - dst_rect.left);
1337     scale_y = (float)(src_rect.bottom - src_rect.top) / (float)(dst_rect.bottom - dst_rect.top);
1338
1339     if (FAILED(hr = IDirectDrawClipper_GetClipList(&dst_surface->clipper->IDirectDrawClipper_iface,
1340             &dst_rect, NULL, &clip_list_size)))
1341     {
1342         WARN("Failed to get clip list size, hr %#x.\n", hr);
1343         return hr;
1344     }
1345
1346     if (!(clip_list = HeapAlloc(GetProcessHeap(), 0, clip_list_size)))
1347     {
1348         WARN("Failed to allocate clip list.\n");
1349         return E_OUTOFMEMORY;
1350     }
1351
1352     if (FAILED(hr = IDirectDrawClipper_GetClipList(&dst_surface->clipper->IDirectDrawClipper_iface,
1353             &dst_rect, clip_list, &clip_list_size)))
1354     {
1355         WARN("Failed to get clip list, hr %#x.\n", hr);
1356         return hr;
1357     }
1358
1359     clip_rect = (RECT *)clip_list->Buffer;
1360     for (i = 0; i < clip_list->rdh.nCount; ++i)
1361     {
1362         RECT src_rect_clipped = src_rect;
1363
1364         if (src_surface)
1365         {
1366             src_rect_clipped.left += (clip_rect[i].left - dst_rect.left) * scale_x;
1367             src_rect_clipped.top += (clip_rect[i].top - dst_rect.top) * scale_y;
1368             src_rect_clipped.right -= (dst_rect.right - clip_rect[i].right) * scale_x;
1369             src_rect_clipped.bottom -= (dst_rect.bottom - clip_rect[i].bottom) * scale_y;
1370
1371             if (src_surface->surface_desc.ddsCaps.dwCaps & DDSCAPS_FRONTBUFFER)
1372             {
1373                 if (FAILED(hr = ddraw_surface_update_frontbuffer(src_surface, &src_rect_clipped, TRUE)))
1374                     break;
1375             }
1376         }
1377
1378         if (FAILED(hr = wined3d_surface_blt(dst_surface->wined3d_surface, &clip_rect[i],
1379                 wined3d_src_surface, &src_rect_clipped, flags, fx, filter)))
1380             break;
1381
1382         if (dst_surface->surface_desc.ddsCaps.dwCaps & DDSCAPS_FRONTBUFFER)
1383         {
1384             if (FAILED(hr = ddraw_surface_update_frontbuffer(dst_surface, &clip_rect[i], FALSE)))
1385                 break;
1386         }
1387     }
1388
1389     return hr;
1390 }
1391
1392 /*****************************************************************************
1393  * IDirectDrawSurface7::Blt
1394  *
1395  * Performs a blit on the surface
1396  *
1397  * Params:
1398  *  DestRect: Destination rectangle, can be NULL
1399  *  SrcSurface: Source surface, can be NULL
1400  *  SrcRect: Source rectangle, can be NULL
1401  *  Flags: Blt flags
1402  *  DDBltFx: Some extended blt parameters, connected to the flags
1403  *
1404  * Returns:
1405  *  D3D_OK on success
1406  *  See IWineD3DSurface::Blt for more details
1407  *
1408  *****************************************************************************/
1409 static HRESULT WINAPI ddraw_surface7_Blt(IDirectDrawSurface7 *iface, RECT *DestRect,
1410         IDirectDrawSurface7 *SrcSurface, RECT *SrcRect, DWORD Flags, DDBLTFX *DDBltFx)
1411 {
1412     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
1413     IDirectDrawSurfaceImpl *Src = unsafe_impl_from_IDirectDrawSurface7(SrcSurface);
1414     HRESULT hr = DD_OK;
1415
1416     TRACE("iface %p, dst_rect %s, src_surface %p, src_rect %s, flags %#x, fx %p.\n",
1417             iface, wine_dbgstr_rect(DestRect), SrcSurface, wine_dbgstr_rect(SrcRect), Flags, DDBltFx);
1418
1419     /* Check for validity of the flags here. WineD3D Has the software-opengl selection path and would have
1420      * to check at 2 places, and sometimes do double checks. This also saves the call to wined3d :-)
1421      */
1422     if((Flags & DDBLT_KEYSRCOVERRIDE) && (!DDBltFx || Flags & DDBLT_KEYSRC)) {
1423         WARN("Invalid source color key parameters, returning DDERR_INVALIDPARAMS\n");
1424         return DDERR_INVALIDPARAMS;
1425     }
1426
1427     if((Flags & DDBLT_KEYDESTOVERRIDE) && (!DDBltFx || Flags & DDBLT_KEYDEST)) {
1428         WARN("Invalid destination color key parameters, returning DDERR_INVALIDPARAMS\n");
1429         return DDERR_INVALIDPARAMS;
1430     }
1431
1432     wined3d_mutex_lock();
1433
1434     if(Flags & DDBLT_KEYSRC && (!Src || !(Src->surface_desc.dwFlags & DDSD_CKSRCBLT))) {
1435         WARN("DDBLT_KEYDEST blit without color key in surface, returning DDERR_INVALIDPARAMS\n");
1436         wined3d_mutex_unlock();
1437         return DDERR_INVALIDPARAMS;
1438     }
1439
1440     /* TODO: Check if the DDBltFx contains any ddraw surface pointers. If it
1441      * does, copy the struct, and replace the ddraw surfaces with the wined3d
1442      * surfaces. So far no blitting operations using surfaces in the bltfx
1443      * struct are supported anyway. */
1444     hr = ddraw_surface_blt_clipped(This, DestRect, Src, SrcRect,
1445             Flags, (WINEDDBLTFX *)DDBltFx, WINED3DTEXF_LINEAR);
1446
1447     wined3d_mutex_unlock();
1448     switch(hr)
1449     {
1450         case WINED3DERR_NOTAVAILABLE:       return DDERR_UNSUPPORTED;
1451         case WINED3DERR_WRONGTEXTUREFORMAT: return DDERR_INVALIDPIXELFORMAT;
1452         default:                            return hr;
1453     }
1454 }
1455
1456 static HRESULT WINAPI ddraw_surface4_Blt(IDirectDrawSurface4 *iface, RECT *dst_rect,
1457         IDirectDrawSurface4 *src_surface, RECT *src_rect, DWORD flags, DDBLTFX *fx)
1458 {
1459     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
1460     IDirectDrawSurfaceImpl *src = unsafe_impl_from_IDirectDrawSurface4(src_surface);
1461     TRACE("iface %p, dst_rect %s, src_surface %p, src_rect %s, flags %#x, fx %p.\n",
1462             iface, wine_dbgstr_rect(dst_rect), src_surface, wine_dbgstr_rect(src_rect), flags, fx);
1463
1464     return ddraw_surface7_Blt(&This->IDirectDrawSurface7_iface, dst_rect,
1465             src ? &src->IDirectDrawSurface7_iface : NULL, src_rect, flags, fx);
1466 }
1467
1468 static HRESULT WINAPI ddraw_surface3_Blt(IDirectDrawSurface3 *iface, RECT *dst_rect,
1469         IDirectDrawSurface3 *src_surface, RECT *src_rect, DWORD flags, DDBLTFX *fx)
1470 {
1471     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
1472     IDirectDrawSurfaceImpl *src_impl = unsafe_impl_from_IDirectDrawSurface3(src_surface);
1473     TRACE("iface %p, dst_rect %s, src_surface %p, src_rect %s, flags %#x, fx %p.\n",
1474             iface, wine_dbgstr_rect(dst_rect), src_surface, wine_dbgstr_rect(src_rect), flags, fx);
1475
1476     return ddraw_surface7_Blt(&This->IDirectDrawSurface7_iface, dst_rect,
1477             src_impl ? &src_impl->IDirectDrawSurface7_iface : NULL, src_rect, flags, fx);
1478 }
1479
1480 static HRESULT WINAPI ddraw_surface2_Blt(IDirectDrawSurface2 *iface, RECT *dst_rect,
1481         IDirectDrawSurface2 *src_surface, RECT *src_rect, DWORD flags, DDBLTFX *fx)
1482 {
1483     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
1484     IDirectDrawSurfaceImpl *src_impl = unsafe_impl_from_IDirectDrawSurface2(src_surface);
1485     TRACE("iface %p, dst_rect %s, src_surface %p, src_rect %s, flags %#x, fx %p.\n",
1486             iface, wine_dbgstr_rect(dst_rect), src_surface, wine_dbgstr_rect(src_rect), flags, fx);
1487
1488     return ddraw_surface7_Blt(&This->IDirectDrawSurface7_iface, dst_rect,
1489             src_impl ? &src_impl->IDirectDrawSurface7_iface : NULL, src_rect, flags, fx);
1490 }
1491
1492 static HRESULT WINAPI ddraw_surface1_Blt(IDirectDrawSurface *iface, RECT *dst_rect,
1493         IDirectDrawSurface *src_surface, RECT *src_rect, DWORD flags, DDBLTFX *fx)
1494 {
1495     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
1496     IDirectDrawSurfaceImpl *src_impl = unsafe_impl_from_IDirectDrawSurface(src_surface);
1497     TRACE("iface %p, dst_rect %s, src_surface %p, src_rect %s, flags %#x, fx %p.\n",
1498             iface, wine_dbgstr_rect(dst_rect), src_surface, wine_dbgstr_rect(src_rect), flags, fx);
1499
1500     return ddraw_surface7_Blt(&This->IDirectDrawSurface7_iface, dst_rect,
1501             src_impl ? &src_impl->IDirectDrawSurface7_iface : NULL, src_rect, flags, fx);
1502 }
1503
1504 /*****************************************************************************
1505  * IDirectDrawSurface7::AddAttachedSurface
1506  *
1507  * Attaches a surface to another surface. How the surface attachments work
1508  * is not totally understood yet, and this method is prone to problems.
1509  * The surface that is attached is AddRef-ed.
1510  *
1511  * Tests with complex surfaces suggest that the surface attachments form a
1512  * tree, but no method to test this has been found yet.
1513  *
1514  * The attachment list consists of a first surface (first_attached) and
1515  * for each surface a pointer to the next attached surface (next_attached).
1516  * For the first surface, and a surface that has no attachments
1517  * first_attached points to the surface itself. A surface that has
1518  * no successors in the chain has next_attached set to NULL.
1519  *
1520  * Newly attached surfaces are attached right after the root surface.
1521  * If a surface is attached to a complex surface compound, it's attached to
1522  * the surface that the app requested, not the complex root. See
1523  * GetAttachedSurface for a description how surfaces are found.
1524  *
1525  * This is how the current implementation works, and it was coded by looking
1526  * at the needs of the applications.
1527  *
1528  * So far only Z-Buffer attachments are tested, and they are activated in
1529  * WineD3D. Mipmaps could be tricky to activate in WineD3D.
1530  * Back buffers should work in 2D mode, but they are not tested(They can be
1531  * attached in older iface versions). Rendering to the front buffer and
1532  * switching between that and double buffering is not yet implemented in
1533  * WineD3D, so for 3D it might have unexpected results.
1534  *
1535  * ddraw_surface_attach_surface is the real thing,
1536  * ddraw_surface7_AddAttachedSurface is a wrapper around it that
1537  * performs additional checks. Version 7 of this interface is much more restrictive
1538  * than its predecessors.
1539  *
1540  * Params:
1541  *  Attach: Surface to attach to iface
1542  *
1543  * Returns:
1544  *  DD_OK on success
1545  *  DDERR_CANNOTATTACHSURFACE if the surface can't be attached for some reason
1546  *
1547  *****************************************************************************/
1548 static HRESULT ddraw_surface_attach_surface(IDirectDrawSurfaceImpl *This, IDirectDrawSurfaceImpl *Surf)
1549 {
1550     TRACE("surface %p, attachment %p.\n", This, Surf);
1551
1552     if(Surf == This)
1553         return DDERR_CANNOTATTACHSURFACE; /* unchecked */
1554
1555     wined3d_mutex_lock();
1556
1557     /* Check if the surface is already attached somewhere */
1558     if (Surf->next_attached || Surf->first_attached != Surf)
1559     {
1560         /* TODO: Test for the structure of the manual attachment. Is it a
1561          * chain or a list? What happens if one surface is attached to 2
1562          * different surfaces? */
1563         WARN("Surface %p is already attached somewhere. next_attached %p, first_attached %p.\n",
1564                 Surf, Surf->next_attached, Surf->first_attached);
1565
1566         wined3d_mutex_unlock();
1567         return DDERR_SURFACEALREADYATTACHED;
1568     }
1569
1570     /* This inserts the new surface at the 2nd position in the chain, right after the root surface */
1571     Surf->next_attached = This->next_attached;
1572     Surf->first_attached = This->first_attached;
1573     This->next_attached = Surf;
1574
1575     /* Check if the WineD3D depth stencil needs updating */
1576     if(This->ddraw->d3ddevice)
1577     {
1578         IDirect3DDeviceImpl_UpdateDepthStencil(This->ddraw->d3ddevice);
1579     }
1580
1581     wined3d_mutex_unlock();
1582
1583     return DD_OK;
1584 }
1585
1586 static HRESULT WINAPI ddraw_surface7_AddAttachedSurface(IDirectDrawSurface7 *iface, IDirectDrawSurface7 *attachment)
1587 {
1588     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
1589     IDirectDrawSurfaceImpl *attachment_impl = unsafe_impl_from_IDirectDrawSurface7(attachment);
1590     HRESULT hr;
1591
1592     TRACE("iface %p, attachment %p.\n", iface, attachment);
1593
1594     /* Version 7 of this interface seems to refuse everything except z buffers, as per msdn */
1595     if(!(attachment_impl->surface_desc.ddsCaps.dwCaps & DDSCAPS_ZBUFFER))
1596     {
1597
1598         WARN("Application tries to attach a non Z buffer surface. caps %08x\n",
1599               attachment_impl->surface_desc.ddsCaps.dwCaps);
1600         return DDERR_CANNOTATTACHSURFACE;
1601     }
1602
1603     hr = ddraw_surface_attach_surface(This, attachment_impl);
1604     if (FAILED(hr))
1605     {
1606         return hr;
1607     }
1608     ddraw_surface7_AddRef(attachment);
1609     attachment_impl->attached_iface = (IUnknown *)attachment;
1610     return hr;
1611 }
1612
1613 static HRESULT WINAPI ddraw_surface4_AddAttachedSurface(IDirectDrawSurface4 *iface, IDirectDrawSurface4 *attachment)
1614 {
1615     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
1616     IDirectDrawSurfaceImpl *attachment_impl = unsafe_impl_from_IDirectDrawSurface4(attachment);
1617     HRESULT hr;
1618
1619     TRACE("iface %p, attachment %p.\n", iface, attachment);
1620
1621     hr = ddraw_surface7_AddAttachedSurface(&This->IDirectDrawSurface7_iface,
1622             attachment_impl ? &attachment_impl->IDirectDrawSurface7_iface : NULL);
1623     if (FAILED(hr))
1624     {
1625         return hr;
1626     }
1627     ddraw_surface4_AddRef(attachment);
1628     ddraw_surface7_Release(&attachment_impl->IDirectDrawSurface7_iface);
1629     attachment_impl->attached_iface = (IUnknown *)attachment;
1630     return hr;
1631 }
1632 static HRESULT WINAPI ddraw_surface3_AddAttachedSurface(IDirectDrawSurface3 *iface, IDirectDrawSurface3 *attachment)
1633 {
1634     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
1635     IDirectDrawSurfaceImpl *attachment_impl = unsafe_impl_from_IDirectDrawSurface3(attachment);
1636     HRESULT hr;
1637
1638     TRACE("iface %p, attachment %p.\n", iface, attachment);
1639
1640     /* Tests suggest that
1641      * -> offscreen plain surfaces can be attached to other offscreen plain surfaces
1642      * -> offscreen plain surfaces can be attached to primaries
1643      * -> primaries can be attached to offscreen plain surfaces
1644      * -> z buffers can be attached to primaries */
1645     if (This->surface_desc.ddsCaps.dwCaps & (DDSCAPS_PRIMARYSURFACE | DDSCAPS_OFFSCREENPLAIN)
1646             && attachment_impl->surface_desc.ddsCaps.dwCaps & (DDSCAPS_PRIMARYSURFACE | DDSCAPS_OFFSCREENPLAIN))
1647     {
1648         /* Sizes have to match */
1649         if (attachment_impl->surface_desc.dwWidth != This->surface_desc.dwWidth
1650                 || attachment_impl->surface_desc.dwHeight != This->surface_desc.dwHeight)
1651         {
1652             WARN("Surface sizes do not match.\n");
1653             return DDERR_CANNOTATTACHSURFACE;
1654         }
1655         /* OK */
1656     }
1657     else if (This->surface_desc.ddsCaps.dwCaps & (DDSCAPS_PRIMARYSURFACE | DDSCAPS_3DDEVICE)
1658             && attachment_impl->surface_desc.ddsCaps.dwCaps & (DDSCAPS_ZBUFFER))
1659     {
1660         /* OK */
1661     }
1662     else
1663     {
1664         WARN("Invalid attachment combination.\n");
1665         return DDERR_CANNOTATTACHSURFACE;
1666     }
1667
1668     hr = ddraw_surface_attach_surface(This, attachment_impl);
1669     if (FAILED(hr))
1670     {
1671         return hr;
1672     }
1673     ddraw_surface3_AddRef(attachment);
1674     attachment_impl->attached_iface = (IUnknown *)attachment;
1675     return hr;
1676 }
1677
1678 static HRESULT WINAPI ddraw_surface2_AddAttachedSurface(IDirectDrawSurface2 *iface, IDirectDrawSurface2 *attachment)
1679 {
1680     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
1681     IDirectDrawSurfaceImpl *attachment_impl = unsafe_impl_from_IDirectDrawSurface2(attachment);
1682     HRESULT hr;
1683
1684     TRACE("iface %p, attachment %p.\n", iface, attachment);
1685
1686     hr = ddraw_surface3_AddAttachedSurface(&This->IDirectDrawSurface3_iface,
1687             attachment_impl ? &attachment_impl->IDirectDrawSurface3_iface : NULL);
1688     if (FAILED(hr))
1689     {
1690         return hr;
1691     }
1692     ddraw_surface2_AddRef(attachment);
1693     ddraw_surface3_Release(&attachment_impl->IDirectDrawSurface3_iface);
1694     attachment_impl->attached_iface = (IUnknown *)attachment;
1695     return hr;
1696 }
1697
1698 static HRESULT WINAPI ddraw_surface1_AddAttachedSurface(IDirectDrawSurface *iface, IDirectDrawSurface *attachment)
1699 {
1700     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
1701     IDirectDrawSurfaceImpl *attachment_impl = unsafe_impl_from_IDirectDrawSurface(attachment);
1702     HRESULT hr;
1703
1704     TRACE("iface %p, attachment %p.\n", iface, attachment);
1705
1706     hr = ddraw_surface3_AddAttachedSurface(&This->IDirectDrawSurface3_iface,
1707             attachment_impl ? &attachment_impl->IDirectDrawSurface3_iface : NULL);
1708     if (FAILED(hr))
1709     {
1710         return hr;
1711     }
1712     ddraw_surface1_AddRef(attachment);
1713     ddraw_surface3_Release(&attachment_impl->IDirectDrawSurface3_iface);
1714     attachment_impl->attached_iface = (IUnknown *)attachment;
1715     return hr;
1716 }
1717
1718 /*****************************************************************************
1719  * IDirectDrawSurface7::DeleteAttachedSurface
1720  *
1721  * Removes a surface from the attachment chain. The surface's refcount
1722  * is decreased by one after it has been removed
1723  *
1724  * Params:
1725  *  Flags: Some flags, not used by this implementation
1726  *  Attach: Surface to detach
1727  *
1728  * Returns:
1729  *  DD_OK on success
1730  *  DDERR_SURFACENOTATTACHED if the surface isn't attached to
1731  *
1732  *****************************************************************************/
1733 static HRESULT ddraw_surface_delete_attached_surface(IDirectDrawSurfaceImpl *This,
1734         IDirectDrawSurfaceImpl *Surf, IUnknown *detach_iface)
1735 {
1736     IDirectDrawSurfaceImpl *Prev = This;
1737
1738     TRACE("surface %p, attachment %p, detach_iface %p.\n", This, Surf, detach_iface);
1739
1740     wined3d_mutex_lock();
1741     if (!Surf || (Surf->first_attached != This) || (Surf == This) )
1742     {
1743         wined3d_mutex_unlock();
1744         return DDERR_CANNOTDETACHSURFACE;
1745     }
1746
1747     if (Surf->attached_iface != detach_iface)
1748     {
1749         WARN("Surf->attach_iface %p != detach_iface %p.\n", Surf->attached_iface, detach_iface);
1750         wined3d_mutex_unlock();
1751         return DDERR_SURFACENOTATTACHED;
1752     }
1753
1754     /* Remove MIPMAPSUBLEVEL if this seemed to be one */
1755     if (This->surface_desc.ddsCaps.dwCaps &
1756         Surf->surface_desc.ddsCaps.dwCaps & DDSCAPS_MIPMAP)
1757     {
1758         Surf->surface_desc.ddsCaps.dwCaps2 &= ~DDSCAPS2_MIPMAPSUBLEVEL;
1759         /* FIXME: we should probably also subtract from dwMipMapCount of this
1760          * and all parent surfaces */
1761     }
1762
1763     /* Find the predecessor of the detached surface */
1764     while(Prev)
1765     {
1766         if(Prev->next_attached == Surf) break;
1767         Prev = Prev->next_attached;
1768     }
1769
1770     /* There must be a surface, otherwise there's a bug */
1771     assert(Prev != NULL);
1772
1773     /* Unchain the surface */
1774     Prev->next_attached = Surf->next_attached;
1775     Surf->next_attached = NULL;
1776     Surf->first_attached = Surf;
1777
1778     /* Check if the WineD3D depth stencil needs updating */
1779     if(This->ddraw->d3ddevice)
1780     {
1781         IDirect3DDeviceImpl_UpdateDepthStencil(This->ddraw->d3ddevice);
1782     }
1783     wined3d_mutex_unlock();
1784
1785     /* Set attached_iface to NULL before releasing it, the surface may go
1786      * away. */
1787     Surf->attached_iface = NULL;
1788     IUnknown_Release(detach_iface);
1789
1790     return DD_OK;
1791 }
1792
1793 static HRESULT WINAPI ddraw_surface7_DeleteAttachedSurface(IDirectDrawSurface7 *iface,
1794         DWORD flags, IDirectDrawSurface7 *attachment)
1795 {
1796     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
1797     IDirectDrawSurfaceImpl *attachment_impl = unsafe_impl_from_IDirectDrawSurface7(attachment);
1798
1799     TRACE("iface %p, flags %#x, attachment %p.\n", iface, flags, attachment);
1800
1801     return ddraw_surface_delete_attached_surface(This, attachment_impl, (IUnknown *)attachment);
1802 }
1803
1804 static HRESULT WINAPI ddraw_surface4_DeleteAttachedSurface(IDirectDrawSurface4 *iface,
1805         DWORD flags, IDirectDrawSurface4 *attachment)
1806 {
1807     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
1808     IDirectDrawSurfaceImpl *attachment_impl = unsafe_impl_from_IDirectDrawSurface4(attachment);
1809
1810     TRACE("iface %p, flags %#x, attachment %p.\n", iface, flags, attachment);
1811
1812     return ddraw_surface_delete_attached_surface(This, attachment_impl, (IUnknown *)attachment);
1813 }
1814
1815 static HRESULT WINAPI ddraw_surface3_DeleteAttachedSurface(IDirectDrawSurface3 *iface,
1816         DWORD flags, IDirectDrawSurface3 *attachment)
1817 {
1818     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
1819     IDirectDrawSurfaceImpl *attachment_impl = unsafe_impl_from_IDirectDrawSurface3(attachment);
1820
1821     TRACE("iface %p, flags %#x, attachment %p.\n", iface, flags, attachment);
1822
1823     return ddraw_surface_delete_attached_surface(This, attachment_impl, (IUnknown *)attachment);
1824 }
1825
1826 static HRESULT WINAPI ddraw_surface2_DeleteAttachedSurface(IDirectDrawSurface2 *iface,
1827         DWORD flags, IDirectDrawSurface2 *attachment)
1828 {
1829     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
1830     IDirectDrawSurfaceImpl *attachment_impl = unsafe_impl_from_IDirectDrawSurface2(attachment);
1831
1832     TRACE("iface %p, flags %#x, attachment %p.\n", iface, flags, attachment);
1833
1834     return ddraw_surface_delete_attached_surface(This, attachment_impl, (IUnknown *)attachment);
1835 }
1836
1837 static HRESULT WINAPI ddraw_surface1_DeleteAttachedSurface(IDirectDrawSurface *iface,
1838         DWORD flags, IDirectDrawSurface *attachment)
1839 {
1840     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
1841     IDirectDrawSurfaceImpl *attachment_impl = unsafe_impl_from_IDirectDrawSurface(attachment);
1842
1843     TRACE("iface %p, flags %#x, attachment %p.\n", iface, flags, attachment);
1844
1845     return ddraw_surface_delete_attached_surface(This, attachment_impl, (IUnknown *)attachment);
1846 }
1847
1848 /*****************************************************************************
1849  * IDirectDrawSurface7::AddOverlayDirtyRect
1850  *
1851  * "This method is not currently implemented"
1852  *
1853  * Params:
1854  *  Rect: ?
1855  *
1856  * Returns:
1857  *  DDERR_UNSUPPORTED
1858  *
1859  *****************************************************************************/
1860 static HRESULT WINAPI ddraw_surface7_AddOverlayDirtyRect(IDirectDrawSurface7 *iface, RECT *Rect)
1861 {
1862     TRACE("iface %p, rect %s.\n", iface, wine_dbgstr_rect(Rect));
1863
1864     return DDERR_UNSUPPORTED; /* unchecked */
1865 }
1866
1867 static HRESULT WINAPI ddraw_surface4_AddOverlayDirtyRect(IDirectDrawSurface4 *iface, RECT *rect)
1868 {
1869     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
1870     TRACE("iface %p, rect %s.\n", iface, wine_dbgstr_rect(rect));
1871
1872     return ddraw_surface7_AddOverlayDirtyRect(&This->IDirectDrawSurface7_iface, rect);
1873 }
1874
1875 static HRESULT WINAPI ddraw_surface3_AddOverlayDirtyRect(IDirectDrawSurface3 *iface, RECT *rect)
1876 {
1877     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
1878     TRACE("iface %p, rect %s.\n", iface, wine_dbgstr_rect(rect));
1879
1880     return ddraw_surface7_AddOverlayDirtyRect(&This->IDirectDrawSurface7_iface, rect);
1881 }
1882
1883 static HRESULT WINAPI ddraw_surface2_AddOverlayDirtyRect(IDirectDrawSurface2 *iface, RECT *rect)
1884 {
1885     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
1886     TRACE("iface %p, rect %s.\n", iface, wine_dbgstr_rect(rect));
1887
1888     return ddraw_surface7_AddOverlayDirtyRect(&This->IDirectDrawSurface7_iface, rect);
1889 }
1890
1891 static HRESULT WINAPI ddraw_surface1_AddOverlayDirtyRect(IDirectDrawSurface *iface, RECT *rect)
1892 {
1893     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
1894     TRACE("iface %p, rect %s.\n", iface, wine_dbgstr_rect(rect));
1895
1896     return ddraw_surface7_AddOverlayDirtyRect(&This->IDirectDrawSurface7_iface, rect);
1897 }
1898
1899 /*****************************************************************************
1900  * IDirectDrawSurface7::GetDC
1901  *
1902  * Returns a GDI device context for the surface
1903  *
1904  * Params:
1905  *  hdc: Address of a HDC variable to store the dc to
1906  *
1907  * Returns:
1908  *  DD_OK on success
1909  *  DDERR_INVALIDPARAMS if hdc is NULL
1910  *  For details, see IWineD3DSurface::GetDC
1911  *
1912  *****************************************************************************/
1913 static HRESULT WINAPI ddraw_surface7_GetDC(IDirectDrawSurface7 *iface, HDC *hdc)
1914 {
1915     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
1916     HRESULT hr = DD_OK;
1917
1918     TRACE("iface %p, dc %p.\n", iface, hdc);
1919
1920     if(!hdc)
1921         return DDERR_INVALIDPARAMS;
1922
1923     wined3d_mutex_lock();
1924     if (This->surface_desc.ddsCaps.dwCaps & DDSCAPS_FRONTBUFFER)
1925         hr = ddraw_surface_update_frontbuffer(This, NULL, TRUE);
1926     if (SUCCEEDED(hr))
1927         hr = wined3d_surface_getdc(This->wined3d_surface, hdc);
1928     wined3d_mutex_unlock();
1929     switch(hr)
1930     {
1931         /* Some, but not all errors set *hdc to NULL. E.g. DCALREADYCREATED does not
1932          * touch *hdc
1933          */
1934         case WINED3DERR_INVALIDCALL:
1935             if(hdc) *hdc = NULL;
1936             return DDERR_INVALIDPARAMS;
1937
1938         default: return hr;
1939     }
1940 }
1941
1942 static HRESULT WINAPI ddraw_surface4_GetDC(IDirectDrawSurface4 *iface, HDC *dc)
1943 {
1944     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
1945     TRACE("iface %p, dc %p.\n", iface, dc);
1946
1947     return ddraw_surface7_GetDC(&This->IDirectDrawSurface7_iface, dc);
1948 }
1949
1950 static HRESULT WINAPI ddraw_surface3_GetDC(IDirectDrawSurface3 *iface, HDC *dc)
1951 {
1952     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
1953     TRACE("iface %p, dc %p.\n", iface, dc);
1954
1955     return ddraw_surface7_GetDC(&This->IDirectDrawSurface7_iface, dc);
1956 }
1957
1958 static HRESULT WINAPI ddraw_surface2_GetDC(IDirectDrawSurface2 *iface, HDC *dc)
1959 {
1960     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
1961     TRACE("iface %p, dc %p.\n", iface, dc);
1962
1963     return ddraw_surface7_GetDC(&This->IDirectDrawSurface7_iface, dc);
1964 }
1965
1966 static HRESULT WINAPI ddraw_surface1_GetDC(IDirectDrawSurface *iface, HDC *dc)
1967 {
1968     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
1969     TRACE("iface %p, dc %p.\n", iface, dc);
1970
1971     return ddraw_surface7_GetDC(&This->IDirectDrawSurface7_iface, dc);
1972 }
1973
1974 /*****************************************************************************
1975  * IDirectDrawSurface7::ReleaseDC
1976  *
1977  * Releases the DC that was constructed with GetDC
1978  *
1979  * Params:
1980  *  hdc: HDC to release
1981  *
1982  * Returns:
1983  *  DD_OK on success
1984  *  For more details, see IWineD3DSurface::ReleaseDC
1985  *
1986  *****************************************************************************/
1987 static HRESULT WINAPI ddraw_surface7_ReleaseDC(IDirectDrawSurface7 *iface, HDC hdc)
1988 {
1989     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
1990     HRESULT hr;
1991
1992     TRACE("iface %p, dc %p.\n", iface, hdc);
1993
1994     wined3d_mutex_lock();
1995     hr = wined3d_surface_releasedc(This->wined3d_surface, hdc);
1996     if (SUCCEEDED(hr) && (This->surface_desc.ddsCaps.dwCaps & DDSCAPS_FRONTBUFFER))
1997         hr = ddraw_surface_update_frontbuffer(This, NULL, FALSE);
1998     wined3d_mutex_unlock();
1999
2000     return hr;
2001 }
2002
2003 static HRESULT WINAPI ddraw_surface4_ReleaseDC(IDirectDrawSurface4 *iface, HDC dc)
2004 {
2005     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
2006     TRACE("iface %p, dc %p.\n", iface, dc);
2007
2008     return ddraw_surface7_ReleaseDC(&This->IDirectDrawSurface7_iface, dc);
2009 }
2010
2011 static HRESULT WINAPI ddraw_surface3_ReleaseDC(IDirectDrawSurface3 *iface, HDC dc)
2012 {
2013     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
2014     TRACE("iface %p, dc %p.\n", iface, dc);
2015
2016     return ddraw_surface7_ReleaseDC(&This->IDirectDrawSurface7_iface, dc);
2017 }
2018
2019 static HRESULT WINAPI ddraw_surface2_ReleaseDC(IDirectDrawSurface2 *iface, HDC dc)
2020 {
2021     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
2022     TRACE("iface %p, dc %p.\n", iface, dc);
2023
2024     return ddraw_surface7_ReleaseDC(&This->IDirectDrawSurface7_iface, dc);
2025 }
2026
2027 static HRESULT WINAPI ddraw_surface1_ReleaseDC(IDirectDrawSurface *iface, HDC dc)
2028 {
2029     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
2030     TRACE("iface %p, dc %p.\n", iface, dc);
2031
2032     return ddraw_surface7_ReleaseDC(&This->IDirectDrawSurface7_iface, dc);
2033 }
2034
2035 /*****************************************************************************
2036  * IDirectDrawSurface7::GetCaps
2037  *
2038  * Returns the surface's caps
2039  *
2040  * Params:
2041  *  Caps: Address to write the caps to
2042  *
2043  * Returns:
2044  *  DD_OK on success
2045  *  DDERR_INVALIDPARAMS if Caps is NULL
2046  *
2047  *****************************************************************************/
2048 static HRESULT WINAPI ddraw_surface7_GetCaps(IDirectDrawSurface7 *iface, DDSCAPS2 *Caps)
2049 {
2050     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
2051
2052     TRACE("iface %p, caps %p.\n", iface, Caps);
2053
2054     if(!Caps)
2055         return DDERR_INVALIDPARAMS;
2056
2057     *Caps = This->surface_desc.ddsCaps;
2058     return DD_OK;
2059 }
2060
2061 static HRESULT WINAPI ddraw_surface4_GetCaps(IDirectDrawSurface4 *iface, DDSCAPS2 *caps)
2062 {
2063     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
2064     TRACE("iface %p, caps %p.\n", iface, caps);
2065
2066     return ddraw_surface7_GetCaps(&This->IDirectDrawSurface7_iface, caps);
2067 }
2068
2069 static HRESULT WINAPI ddraw_surface3_GetCaps(IDirectDrawSurface3 *iface, DDSCAPS *caps)
2070 {
2071     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
2072     DDSCAPS2 caps2;
2073     HRESULT hr;
2074
2075     TRACE("iface %p, caps %p.\n", iface, caps);
2076
2077     hr = ddraw_surface7_GetCaps(&This->IDirectDrawSurface7_iface, &caps2);
2078     if (FAILED(hr)) return hr;
2079
2080     caps->dwCaps = caps2.dwCaps;
2081     return hr;
2082 }
2083
2084 static HRESULT WINAPI ddraw_surface2_GetCaps(IDirectDrawSurface2 *iface, DDSCAPS *caps)
2085 {
2086     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
2087     DDSCAPS2 caps2;
2088     HRESULT hr;
2089
2090     TRACE("iface %p, caps %p.\n", iface, caps);
2091
2092     hr = ddraw_surface7_GetCaps(&This->IDirectDrawSurface7_iface, &caps2);
2093     if (FAILED(hr)) return hr;
2094
2095     caps->dwCaps = caps2.dwCaps;
2096     return hr;
2097 }
2098
2099 static HRESULT WINAPI ddraw_surface1_GetCaps(IDirectDrawSurface *iface, DDSCAPS *caps)
2100 {
2101     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
2102     DDSCAPS2 caps2;
2103     HRESULT hr;
2104
2105     TRACE("iface %p, caps %p.\n", iface, caps);
2106
2107     hr = ddraw_surface7_GetCaps(&This->IDirectDrawSurface7_iface, &caps2);
2108     if (FAILED(hr)) return hr;
2109
2110     caps->dwCaps = caps2.dwCaps;
2111     return hr;
2112 }
2113
2114 /*****************************************************************************
2115  * IDirectDrawSurface7::SetPriority
2116  *
2117  * Sets a texture priority for managed textures.
2118  *
2119  * Params:
2120  *  Priority: The new priority
2121  *
2122  * Returns:
2123  *  DD_OK on success
2124  *  For more details, see IWineD3DSurface::SetPriority
2125  *
2126  *****************************************************************************/
2127 static HRESULT WINAPI ddraw_surface7_SetPriority(IDirectDrawSurface7 *iface, DWORD Priority)
2128 {
2129     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
2130     HRESULT hr;
2131
2132     TRACE("iface %p, priority %u.\n", iface, Priority);
2133
2134     wined3d_mutex_lock();
2135     hr = wined3d_surface_set_priority(This->wined3d_surface, Priority);
2136     wined3d_mutex_unlock();
2137
2138     return hr;
2139 }
2140
2141 /*****************************************************************************
2142  * IDirectDrawSurface7::GetPriority
2143  *
2144  * Returns the surface's priority
2145  *
2146  * Params:
2147  *  Priority: Address of a variable to write the priority to
2148  *
2149  * Returns:
2150  *  D3D_OK on success
2151  *  DDERR_INVALIDPARAMS if Priority == NULL
2152  *  For more details, see IWineD3DSurface::GetPriority
2153  *
2154  *****************************************************************************/
2155 static HRESULT WINAPI ddraw_surface7_GetPriority(IDirectDrawSurface7 *iface, DWORD *Priority)
2156 {
2157     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
2158
2159     TRACE("iface %p, priority %p.\n", iface, Priority);
2160
2161     if(!Priority)
2162     {
2163         return DDERR_INVALIDPARAMS;
2164     }
2165
2166     wined3d_mutex_lock();
2167     *Priority = wined3d_surface_get_priority(This->wined3d_surface);
2168     wined3d_mutex_unlock();
2169
2170     return DD_OK;
2171 }
2172
2173 /*****************************************************************************
2174  * IDirectDrawSurface7::SetPrivateData
2175  *
2176  * Stores some data in the surface that is intended for the application's
2177  * use.
2178  *
2179  * Params:
2180  *  tag: GUID that identifies the data
2181  *  Data: Pointer to the private data
2182  *  Size: Size of the private data
2183  *  Flags: Some flags
2184  *
2185  * Returns:
2186  *  D3D_OK on success
2187  *  For more details, see IWineD3DSurface::SetPrivateData
2188  *
2189  *****************************************************************************/
2190 static HRESULT WINAPI ddraw_surface7_SetPrivateData(IDirectDrawSurface7 *iface,
2191         REFGUID tag, void *Data, DWORD Size, DWORD Flags)
2192 {
2193     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
2194     struct wined3d_resource *resource;
2195     HRESULT hr;
2196
2197     TRACE("iface %p, tag %s, data %p, data_size %u, flags %#x.\n",
2198             iface, debugstr_guid(tag), Data, Size, Flags);
2199
2200     wined3d_mutex_lock();
2201     resource = wined3d_surface_get_resource(This->wined3d_surface);
2202     hr = wined3d_resource_set_private_data(resource, tag, Data, Size, Flags);
2203     wined3d_mutex_unlock();
2204
2205     switch(hr)
2206     {
2207         case WINED3DERR_INVALIDCALL:        return DDERR_INVALIDPARAMS;
2208         default:                            return hr;
2209     }
2210 }
2211
2212 static HRESULT WINAPI ddraw_surface4_SetPrivateData(IDirectDrawSurface4 *iface,
2213         REFGUID tag, void *data, DWORD size, DWORD flags)
2214 {
2215     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
2216     TRACE("iface %p, tag %s, data %p, data_size %u, flags %#x.\n",
2217                 iface, debugstr_guid(tag), data, size, flags);
2218
2219     return ddraw_surface7_SetPrivateData(&This->IDirectDrawSurface7_iface, tag, data, size, flags);
2220 }
2221
2222 /*****************************************************************************
2223  * IDirectDrawSurface7::GetPrivateData
2224  *
2225  * Returns the private data set with IDirectDrawSurface7::SetPrivateData
2226  *
2227  * Params:
2228  *  tag: GUID of the data to return
2229  *  Data: Address where to write the data to
2230  *  Size: Size of the buffer at Data
2231  *
2232  * Returns:
2233  *  DD_OK on success
2234  *  DDERR_INVALIDPARAMS if Data is NULL
2235  *  For more details, see IWineD3DSurface::GetPrivateData
2236  *
2237  *****************************************************************************/
2238 static HRESULT WINAPI ddraw_surface7_GetPrivateData(IDirectDrawSurface7 *iface, REFGUID tag, void *Data, DWORD *Size)
2239 {
2240     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
2241     struct wined3d_resource *resource;
2242     HRESULT hr;
2243
2244     TRACE("iface %p, tag %s, data %p, data_size %p.\n",
2245             iface, debugstr_guid(tag), Data, Size);
2246
2247     if(!Data)
2248         return DDERR_INVALIDPARAMS;
2249
2250     wined3d_mutex_lock();
2251     resource = wined3d_surface_get_resource(This->wined3d_surface);
2252     hr = wined3d_resource_get_private_data(resource, tag, Data, Size);
2253     wined3d_mutex_unlock();
2254
2255     return hr;
2256 }
2257
2258 static HRESULT WINAPI ddraw_surface4_GetPrivateData(IDirectDrawSurface4 *iface, REFGUID tag, void *data, DWORD *size)
2259 {
2260     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
2261     TRACE("iface %p, tag %s, data %p, data_size %p.\n",
2262                 iface, debugstr_guid(tag), data, size);
2263
2264     return ddraw_surface7_GetPrivateData(&This->IDirectDrawSurface7_iface, tag, data, size);
2265 }
2266
2267 /*****************************************************************************
2268  * IDirectDrawSurface7::FreePrivateData
2269  *
2270  * Frees private data stored in the surface
2271  *
2272  * Params:
2273  *  tag: Tag of the data to free
2274  *
2275  * Returns:
2276  *  D3D_OK on success
2277  *  For more details, see IWineD3DSurface::FreePrivateData
2278  *
2279  *****************************************************************************/
2280 static HRESULT WINAPI ddraw_surface7_FreePrivateData(IDirectDrawSurface7 *iface, REFGUID tag)
2281 {
2282     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
2283     struct wined3d_resource *resource;
2284     HRESULT hr;
2285
2286     TRACE("iface %p, tag %s.\n", iface, debugstr_guid(tag));
2287
2288     wined3d_mutex_lock();
2289     resource = wined3d_surface_get_resource(This->wined3d_surface);
2290     hr = wined3d_resource_free_private_data(resource, tag);
2291     wined3d_mutex_unlock();
2292
2293     return hr;
2294 }
2295
2296 static HRESULT WINAPI ddraw_surface4_FreePrivateData(IDirectDrawSurface4 *iface, REFGUID tag)
2297 {
2298     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
2299     TRACE("iface %p, tag %s.\n", iface, debugstr_guid(tag));
2300
2301     return ddraw_surface7_FreePrivateData(&This->IDirectDrawSurface7_iface, tag);
2302 }
2303
2304 /*****************************************************************************
2305  * IDirectDrawSurface7::PageLock
2306  *
2307  * Prevents a sysmem surface from being paged out
2308  *
2309  * Params:
2310  *  Flags: Not used, must be 0(unchecked)
2311  *
2312  * Returns:
2313  *  DD_OK, because it's a stub
2314  *
2315  *****************************************************************************/
2316 static HRESULT WINAPI ddraw_surface7_PageLock(IDirectDrawSurface7 *iface, DWORD Flags)
2317 {
2318     TRACE("iface %p, flags %#x.\n", iface, Flags);
2319
2320     /* This is Windows memory management related - we don't need this */
2321     return DD_OK;
2322 }
2323
2324 static HRESULT WINAPI ddraw_surface4_PageLock(IDirectDrawSurface4 *iface, DWORD flags)
2325 {
2326     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
2327     TRACE("iface %p, flags %#x.\n", iface, flags);
2328
2329     return ddraw_surface7_PageLock(&This->IDirectDrawSurface7_iface, flags);
2330 }
2331
2332 static HRESULT WINAPI ddraw_surface3_PageLock(IDirectDrawSurface3 *iface, DWORD flags)
2333 {
2334     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
2335     TRACE("iface %p, flags %#x.\n", iface, flags);
2336
2337     return ddraw_surface7_PageLock(&This->IDirectDrawSurface7_iface, flags);
2338 }
2339
2340 static HRESULT WINAPI ddraw_surface2_PageLock(IDirectDrawSurface2 *iface, DWORD flags)
2341 {
2342     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
2343     TRACE("iface %p, flags %#x.\n", iface, flags);
2344
2345     return ddraw_surface7_PageLock(&This->IDirectDrawSurface7_iface, flags);
2346 }
2347
2348 /*****************************************************************************
2349  * IDirectDrawSurface7::PageUnlock
2350  *
2351  * Allows a sysmem surface to be paged out
2352  *
2353  * Params:
2354  *  Flags: Not used, must be 0(unchecked)
2355  *
2356  * Returns:
2357  *  DD_OK, because it's a stub
2358  *
2359  *****************************************************************************/
2360 static HRESULT WINAPI ddraw_surface7_PageUnlock(IDirectDrawSurface7 *iface, DWORD Flags)
2361 {
2362     TRACE("iface %p, flags %#x.\n", iface, Flags);
2363
2364     return DD_OK;
2365 }
2366
2367 static HRESULT WINAPI ddraw_surface4_PageUnlock(IDirectDrawSurface4 *iface, DWORD flags)
2368 {
2369     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
2370     TRACE("iface %p, flags %#x.\n", iface, flags);
2371
2372     return ddraw_surface7_PageUnlock(&This->IDirectDrawSurface7_iface, flags);
2373 }
2374
2375 static HRESULT WINAPI ddraw_surface3_PageUnlock(IDirectDrawSurface3 *iface, DWORD flags)
2376 {
2377     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
2378     TRACE("iface %p, flags %#x.\n", iface, flags);
2379
2380     return ddraw_surface7_PageUnlock(&This->IDirectDrawSurface7_iface, flags);
2381 }
2382
2383 static HRESULT WINAPI ddraw_surface2_PageUnlock(IDirectDrawSurface2 *iface, DWORD flags)
2384 {
2385     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
2386     TRACE("iface %p, flags %#x.\n", iface, flags);
2387
2388     return ddraw_surface7_PageUnlock(&This->IDirectDrawSurface7_iface, flags);
2389 }
2390
2391 /*****************************************************************************
2392  * IDirectDrawSurface7::BltBatch
2393  *
2394  * An unimplemented function
2395  *
2396  * Params:
2397  *  ?
2398  *
2399  * Returns:
2400  *  DDERR_UNSUPPORTED
2401  *
2402  *****************************************************************************/
2403 static HRESULT WINAPI ddraw_surface7_BltBatch(IDirectDrawSurface7 *iface, DDBLTBATCH *Batch, DWORD Count, DWORD Flags)
2404 {
2405     TRACE("iface %p, batch %p, count %u, flags %#x.\n", iface, Batch, Count, Flags);
2406
2407     /* MSDN: "not currently implemented" */
2408     return DDERR_UNSUPPORTED;
2409 }
2410
2411 static HRESULT WINAPI ddraw_surface4_BltBatch(IDirectDrawSurface4 *iface, DDBLTBATCH *batch, DWORD count, DWORD flags)
2412 {
2413     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
2414     TRACE("iface %p, batch %p, count %u, flags %#x.\n", iface, batch, count, flags);
2415
2416     return ddraw_surface7_BltBatch(&This->IDirectDrawSurface7_iface, batch, count, flags);
2417 }
2418
2419 static HRESULT WINAPI ddraw_surface3_BltBatch(IDirectDrawSurface3 *iface, DDBLTBATCH *batch, DWORD count, DWORD flags)
2420 {
2421     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
2422     TRACE("iface %p, batch %p, count %u, flags %#x.\n", iface, batch, count, flags);
2423
2424     return ddraw_surface7_BltBatch(&This->IDirectDrawSurface7_iface, batch, count, flags);
2425 }
2426
2427 static HRESULT WINAPI ddraw_surface2_BltBatch(IDirectDrawSurface2 *iface, DDBLTBATCH *batch, DWORD count, DWORD flags)
2428 {
2429     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
2430     TRACE("iface %p, batch %p, count %u, flags %#x.\n", iface, batch, count, flags);
2431
2432     return ddraw_surface7_BltBatch(&This->IDirectDrawSurface7_iface, batch, count, flags);
2433 }
2434
2435 static HRESULT WINAPI ddraw_surface1_BltBatch(IDirectDrawSurface *iface, DDBLTBATCH *batch, DWORD count, DWORD flags)
2436 {
2437     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
2438     TRACE("iface %p, batch %p, count %u, flags %#x.\n", iface, batch, count, flags);
2439
2440     return ddraw_surface7_BltBatch(&This->IDirectDrawSurface7_iface, batch, count, flags);
2441 }
2442
2443 /*****************************************************************************
2444  * IDirectDrawSurface7::EnumAttachedSurfaces
2445  *
2446  * Enumerates all surfaces attached to this surface
2447  *
2448  * Params:
2449  *  context: Pointer to pass unmodified to the callback
2450  *  cb: Callback function to call for each surface
2451  *
2452  * Returns:
2453  *  DD_OK on success
2454  *  DDERR_INVALIDPARAMS if cb is NULL
2455  *
2456  *****************************************************************************/
2457 static HRESULT WINAPI ddraw_surface7_EnumAttachedSurfaces(IDirectDrawSurface7 *iface,
2458         void *context, LPDDENUMSURFACESCALLBACK7 cb)
2459 {
2460     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
2461     IDirectDrawSurfaceImpl *surf;
2462     DDSURFACEDESC2 desc;
2463     int i;
2464
2465     /* Attached surfaces aren't handled in WineD3D */
2466     TRACE("iface %p, context %p, callback %p.\n", iface, context, cb);
2467
2468     if(!cb)
2469         return DDERR_INVALIDPARAMS;
2470
2471     wined3d_mutex_lock();
2472
2473     for(i = 0; i < MAX_COMPLEX_ATTACHED; i++)
2474     {
2475         surf = This->complex_array[i];
2476         if(!surf) break;
2477
2478         ddraw_surface7_AddRef(&surf->IDirectDrawSurface7_iface);
2479         desc = surf->surface_desc;
2480         /* check: != DDENUMRET_OK or == DDENUMRET_CANCEL? */
2481         if (cb(&surf->IDirectDrawSurface7_iface, &desc, context) == DDENUMRET_CANCEL)
2482         {
2483             wined3d_mutex_unlock();
2484             return DD_OK;
2485         }
2486     }
2487
2488     for (surf = This->next_attached; surf != NULL; surf = surf->next_attached)
2489     {
2490         ddraw_surface7_AddRef(&surf->IDirectDrawSurface7_iface);
2491         desc = surf->surface_desc;
2492         /* check: != DDENUMRET_OK or == DDENUMRET_CANCEL? */
2493         if (cb(&surf->IDirectDrawSurface7_iface, &desc, context) == DDENUMRET_CANCEL)
2494         {
2495             wined3d_mutex_unlock();
2496             return DD_OK;
2497         }
2498     }
2499
2500     TRACE(" end of enumeration.\n");
2501
2502     wined3d_mutex_unlock();
2503
2504     return DD_OK;
2505 }
2506
2507 struct callback_info2
2508 {
2509     LPDDENUMSURFACESCALLBACK2 callback;
2510     void *context;
2511 };
2512
2513 struct callback_info
2514 {
2515     LPDDENUMSURFACESCALLBACK callback;
2516     void *context;
2517 };
2518
2519 static HRESULT CALLBACK EnumCallback2(IDirectDrawSurface7 *surface, DDSURFACEDESC2 *surface_desc, void *context)
2520 {
2521     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(surface);
2522     const struct callback_info2 *info = context;
2523
2524     ddraw_surface4_AddRef(&This->IDirectDrawSurface4_iface);
2525     ddraw_surface7_Release(surface);
2526
2527     return info->callback(&This->IDirectDrawSurface4_iface, surface_desc, info->context);
2528 }
2529
2530 static HRESULT CALLBACK EnumCallback(IDirectDrawSurface7 *surface, DDSURFACEDESC2 *surface_desc, void *context)
2531 {
2532     IDirectDrawSurfaceImpl *surface_impl = impl_from_IDirectDrawSurface7(surface);
2533     const struct callback_info *info = context;
2534
2535     ddraw_surface1_AddRef(&surface_impl->IDirectDrawSurface_iface);
2536     ddraw_surface7_Release(surface);
2537
2538     /* FIXME: Check surface_test.dwSize */
2539     return info->callback(&surface_impl->IDirectDrawSurface_iface,
2540             (DDSURFACEDESC *)surface_desc, info->context);
2541 }
2542
2543 static HRESULT WINAPI ddraw_surface4_EnumAttachedSurfaces(IDirectDrawSurface4 *iface,
2544         void *context, LPDDENUMSURFACESCALLBACK2 callback)
2545 {
2546     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
2547     struct callback_info2 info;
2548
2549     TRACE("iface %p, context %p, callback %p.\n", iface, context, callback);
2550
2551     info.callback = callback;
2552     info.context  = context;
2553
2554     return ddraw_surface7_EnumAttachedSurfaces(&This->IDirectDrawSurface7_iface,
2555             &info, EnumCallback2);
2556 }
2557
2558 static HRESULT WINAPI ddraw_surface3_EnumAttachedSurfaces(IDirectDrawSurface3 *iface,
2559         void *context, LPDDENUMSURFACESCALLBACK callback)
2560 {
2561     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
2562     struct callback_info info;
2563
2564     TRACE("iface %p, context %p, callback %p.\n", iface, context, callback);
2565
2566     info.callback = callback;
2567     info.context  = context;
2568
2569     return ddraw_surface7_EnumAttachedSurfaces(&This->IDirectDrawSurface7_iface,
2570             &info, EnumCallback);
2571 }
2572
2573 static HRESULT WINAPI ddraw_surface2_EnumAttachedSurfaces(IDirectDrawSurface2 *iface,
2574         void *context, LPDDENUMSURFACESCALLBACK callback)
2575 {
2576     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
2577     struct callback_info info;
2578
2579     TRACE("iface %p, context %p, callback %p.\n", iface, context, callback);
2580
2581     info.callback = callback;
2582     info.context  = context;
2583
2584     return ddraw_surface7_EnumAttachedSurfaces(&This->IDirectDrawSurface7_iface,
2585             &info, EnumCallback);
2586 }
2587
2588 static HRESULT WINAPI ddraw_surface1_EnumAttachedSurfaces(IDirectDrawSurface *iface,
2589         void *context, LPDDENUMSURFACESCALLBACK callback)
2590 {
2591     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
2592     struct callback_info info;
2593
2594     TRACE("iface %p, context %p, callback %p.\n", iface, context, callback);
2595
2596     info.callback = callback;
2597     info.context  = context;
2598
2599     return ddraw_surface7_EnumAttachedSurfaces(&This->IDirectDrawSurface7_iface,
2600             &info, EnumCallback);
2601 }
2602
2603 /*****************************************************************************
2604  * IDirectDrawSurface7::EnumOverlayZOrders
2605  *
2606  * "Enumerates the overlay surfaces on the specified destination"
2607  *
2608  * Params:
2609  *  Flags: DDENUMOVERLAYZ_BACKTOFRONT  or DDENUMOVERLAYZ_FRONTTOBACK
2610  *  context: context to pass back to the callback
2611  *  cb: callback function to call for each enumerated surface
2612  *
2613  * Returns:
2614  *  DD_OK, because it's a stub
2615  *
2616  *****************************************************************************/
2617 static HRESULT WINAPI ddraw_surface7_EnumOverlayZOrders(IDirectDrawSurface7 *iface,
2618         DWORD Flags, void *context, LPDDENUMSURFACESCALLBACK7 cb)
2619 {
2620     FIXME("iface %p, flags %#x, context %p, callback %p stub!\n", iface, Flags, context, cb);
2621
2622     return DD_OK;
2623 }
2624
2625 static HRESULT WINAPI ddraw_surface4_EnumOverlayZOrders(IDirectDrawSurface4 *iface,
2626         DWORD flags, void *context, LPDDENUMSURFACESCALLBACK2 callback)
2627 {
2628     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
2629     struct callback_info2 info;
2630
2631     TRACE("iface %p, flags %#x, context %p, callback %p.\n", iface, flags, context, callback);
2632
2633     info.callback = callback;
2634     info.context  = context;
2635
2636     return ddraw_surface7_EnumOverlayZOrders(&This->IDirectDrawSurface7_iface,
2637             flags, &info, EnumCallback2);
2638 }
2639
2640 static HRESULT WINAPI ddraw_surface3_EnumOverlayZOrders(IDirectDrawSurface3 *iface,
2641         DWORD flags, void *context, LPDDENUMSURFACESCALLBACK callback)
2642 {
2643     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
2644     struct callback_info info;
2645
2646     TRACE("iface %p, flags %#x, context %p, callback %p.\n", iface, flags, context, callback);
2647
2648     info.callback = callback;
2649     info.context  = context;
2650
2651     return ddraw_surface7_EnumOverlayZOrders(&This->IDirectDrawSurface7_iface,
2652             flags, &info, EnumCallback);
2653 }
2654
2655 static HRESULT WINAPI ddraw_surface2_EnumOverlayZOrders(IDirectDrawSurface2 *iface,
2656         DWORD flags, void *context, LPDDENUMSURFACESCALLBACK callback)
2657 {
2658     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
2659     struct callback_info info;
2660
2661     TRACE("iface %p, flags %#x, context %p, callback %p.\n", iface, flags, context, callback);
2662
2663     info.callback = callback;
2664     info.context  = context;
2665
2666     return ddraw_surface7_EnumOverlayZOrders(&This->IDirectDrawSurface7_iface,
2667             flags, &info, EnumCallback);
2668 }
2669
2670 static HRESULT WINAPI ddraw_surface1_EnumOverlayZOrders(IDirectDrawSurface *iface,
2671         DWORD flags, void *context, LPDDENUMSURFACESCALLBACK callback)
2672 {
2673     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
2674     struct callback_info info;
2675
2676     TRACE("iface %p, flags %#x, context %p, callback %p.\n", iface, flags, context, callback);
2677
2678     info.callback = callback;
2679     info.context  = context;
2680
2681     return ddraw_surface7_EnumOverlayZOrders(&This->IDirectDrawSurface7_iface,
2682             flags, &info, EnumCallback);
2683 }
2684
2685 /*****************************************************************************
2686  * IDirectDrawSurface7::GetBltStatus
2687  *
2688  * Returns the blitting status
2689  *
2690  * Params:
2691  *  Flags: DDGBS_CANBLT or DDGBS_ISBLTDONE
2692  *
2693  * Returns:
2694  *  See IWineD3DSurface::Blt
2695  *
2696  *****************************************************************************/
2697 static HRESULT WINAPI ddraw_surface7_GetBltStatus(IDirectDrawSurface7 *iface, DWORD Flags)
2698 {
2699     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
2700     HRESULT hr;
2701
2702     TRACE("iface %p, flags %#x.\n", iface, Flags);
2703
2704     wined3d_mutex_lock();
2705     hr = wined3d_surface_get_blt_status(This->wined3d_surface, Flags);
2706     wined3d_mutex_unlock();
2707     switch(hr)
2708     {
2709         case WINED3DERR_INVALIDCALL:        return DDERR_INVALIDPARAMS;
2710         default:                            return hr;
2711     }
2712 }
2713
2714 static HRESULT WINAPI ddraw_surface4_GetBltStatus(IDirectDrawSurface4 *iface, DWORD flags)
2715 {
2716     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
2717     TRACE("iface %p, flags %#x.\n", iface, flags);
2718
2719     return ddraw_surface7_GetBltStatus(&This->IDirectDrawSurface7_iface, flags);
2720 }
2721
2722 static HRESULT WINAPI ddraw_surface3_GetBltStatus(IDirectDrawSurface3 *iface, DWORD flags)
2723 {
2724     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
2725     TRACE("iface %p, flags %#x.\n", iface, flags);
2726
2727     return ddraw_surface7_GetBltStatus(&This->IDirectDrawSurface7_iface, flags);
2728 }
2729
2730 static HRESULT WINAPI ddraw_surface2_GetBltStatus(IDirectDrawSurface2 *iface, DWORD flags)
2731 {
2732     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
2733     TRACE("iface %p, flags %#x.\n", iface, flags);
2734
2735     return ddraw_surface7_GetBltStatus(&This->IDirectDrawSurface7_iface, flags);
2736 }
2737
2738 static HRESULT WINAPI ddraw_surface1_GetBltStatus(IDirectDrawSurface *iface, DWORD flags)
2739 {
2740     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
2741     TRACE("iface %p, flags %#x.\n", iface, flags);
2742
2743     return ddraw_surface7_GetBltStatus(&This->IDirectDrawSurface7_iface, flags);
2744 }
2745
2746 /*****************************************************************************
2747  * IDirectDrawSurface7::GetColorKey
2748  *
2749  * Returns the color key assigned to the surface
2750  *
2751  * Params:
2752  *  Flags: Some flags
2753  *  CKey: Address to store the key to
2754  *
2755  * Returns:
2756  *  DD_OK on success
2757  *  DDERR_INVALIDPARAMS if CKey is NULL
2758  *
2759  *****************************************************************************/
2760 static HRESULT WINAPI ddraw_surface7_GetColorKey(IDirectDrawSurface7 *iface, DWORD Flags, DDCOLORKEY *CKey)
2761 {
2762     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
2763
2764     TRACE("iface %p, flags %#x, color_key %p.\n", iface, Flags, CKey);
2765
2766     if(!CKey)
2767         return DDERR_INVALIDPARAMS;
2768
2769     wined3d_mutex_lock();
2770
2771     switch (Flags)
2772     {
2773     case DDCKEY_DESTBLT:
2774         if (!(This->surface_desc.dwFlags & DDSD_CKDESTBLT))
2775         {
2776             wined3d_mutex_unlock();
2777             return DDERR_NOCOLORKEY;
2778         }
2779         *CKey = This->surface_desc.ddckCKDestBlt;
2780         break;
2781
2782     case DDCKEY_DESTOVERLAY:
2783         if (!(This->surface_desc.dwFlags & DDSD_CKDESTOVERLAY))
2784         {
2785             wined3d_mutex_unlock();
2786             return DDERR_NOCOLORKEY;
2787         }
2788         *CKey = This->surface_desc.u3.ddckCKDestOverlay;
2789         break;
2790
2791     case DDCKEY_SRCBLT:
2792         if (!(This->surface_desc.dwFlags & DDSD_CKSRCBLT))
2793         {
2794             wined3d_mutex_unlock();
2795             return DDERR_NOCOLORKEY;
2796         }
2797         *CKey = This->surface_desc.ddckCKSrcBlt;
2798         break;
2799
2800     case DDCKEY_SRCOVERLAY:
2801         if (!(This->surface_desc.dwFlags & DDSD_CKSRCOVERLAY))
2802         {
2803             wined3d_mutex_unlock();
2804             return DDERR_NOCOLORKEY;
2805         }
2806         *CKey = This->surface_desc.ddckCKSrcOverlay;
2807         break;
2808
2809     default:
2810         wined3d_mutex_unlock();
2811         return DDERR_INVALIDPARAMS;
2812     }
2813
2814     wined3d_mutex_unlock();
2815
2816     return DD_OK;
2817 }
2818
2819 static HRESULT WINAPI ddraw_surface4_GetColorKey(IDirectDrawSurface4 *iface, DWORD flags, DDCOLORKEY *color_key)
2820 {
2821     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
2822     TRACE("iface %p, flags %#x, color_key %p.\n", iface, flags, color_key);
2823
2824     return ddraw_surface7_GetColorKey(&This->IDirectDrawSurface7_iface, flags, color_key);
2825 }
2826
2827 static HRESULT WINAPI ddraw_surface3_GetColorKey(IDirectDrawSurface3 *iface, DWORD flags, DDCOLORKEY *color_key)
2828 {
2829     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
2830     TRACE("iface %p, flags %#x, color_key %p.\n", iface, flags, color_key);
2831
2832     return ddraw_surface7_GetColorKey(&This->IDirectDrawSurface7_iface, flags, color_key);
2833 }
2834
2835 static HRESULT WINAPI ddraw_surface2_GetColorKey(IDirectDrawSurface2 *iface, DWORD flags, DDCOLORKEY *color_key)
2836 {
2837     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
2838     TRACE("iface %p, flags %#x, color_key %p.\n", iface, flags, color_key);
2839
2840     return ddraw_surface7_GetColorKey(&This->IDirectDrawSurface7_iface, flags, color_key);
2841 }
2842
2843 static HRESULT WINAPI ddraw_surface1_GetColorKey(IDirectDrawSurface *iface, DWORD flags, DDCOLORKEY *color_key)
2844 {
2845     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
2846     TRACE("iface %p, flags %#x, color_key %p.\n", iface, flags, color_key);
2847
2848     return ddraw_surface7_GetColorKey(&This->IDirectDrawSurface7_iface, flags, color_key);
2849 }
2850
2851 /*****************************************************************************
2852  * IDirectDrawSurface7::GetFlipStatus
2853  *
2854  * Returns the flipping status of the surface
2855  *
2856  * Params:
2857  *  Flags: DDGFS_CANFLIP of DDGFS_ISFLIPDONE
2858  *
2859  * Returns:
2860  *  See IWineD3DSurface::GetFlipStatus
2861  *
2862  *****************************************************************************/
2863 static HRESULT WINAPI ddraw_surface7_GetFlipStatus(IDirectDrawSurface7 *iface, DWORD Flags)
2864 {
2865     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
2866     HRESULT hr;
2867
2868     TRACE("iface %p, flags %#x.\n", iface, Flags);
2869
2870     wined3d_mutex_lock();
2871     hr = wined3d_surface_get_flip_status(This->wined3d_surface, Flags);
2872     wined3d_mutex_unlock();
2873
2874     switch(hr)
2875     {
2876         case WINED3DERR_INVALIDCALL:        return DDERR_INVALIDPARAMS;
2877         default:                            return hr;
2878     }
2879 }
2880
2881 static HRESULT WINAPI ddraw_surface4_GetFlipStatus(IDirectDrawSurface4 *iface, DWORD flags)
2882 {
2883     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
2884     TRACE("iface %p, flags %#x.\n", iface, flags);
2885
2886     return ddraw_surface7_GetFlipStatus(&This->IDirectDrawSurface7_iface, flags);
2887 }
2888
2889 static HRESULT WINAPI ddraw_surface3_GetFlipStatus(IDirectDrawSurface3 *iface, DWORD flags)
2890 {
2891     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
2892     TRACE("iface %p, flags %#x.\n", iface, flags);
2893
2894     return ddraw_surface7_GetFlipStatus(&This->IDirectDrawSurface7_iface, flags);
2895 }
2896
2897 static HRESULT WINAPI ddraw_surface2_GetFlipStatus(IDirectDrawSurface2 *iface, DWORD flags)
2898 {
2899     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
2900     TRACE("iface %p, flags %#x.\n", iface, flags);
2901
2902     return ddraw_surface7_GetFlipStatus(&This->IDirectDrawSurface7_iface, flags);
2903 }
2904
2905 static HRESULT WINAPI ddraw_surface1_GetFlipStatus(IDirectDrawSurface *iface, DWORD flags)
2906 {
2907     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
2908     TRACE("iface %p, flags %#x.\n", iface, flags);
2909
2910     return ddraw_surface7_GetFlipStatus(&This->IDirectDrawSurface7_iface, flags);
2911 }
2912
2913 /*****************************************************************************
2914  * IDirectDrawSurface7::GetOverlayPosition
2915  *
2916  * Returns the display coordinates of a visible and active overlay surface
2917  *
2918  * Params:
2919  *  X
2920  *  Y
2921  *
2922  * Returns:
2923  *  DDERR_NOTAOVERLAYSURFACE, because it's a stub
2924  *****************************************************************************/
2925 static HRESULT WINAPI ddraw_surface7_GetOverlayPosition(IDirectDrawSurface7 *iface, LONG *X, LONG *Y)
2926 {
2927     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
2928     HRESULT hr;
2929
2930     TRACE("iface %p, x %p, y %p.\n", iface, X, Y);
2931
2932     wined3d_mutex_lock();
2933     hr = wined3d_surface_get_overlay_position(This->wined3d_surface, X, Y);
2934     wined3d_mutex_unlock();
2935
2936     return hr;
2937 }
2938
2939 static HRESULT WINAPI ddraw_surface4_GetOverlayPosition(IDirectDrawSurface4 *iface, LONG *x, LONG *y)
2940 {
2941     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
2942     TRACE("iface %p, x %p, y %p.\n", iface, x, y);
2943
2944     return ddraw_surface7_GetOverlayPosition(&This->IDirectDrawSurface7_iface, x, y);
2945 }
2946
2947 static HRESULT WINAPI ddraw_surface3_GetOverlayPosition(IDirectDrawSurface3 *iface, LONG *x, LONG *y)
2948 {
2949     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
2950     TRACE("iface %p, x %p, y %p.\n", iface, x, y);
2951
2952     return ddraw_surface7_GetOverlayPosition(&This->IDirectDrawSurface7_iface, x, y);
2953 }
2954
2955 static HRESULT WINAPI ddraw_surface2_GetOverlayPosition(IDirectDrawSurface2 *iface, LONG *x, LONG *y)
2956 {
2957     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
2958     TRACE("iface %p, x %p, y %p.\n", iface, x, y);
2959
2960     return ddraw_surface7_GetOverlayPosition(&This->IDirectDrawSurface7_iface, x, y);
2961 }
2962
2963 static HRESULT WINAPI ddraw_surface1_GetOverlayPosition(IDirectDrawSurface *iface, LONG *x, LONG *y)
2964 {
2965     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
2966     TRACE("iface %p, x %p, y %p.\n", iface, x, y);
2967
2968     return ddraw_surface7_GetOverlayPosition(&This->IDirectDrawSurface7_iface, x, y);
2969 }
2970
2971 /*****************************************************************************
2972  * IDirectDrawSurface7::GetPixelFormat
2973  *
2974  * Returns the pixel format of the Surface
2975  *
2976  * Params:
2977  *  PixelFormat: Pointer to a DDPIXELFORMAT structure to which the pixel
2978  *               format should be written
2979  *
2980  * Returns:
2981  *  DD_OK on success
2982  *  DDERR_INVALIDPARAMS if PixelFormat is NULL
2983  *
2984  *****************************************************************************/
2985 static HRESULT WINAPI ddraw_surface7_GetPixelFormat(IDirectDrawSurface7 *iface, DDPIXELFORMAT *PixelFormat)
2986 {
2987     /* What is DDERR_INVALIDSURFACETYPE for here? */
2988     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
2989
2990     TRACE("iface %p, pixel_format %p.\n", iface, PixelFormat);
2991
2992     if(!PixelFormat)
2993         return DDERR_INVALIDPARAMS;
2994
2995     wined3d_mutex_lock();
2996     DD_STRUCT_COPY_BYSIZE(PixelFormat,&This->surface_desc.u4.ddpfPixelFormat);
2997     wined3d_mutex_unlock();
2998
2999     return DD_OK;
3000 }
3001
3002 static HRESULT WINAPI ddraw_surface4_GetPixelFormat(IDirectDrawSurface4 *iface, DDPIXELFORMAT *pixel_format)
3003 {
3004     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
3005     TRACE("iface %p, pixel_format %p.\n", iface, pixel_format);
3006
3007     return ddraw_surface7_GetPixelFormat(&This->IDirectDrawSurface7_iface, pixel_format);
3008 }
3009
3010 static HRESULT WINAPI ddraw_surface3_GetPixelFormat(IDirectDrawSurface3 *iface, DDPIXELFORMAT *pixel_format)
3011 {
3012     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
3013     TRACE("iface %p, pixel_format %p.\n", iface, pixel_format);
3014
3015     return ddraw_surface7_GetPixelFormat(&This->IDirectDrawSurface7_iface, pixel_format);
3016 }
3017
3018 static HRESULT WINAPI ddraw_surface2_GetPixelFormat(IDirectDrawSurface2 *iface, DDPIXELFORMAT *pixel_format)
3019 {
3020     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
3021     TRACE("iface %p, pixel_format %p.\n", iface, pixel_format);
3022
3023     return ddraw_surface7_GetPixelFormat(&This->IDirectDrawSurface7_iface, pixel_format);
3024 }
3025
3026 static HRESULT WINAPI ddraw_surface1_GetPixelFormat(IDirectDrawSurface *iface, DDPIXELFORMAT *pixel_format)
3027 {
3028     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
3029     TRACE("iface %p, pixel_format %p.\n", iface, pixel_format);
3030
3031     return ddraw_surface7_GetPixelFormat(&This->IDirectDrawSurface7_iface, pixel_format);
3032 }
3033
3034 /*****************************************************************************
3035  * IDirectDrawSurface7::GetSurfaceDesc
3036  *
3037  * Returns the description of this surface
3038  *
3039  * Params:
3040  *  DDSD: Address of a DDSURFACEDESC2 structure that is to be filled with the
3041  *        surface desc
3042  *
3043  * Returns:
3044  *  DD_OK on success
3045  *  DDERR_INVALIDPARAMS if DDSD is NULL
3046  *
3047  *****************************************************************************/
3048 static HRESULT WINAPI ddraw_surface7_GetSurfaceDesc(IDirectDrawSurface7 *iface, DDSURFACEDESC2 *DDSD)
3049 {
3050     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
3051
3052     TRACE("iface %p, surface_desc %p.\n", iface, DDSD);
3053
3054     if(!DDSD)
3055         return DDERR_INVALIDPARAMS;
3056
3057     if (DDSD->dwSize != sizeof(DDSURFACEDESC2))
3058     {
3059         WARN("Incorrect struct size %d, returning DDERR_INVALIDPARAMS\n",DDSD->dwSize);
3060         return DDERR_INVALIDPARAMS;
3061     }
3062
3063     wined3d_mutex_lock();
3064     DD_STRUCT_COPY_BYSIZE(DDSD,&This->surface_desc);
3065     TRACE("Returning surface desc:\n");
3066     if (TRACE_ON(ddraw)) DDRAW_dump_surface_desc(DDSD);
3067     wined3d_mutex_unlock();
3068
3069     return DD_OK;
3070 }
3071
3072 static HRESULT WINAPI ddraw_surface4_GetSurfaceDesc(IDirectDrawSurface4 *iface, DDSURFACEDESC2 *DDSD)
3073 {
3074     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
3075     TRACE("iface %p, surface_desc %p.\n", iface, DDSD);
3076
3077     return ddraw_surface7_GetSurfaceDesc(&This->IDirectDrawSurface7_iface, DDSD);
3078 }
3079
3080 static HRESULT WINAPI ddraw_surface3_GetSurfaceDesc(IDirectDrawSurface3 *iface, DDSURFACEDESC *surface_desc)
3081 {
3082     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
3083
3084     TRACE("iface %p, surface_desc %p.\n", iface, surface_desc);
3085
3086     if (!surface_desc) return DDERR_INVALIDPARAMS;
3087
3088     if (surface_desc->dwSize != sizeof(DDSURFACEDESC))
3089     {
3090         WARN("Incorrect structure size %u, returning DDERR_INVALIDPARAMS.\n", surface_desc->dwSize);
3091         return DDERR_INVALIDPARAMS;
3092     }
3093
3094     wined3d_mutex_lock();
3095     DDSD2_to_DDSD(&This->surface_desc, surface_desc);
3096     TRACE("Returning surface desc:\n");
3097     if (TRACE_ON(ddraw))
3098     {
3099         /* DDRAW_dump_surface_desc handles the smaller size */
3100         DDRAW_dump_surface_desc((DDSURFACEDESC2 *)surface_desc);
3101     }
3102     wined3d_mutex_unlock();
3103
3104     return DD_OK;
3105 }
3106
3107 static HRESULT WINAPI ddraw_surface2_GetSurfaceDesc(IDirectDrawSurface2 *iface, DDSURFACEDESC *DDSD)
3108 {
3109     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
3110     TRACE("iface %p, surface_desc %p.\n", iface, DDSD);
3111
3112     return ddraw_surface3_GetSurfaceDesc(&This->IDirectDrawSurface3_iface, DDSD);
3113 }
3114
3115 static HRESULT WINAPI ddraw_surface1_GetSurfaceDesc(IDirectDrawSurface *iface, DDSURFACEDESC *DDSD)
3116 {
3117     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
3118     TRACE("iface %p, surface_desc %p.\n", iface, DDSD);
3119
3120     return ddraw_surface3_GetSurfaceDesc(&This->IDirectDrawSurface3_iface, DDSD);
3121 }
3122
3123 /*****************************************************************************
3124  * IDirectDrawSurface7::Initialize
3125  *
3126  * Initializes the surface. This is a no-op in Wine
3127  *
3128  * Params:
3129  *  DD: Pointer to an DirectDraw interface
3130  *  DDSD: Surface description for initialization
3131  *
3132  * Returns:
3133  *  DDERR_ALREADYINITIALIZED
3134  *
3135  *****************************************************************************/
3136 static HRESULT WINAPI ddraw_surface7_Initialize(IDirectDrawSurface7 *iface,
3137         IDirectDraw *ddraw, DDSURFACEDESC2 *surface_desc)
3138 {
3139     TRACE("iface %p, ddraw %p, surface_desc %p.\n", iface, ddraw, surface_desc);
3140
3141     return DDERR_ALREADYINITIALIZED;
3142 }
3143
3144 static HRESULT WINAPI ddraw_surface4_Initialize(IDirectDrawSurface4 *iface,
3145         IDirectDraw *ddraw, DDSURFACEDESC2 *surface_desc)
3146 {
3147     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
3148     TRACE("iface %p, ddraw %p, surface_desc %p.\n", iface, ddraw, surface_desc);
3149
3150     return ddraw_surface7_Initialize(&This->IDirectDrawSurface7_iface,
3151             ddraw, surface_desc);
3152 }
3153
3154 static HRESULT WINAPI ddraw_surface3_Initialize(IDirectDrawSurface3 *iface,
3155         IDirectDraw *ddraw, DDSURFACEDESC *surface_desc)
3156 {
3157     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
3158     DDSURFACEDESC2 surface_desc2;
3159     TRACE("iface %p, ddraw %p, surface_desc %p.\n", iface, ddraw, surface_desc);
3160
3161     if (surface_desc) DDSD_to_DDSD2(surface_desc, &surface_desc2);
3162     return ddraw_surface7_Initialize(&This->IDirectDrawSurface7_iface,
3163             ddraw, surface_desc ? &surface_desc2 : NULL);
3164 }
3165
3166 static HRESULT WINAPI ddraw_surface2_Initialize(IDirectDrawSurface2 *iface,
3167         IDirectDraw *ddraw, DDSURFACEDESC *surface_desc)
3168 {
3169     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
3170     DDSURFACEDESC2 surface_desc2;
3171     TRACE("iface %p, ddraw %p, surface_desc %p.\n", iface, ddraw, surface_desc);
3172
3173     if (surface_desc) DDSD_to_DDSD2(surface_desc, &surface_desc2);
3174     return ddraw_surface7_Initialize(&This->IDirectDrawSurface7_iface,
3175             ddraw, surface_desc ? &surface_desc2 : NULL);
3176 }
3177
3178 static HRESULT WINAPI ddraw_surface1_Initialize(IDirectDrawSurface *iface,
3179         IDirectDraw *ddraw, DDSURFACEDESC *surface_desc)
3180 {
3181     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
3182     DDSURFACEDESC2 surface_desc2;
3183     TRACE("iface %p, ddraw %p, surface_desc %p.\n", iface, ddraw, surface_desc);
3184
3185     if (surface_desc) DDSD_to_DDSD2(surface_desc, &surface_desc2);
3186     return ddraw_surface7_Initialize(&This->IDirectDrawSurface7_iface,
3187             ddraw, surface_desc ? &surface_desc2 : NULL);
3188 }
3189
3190 /*****************************************************************************
3191  * IDirect3DTexture1::Initialize
3192  *
3193  * The sdk says it's not implemented
3194  *
3195  * Params:
3196  *  ?
3197  *
3198  * Returns
3199  *  DDERR_UNSUPPORTED
3200  *
3201  *****************************************************************************/
3202 static HRESULT WINAPI d3d_texture1_Initialize(IDirect3DTexture *iface,
3203         IDirect3DDevice *device, IDirectDrawSurface *surface)
3204 {
3205     TRACE("iface %p, device %p, surface %p.\n", iface, device, surface);
3206
3207     return DDERR_UNSUPPORTED; /* Unchecked */
3208 }
3209
3210 /*****************************************************************************
3211  * IDirectDrawSurface7::IsLost
3212  *
3213  * Checks if the surface is lost
3214  *
3215  * Returns:
3216  *  DD_OK, if the surface is usable
3217  *  DDERR_ISLOST if the surface is lost
3218  *  See IWineD3DSurface::IsLost for more details
3219  *
3220  *****************************************************************************/
3221 static HRESULT WINAPI ddraw_surface7_IsLost(IDirectDrawSurface7 *iface)
3222 {
3223     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
3224     HRESULT hr;
3225
3226     TRACE("iface %p.\n", iface);
3227
3228     wined3d_mutex_lock();
3229     hr = wined3d_surface_is_lost(This->wined3d_surface);
3230     wined3d_mutex_unlock();
3231
3232     switch(hr)
3233     {
3234         /* D3D8 and 9 loose full devices, thus there's only a DEVICELOST error.
3235          * WineD3D uses the same error for surfaces
3236          */
3237         case WINED3DERR_DEVICELOST:         return DDERR_SURFACELOST;
3238         default:                            return hr;
3239     }
3240 }
3241
3242 static HRESULT WINAPI ddraw_surface4_IsLost(IDirectDrawSurface4 *iface)
3243 {
3244     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
3245     TRACE("iface %p.\n", iface);
3246
3247     return ddraw_surface7_IsLost(&This->IDirectDrawSurface7_iface);
3248 }
3249
3250 static HRESULT WINAPI ddraw_surface3_IsLost(IDirectDrawSurface3 *iface)
3251 {
3252     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
3253     TRACE("iface %p.\n", iface);
3254
3255     return ddraw_surface7_IsLost(&This->IDirectDrawSurface7_iface);
3256 }
3257
3258 static HRESULT WINAPI ddraw_surface2_IsLost(IDirectDrawSurface2 *iface)
3259 {
3260     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
3261     TRACE("iface %p.\n", iface);
3262
3263     return ddraw_surface7_IsLost(&This->IDirectDrawSurface7_iface);
3264 }
3265
3266 static HRESULT WINAPI ddraw_surface1_IsLost(IDirectDrawSurface *iface)
3267 {
3268     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
3269     TRACE("iface %p.\n", iface);
3270
3271     return ddraw_surface7_IsLost(&This->IDirectDrawSurface7_iface);
3272 }
3273
3274 /*****************************************************************************
3275  * IDirectDrawSurface7::Restore
3276  *
3277  * Restores a lost surface. This makes the surface usable again, but
3278  * doesn't reload its old contents
3279  *
3280  * Returns:
3281  *  DD_OK on success
3282  *  See IWineD3DSurface::Restore for more details
3283  *
3284  *****************************************************************************/
3285 static HRESULT WINAPI ddraw_surface7_Restore(IDirectDrawSurface7 *iface)
3286 {
3287     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
3288     HRESULT hr;
3289
3290     TRACE("iface %p.\n", iface);
3291
3292     wined3d_mutex_lock();
3293     hr = wined3d_surface_restore(This->wined3d_surface);
3294     wined3d_mutex_unlock();
3295
3296     return hr;
3297 }
3298
3299 static HRESULT WINAPI ddraw_surface4_Restore(IDirectDrawSurface4 *iface)
3300 {
3301     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
3302     TRACE("iface %p.\n", iface);
3303
3304     return ddraw_surface7_Restore(&This->IDirectDrawSurface7_iface);
3305 }
3306
3307 static HRESULT WINAPI ddraw_surface3_Restore(IDirectDrawSurface3 *iface)
3308 {
3309     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
3310     TRACE("iface %p.\n", iface);
3311
3312     return ddraw_surface7_Restore(&This->IDirectDrawSurface7_iface);
3313 }
3314
3315 static HRESULT WINAPI ddraw_surface2_Restore(IDirectDrawSurface2 *iface)
3316 {
3317     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
3318     TRACE("iface %p.\n", iface);
3319
3320     return ddraw_surface7_Restore(&This->IDirectDrawSurface7_iface);
3321 }
3322
3323 static HRESULT WINAPI ddraw_surface1_Restore(IDirectDrawSurface *iface)
3324 {
3325     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
3326     TRACE("iface %p.\n", iface);
3327
3328     return ddraw_surface7_Restore(&This->IDirectDrawSurface7_iface);
3329 }
3330
3331 /*****************************************************************************
3332  * IDirectDrawSurface7::SetOverlayPosition
3333  *
3334  * Changes the display coordinates of an overlay surface
3335  *
3336  * Params:
3337  *  X:
3338  *  Y:
3339  *
3340  * Returns:
3341  *   DDERR_NOTAOVERLAYSURFACE, because we don't support overlays right now
3342  *****************************************************************************/
3343 static HRESULT WINAPI ddraw_surface7_SetOverlayPosition(IDirectDrawSurface7 *iface, LONG X, LONG Y)
3344 {
3345     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
3346     HRESULT hr;
3347
3348     TRACE("iface %p, x %d, y %d.\n", iface, X, Y);
3349
3350     wined3d_mutex_lock();
3351     hr = wined3d_surface_set_overlay_position(This->wined3d_surface, X, Y);
3352     wined3d_mutex_unlock();
3353
3354     return hr;
3355 }
3356
3357 static HRESULT WINAPI ddraw_surface4_SetOverlayPosition(IDirectDrawSurface4 *iface, LONG x, LONG y)
3358 {
3359     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
3360     TRACE("iface %p, x %d, y %d.\n", iface, x, y);
3361
3362     return ddraw_surface7_SetOverlayPosition(&This->IDirectDrawSurface7_iface, x, y);
3363 }
3364
3365 static HRESULT WINAPI ddraw_surface3_SetOverlayPosition(IDirectDrawSurface3 *iface, LONG x, LONG y)
3366 {
3367     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
3368     TRACE("iface %p, x %d, y %d.\n", iface, x, y);
3369
3370     return ddraw_surface7_SetOverlayPosition(&This->IDirectDrawSurface7_iface, x, y);
3371 }
3372
3373 static HRESULT WINAPI ddraw_surface2_SetOverlayPosition(IDirectDrawSurface2 *iface, LONG x, LONG y)
3374 {
3375     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
3376     TRACE("iface %p, x %d, y %d.\n", iface, x, y);
3377
3378     return ddraw_surface7_SetOverlayPosition(&This->IDirectDrawSurface7_iface, x, y);
3379 }
3380
3381 static HRESULT WINAPI ddraw_surface1_SetOverlayPosition(IDirectDrawSurface *iface, LONG x, LONG y)
3382 {
3383     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
3384     TRACE("iface %p, x %d, y %d.\n", iface, x, y);
3385
3386     return ddraw_surface7_SetOverlayPosition(&This->IDirectDrawSurface7_iface, x, y);
3387 }
3388
3389 /*****************************************************************************
3390  * IDirectDrawSurface7::UpdateOverlay
3391  *
3392  * Modifies the attributes of an overlay surface.
3393  *
3394  * Params:
3395  *  SrcRect: The section of the source being used for the overlay
3396  *  DstSurface: Address of the surface that is overlaid
3397  *  DstRect: Place of the overlay
3398  *  Flags: some DDOVER_* flags
3399  *
3400  * Returns:
3401  *  DDERR_UNSUPPORTED, because we don't support overlays
3402  *
3403  *****************************************************************************/
3404 static HRESULT WINAPI ddraw_surface7_UpdateOverlay(IDirectDrawSurface7 *iface, RECT *SrcRect,
3405         IDirectDrawSurface7 *DstSurface, RECT *DstRect, DWORD Flags, DDOVERLAYFX *FX)
3406 {
3407     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
3408     IDirectDrawSurfaceImpl *Dst = unsafe_impl_from_IDirectDrawSurface7(DstSurface);
3409     HRESULT hr;
3410
3411     TRACE("iface %p, src_rect %s, dst_surface %p, dst_rect %s, flags %#x, fx %p.\n",
3412             iface, wine_dbgstr_rect(SrcRect), DstSurface, wine_dbgstr_rect(DstRect), Flags, FX);
3413
3414     wined3d_mutex_lock();
3415     hr = wined3d_surface_update_overlay(This->wined3d_surface, SrcRect,
3416             Dst ? Dst->wined3d_surface : NULL, DstRect, Flags, (WINEDDOVERLAYFX *)FX);
3417     wined3d_mutex_unlock();
3418
3419     switch(hr) {
3420         case WINED3DERR_INVALIDCALL:        return DDERR_INVALIDPARAMS;
3421         case WINEDDERR_NOTAOVERLAYSURFACE:  return DDERR_NOTAOVERLAYSURFACE;
3422         case WINEDDERR_OVERLAYNOTVISIBLE:   return DDERR_OVERLAYNOTVISIBLE;
3423         default:
3424             return hr;
3425     }
3426 }
3427
3428 static HRESULT WINAPI ddraw_surface4_UpdateOverlay(IDirectDrawSurface4 *iface, RECT *src_rect,
3429         IDirectDrawSurface4 *dst_surface, RECT *dst_rect, DWORD flags, DDOVERLAYFX *fx)
3430 {
3431     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
3432     IDirectDrawSurfaceImpl *dst_impl = unsafe_impl_from_IDirectDrawSurface4(dst_surface);
3433     TRACE("iface %p, src_rect %s, dst_surface %p, dst_rect %s, flags %#x, fx %p.\n",
3434             iface, wine_dbgstr_rect(src_rect), dst_surface, wine_dbgstr_rect(dst_rect), flags, fx);
3435
3436     return ddraw_surface7_UpdateOverlay(&This->IDirectDrawSurface7_iface, src_rect,
3437             dst_impl ? &dst_impl->IDirectDrawSurface7_iface : NULL, dst_rect, flags, fx);
3438 }
3439
3440 static HRESULT WINAPI ddraw_surface3_UpdateOverlay(IDirectDrawSurface3 *iface, RECT *src_rect,
3441         IDirectDrawSurface3 *dst_surface, RECT *dst_rect, DWORD flags, DDOVERLAYFX *fx)
3442 {
3443     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
3444     IDirectDrawSurfaceImpl *dst_impl = unsafe_impl_from_IDirectDrawSurface3(dst_surface);
3445     TRACE("iface %p, src_rect %s, dst_surface %p, dst_rect %s, flags %#x, fx %p.\n",
3446             iface, wine_dbgstr_rect(src_rect), dst_surface, wine_dbgstr_rect(dst_rect), flags, fx);
3447
3448     return ddraw_surface7_UpdateOverlay(&This->IDirectDrawSurface7_iface, src_rect,
3449             dst_impl ? &dst_impl->IDirectDrawSurface7_iface : NULL, dst_rect, flags, fx);
3450 }
3451
3452 static HRESULT WINAPI ddraw_surface2_UpdateOverlay(IDirectDrawSurface2 *iface, RECT *src_rect,
3453         IDirectDrawSurface2 *dst_surface, RECT *dst_rect, DWORD flags, DDOVERLAYFX *fx)
3454 {
3455     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
3456     IDirectDrawSurfaceImpl *dst_impl = unsafe_impl_from_IDirectDrawSurface2(dst_surface);
3457     TRACE("iface %p, src_rect %s, dst_surface %p, dst_rect %s, flags %#x, fx %p.\n",
3458             iface, wine_dbgstr_rect(src_rect), dst_surface, wine_dbgstr_rect(dst_rect), flags, fx);
3459
3460     return ddraw_surface7_UpdateOverlay(&This->IDirectDrawSurface7_iface, src_rect,
3461             dst_impl ? &dst_impl->IDirectDrawSurface7_iface : NULL, dst_rect, flags, fx);
3462 }
3463
3464 static HRESULT WINAPI ddraw_surface1_UpdateOverlay(IDirectDrawSurface *iface, RECT *src_rect,
3465         IDirectDrawSurface *dst_surface, RECT *dst_rect, DWORD flags, DDOVERLAYFX *fx)
3466 {
3467     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
3468     IDirectDrawSurfaceImpl *dst_impl = unsafe_impl_from_IDirectDrawSurface(dst_surface);
3469     TRACE("iface %p, src_rect %s, dst_surface %p, dst_rect %s, flags %#x, fx %p.\n",
3470             iface, wine_dbgstr_rect(src_rect), dst_surface, wine_dbgstr_rect(dst_rect), flags, fx);
3471
3472     return ddraw_surface7_UpdateOverlay(&This->IDirectDrawSurface7_iface, src_rect,
3473             dst_impl ? &dst_impl->IDirectDrawSurface7_iface : NULL, dst_rect, flags, fx);
3474 }
3475
3476 /*****************************************************************************
3477  * IDirectDrawSurface7::UpdateOverlayDisplay
3478  *
3479  * The DX7 sdk says that it's not implemented
3480  *
3481  * Params:
3482  *  Flags: ?
3483  *
3484  * Returns: DDERR_UNSUPPORTED, because we don't support overlays
3485  *
3486  *****************************************************************************/
3487 static HRESULT WINAPI ddraw_surface7_UpdateOverlayDisplay(IDirectDrawSurface7 *iface, DWORD Flags)
3488 {
3489     TRACE("iface %p, flags %#x.\n", iface, Flags);
3490
3491     return DDERR_UNSUPPORTED;
3492 }
3493
3494 static HRESULT WINAPI ddraw_surface4_UpdateOverlayDisplay(IDirectDrawSurface4 *iface, DWORD flags)
3495 {
3496     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
3497     TRACE("iface %p, flags %#x.\n", iface, flags);
3498
3499     return ddraw_surface7_UpdateOverlayDisplay(&This->IDirectDrawSurface7_iface, flags);
3500 }
3501
3502 static HRESULT WINAPI ddraw_surface3_UpdateOverlayDisplay(IDirectDrawSurface3 *iface, DWORD flags)
3503 {
3504     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
3505     TRACE("iface %p, flags %#x.\n", iface, flags);
3506
3507     return ddraw_surface7_UpdateOverlayDisplay(&This->IDirectDrawSurface7_iface, flags);
3508 }
3509
3510 static HRESULT WINAPI ddraw_surface2_UpdateOverlayDisplay(IDirectDrawSurface2 *iface, DWORD flags)
3511 {
3512     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
3513     TRACE("iface %p, flags %#x.\n", iface, flags);
3514
3515     return ddraw_surface7_UpdateOverlayDisplay(&This->IDirectDrawSurface7_iface, flags);
3516 }
3517
3518 static HRESULT WINAPI ddraw_surface1_UpdateOverlayDisplay(IDirectDrawSurface *iface, DWORD flags)
3519 {
3520     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
3521     TRACE("iface %p, flags %#x.\n", iface, flags);
3522
3523     return ddraw_surface7_UpdateOverlayDisplay(&This->IDirectDrawSurface7_iface, flags);
3524 }
3525
3526 /*****************************************************************************
3527  * IDirectDrawSurface7::UpdateOverlayZOrder
3528  *
3529  * Sets an overlay's Z order
3530  *
3531  * Params:
3532  *  Flags: DDOVERZ_* flags
3533  *  DDSRef: Defines the relative position in the overlay chain
3534  *
3535  * Returns:
3536  *  DDERR_NOTOVERLAYSURFACE, because we don't support overlays
3537  *
3538  *****************************************************************************/
3539 static HRESULT WINAPI ddraw_surface7_UpdateOverlayZOrder(IDirectDrawSurface7 *iface,
3540         DWORD Flags, IDirectDrawSurface7 *DDSRef)
3541 {
3542     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
3543     IDirectDrawSurfaceImpl *Ref = unsafe_impl_from_IDirectDrawSurface7(DDSRef);
3544     HRESULT hr;
3545
3546     TRACE("iface %p, flags %#x, reference %p.\n", iface, Flags, DDSRef);
3547
3548     wined3d_mutex_lock();
3549     hr = wined3d_surface_update_overlay_z_order(This->wined3d_surface,
3550             Flags, Ref ? Ref->wined3d_surface : NULL);
3551     wined3d_mutex_unlock();
3552
3553     return hr;
3554 }
3555
3556 static HRESULT WINAPI ddraw_surface4_UpdateOverlayZOrder(IDirectDrawSurface4 *iface,
3557         DWORD flags, IDirectDrawSurface4 *reference)
3558 {
3559     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
3560     IDirectDrawSurfaceImpl *reference_impl = unsafe_impl_from_IDirectDrawSurface4(reference);
3561     TRACE("iface %p, flags %#x, reference %p.\n", iface, flags, reference);
3562
3563     return ddraw_surface7_UpdateOverlayZOrder(&This->IDirectDrawSurface7_iface, flags,
3564             reference_impl ? &reference_impl->IDirectDrawSurface7_iface : NULL);
3565 }
3566
3567 static HRESULT WINAPI ddraw_surface3_UpdateOverlayZOrder(IDirectDrawSurface3 *iface,
3568         DWORD flags, IDirectDrawSurface3 *reference)
3569 {
3570     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
3571     IDirectDrawSurfaceImpl *reference_impl = unsafe_impl_from_IDirectDrawSurface3(reference);
3572     TRACE("iface %p, flags %#x, reference %p.\n", iface, flags, reference);
3573
3574     return ddraw_surface7_UpdateOverlayZOrder(&This->IDirectDrawSurface7_iface, flags,
3575             reference_impl ? &reference_impl->IDirectDrawSurface7_iface : NULL);
3576 }
3577
3578 static HRESULT WINAPI ddraw_surface2_UpdateOverlayZOrder(IDirectDrawSurface2 *iface,
3579         DWORD flags, IDirectDrawSurface2 *reference)
3580 {
3581     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
3582     IDirectDrawSurfaceImpl *reference_impl = unsafe_impl_from_IDirectDrawSurface2(reference);
3583     TRACE("iface %p, flags %#x, reference %p.\n", iface, flags, reference);
3584
3585     return ddraw_surface7_UpdateOverlayZOrder(&This->IDirectDrawSurface7_iface, flags,
3586             reference_impl ? &reference_impl->IDirectDrawSurface7_iface : NULL);
3587 }
3588
3589 static HRESULT WINAPI ddraw_surface1_UpdateOverlayZOrder(IDirectDrawSurface *iface,
3590         DWORD flags, IDirectDrawSurface *reference)
3591 {
3592     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
3593     IDirectDrawSurfaceImpl *reference_impl = unsafe_impl_from_IDirectDrawSurface(reference);
3594     TRACE("iface %p, flags %#x, reference %p.\n", iface, flags, reference);
3595
3596     return ddraw_surface7_UpdateOverlayZOrder(&This->IDirectDrawSurface7_iface, flags,
3597             reference_impl ? &reference_impl->IDirectDrawSurface7_iface : NULL);
3598 }
3599
3600 /*****************************************************************************
3601  * IDirectDrawSurface7::GetDDInterface
3602  *
3603  * Returns the IDirectDraw7 interface pointer of the DirectDraw object this
3604  * surface belongs to
3605  *
3606  * Params:
3607  *  DD: Address to write the interface pointer to
3608  *
3609  * Returns:
3610  *  DD_OK on success
3611  *  DDERR_INVALIDPARAMS if DD is NULL
3612  *
3613  *****************************************************************************/
3614 static HRESULT WINAPI ddraw_surface7_GetDDInterface(IDirectDrawSurface7 *iface, void **DD)
3615 {
3616     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
3617
3618     TRACE("iface %p, ddraw %p.\n", iface, DD);
3619
3620     if(!DD)
3621         return DDERR_INVALIDPARAMS;
3622
3623     switch(This->version)
3624     {
3625         case 7:
3626             *DD = &This->ddraw->IDirectDraw7_iface;
3627             break;
3628
3629         case 4:
3630             *DD = &This->ddraw->IDirectDraw4_iface;
3631             break;
3632
3633         case 2:
3634             *DD = &This->ddraw->IDirectDraw2_iface;
3635             break;
3636
3637         case 1:
3638             *DD = &This->ddraw->IDirectDraw_iface;
3639             break;
3640
3641     }
3642     IUnknown_AddRef((IUnknown *)*DD);
3643
3644     return DD_OK;
3645 }
3646
3647 static HRESULT WINAPI ddraw_surface4_GetDDInterface(IDirectDrawSurface4 *iface, void **ddraw)
3648 {
3649     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
3650     TRACE("iface %p, ddraw %p.\n", iface, ddraw);
3651
3652     return ddraw_surface7_GetDDInterface(&This->IDirectDrawSurface7_iface, ddraw);
3653 }
3654
3655 static HRESULT WINAPI ddraw_surface3_GetDDInterface(IDirectDrawSurface3 *iface, void **ddraw)
3656 {
3657     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
3658     TRACE("iface %p, ddraw %p.\n", iface, ddraw);
3659
3660     return ddraw_surface7_GetDDInterface(&This->IDirectDrawSurface7_iface, ddraw);
3661 }
3662
3663 static HRESULT WINAPI ddraw_surface2_GetDDInterface(IDirectDrawSurface2 *iface, void **ddraw)
3664 {
3665     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
3666     TRACE("iface %p, ddraw %p.\n", iface, ddraw);
3667
3668     return ddraw_surface7_GetDDInterface(&This->IDirectDrawSurface7_iface, ddraw);
3669 }
3670
3671 /* This seems also windows implementation specific - I don't think WineD3D needs this */
3672 static HRESULT WINAPI ddraw_surface7_ChangeUniquenessValue(IDirectDrawSurface7 *iface)
3673 {
3674     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
3675     volatile IDirectDrawSurfaceImpl* vThis = This;
3676
3677     TRACE("iface %p.\n", iface);
3678
3679     wined3d_mutex_lock();
3680     /* A uniqueness value of 0 is apparently special.
3681      * This needs to be checked.
3682      * TODO: Write tests for this code and check if the volatile, interlocked stuff is really needed
3683      */
3684     while (1) {
3685         DWORD old_uniqueness_value = vThis->uniqueness_value;
3686         DWORD new_uniqueness_value = old_uniqueness_value+1;
3687
3688         if (old_uniqueness_value == 0) break;
3689         if (new_uniqueness_value == 0) new_uniqueness_value = 1;
3690
3691         if (InterlockedCompareExchange((LONG*)&vThis->uniqueness_value,
3692                                       old_uniqueness_value,
3693                                       new_uniqueness_value)
3694             == old_uniqueness_value)
3695             break;
3696     }
3697
3698     wined3d_mutex_unlock();
3699
3700     return DD_OK;
3701 }
3702
3703 static HRESULT WINAPI ddraw_surface4_ChangeUniquenessValue(IDirectDrawSurface4 *iface)
3704 {
3705     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
3706     TRACE("iface %p.\n", iface);
3707
3708     return ddraw_surface7_ChangeUniquenessValue(&This->IDirectDrawSurface7_iface);
3709 }
3710
3711 static HRESULT WINAPI ddraw_surface7_GetUniquenessValue(IDirectDrawSurface7 *iface, DWORD *pValue)
3712 {
3713     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
3714
3715     TRACE("iface %p, value %p.\n", iface, pValue);
3716
3717     wined3d_mutex_lock();
3718     *pValue = This->uniqueness_value;
3719     wined3d_mutex_unlock();
3720
3721     return DD_OK;
3722 }
3723
3724 static HRESULT WINAPI ddraw_surface4_GetUniquenessValue(IDirectDrawSurface4 *iface, DWORD *pValue)
3725 {
3726     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
3727     TRACE("iface %p, value %p.\n", iface, pValue);
3728
3729     return ddraw_surface7_GetUniquenessValue(&This->IDirectDrawSurface7_iface, pValue);
3730 }
3731
3732 /*****************************************************************************
3733  * IDirectDrawSurface7::SetLOD
3734  *
3735  * Sets the level of detail of a texture
3736  *
3737  * Params:
3738  *  MaxLOD: LOD to set
3739  *
3740  * Returns:
3741  *  DD_OK on success
3742  *  DDERR_INVALIDOBJECT if the surface is invalid for this method
3743  *
3744  *****************************************************************************/
3745 static HRESULT WINAPI ddraw_surface7_SetLOD(IDirectDrawSurface7 *iface, DWORD MaxLOD)
3746 {
3747     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
3748     HRESULT hr;
3749
3750     TRACE("iface %p, lod %u.\n", iface, MaxLOD);
3751
3752     wined3d_mutex_lock();
3753     if (!(This->surface_desc.ddsCaps.dwCaps2 & DDSCAPS2_TEXTUREMANAGE))
3754     {
3755         wined3d_mutex_unlock();
3756         return DDERR_INVALIDOBJECT;
3757     }
3758
3759     if (!This->wined3d_texture)
3760     {
3761         ERR("(%p) The DirectDraw texture has no WineD3DTexture!\n", This);
3762         wined3d_mutex_unlock();
3763         return DDERR_INVALIDOBJECT;
3764     }
3765
3766     hr = wined3d_texture_set_lod(This->wined3d_texture, MaxLOD);
3767     wined3d_mutex_unlock();
3768
3769     return hr;
3770 }
3771
3772 /*****************************************************************************
3773  * IDirectDrawSurface7::GetLOD
3774  *
3775  * Returns the level of detail of a Direct3D texture
3776  *
3777  * Params:
3778  *  MaxLOD: Address to write the LOD to
3779  *
3780  * Returns:
3781  *  DD_OK on success
3782  *  DDERR_INVALIDPARAMS if MaxLOD is NULL
3783  *  DDERR_INVALIDOBJECT if the surface is invalid for this method
3784  *
3785  *****************************************************************************/
3786 static HRESULT WINAPI ddraw_surface7_GetLOD(IDirectDrawSurface7 *iface, DWORD *MaxLOD)
3787 {
3788     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
3789
3790     TRACE("iface %p, lod %p.\n", iface, MaxLOD);
3791
3792     if(!MaxLOD)
3793         return DDERR_INVALIDPARAMS;
3794
3795     wined3d_mutex_lock();
3796     if (!(This->surface_desc.ddsCaps.dwCaps2 & DDSCAPS2_TEXTUREMANAGE))
3797     {
3798         wined3d_mutex_unlock();
3799         return DDERR_INVALIDOBJECT;
3800     }
3801
3802     *MaxLOD = wined3d_texture_get_lod(This->wined3d_texture);
3803     wined3d_mutex_unlock();
3804
3805     return DD_OK;
3806 }
3807
3808 /*****************************************************************************
3809  * IDirectDrawSurface7::BltFast
3810  *
3811  * Performs a fast Blit.
3812  *
3813  * Params:
3814  *  dstx: The x coordinate to blit to on the destination
3815  *  dsty: The y coordinate to blit to on the destination
3816  *  Source: The source surface
3817  *  rsrc: The source rectangle
3818  *  trans: Type of transfer. Some DDBLTFAST_* flags
3819  *
3820  * Returns:
3821  *  DD_OK on success
3822  *  For more details, see IWineD3DSurface::BltFast
3823  *
3824  *****************************************************************************/
3825 static HRESULT WINAPI ddraw_surface7_BltFast(IDirectDrawSurface7 *iface, DWORD dstx, DWORD dsty,
3826         IDirectDrawSurface7 *Source, RECT *rsrc, DWORD trans)
3827 {
3828     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
3829     IDirectDrawSurfaceImpl *src = unsafe_impl_from_IDirectDrawSurface7(Source);
3830     DWORD src_w, src_h, dst_w, dst_h;
3831     HRESULT hr = DD_OK;
3832     DWORD flags = 0;
3833     RECT dst_rect;
3834
3835     TRACE("iface %p, dst_x %u, dst_y %u, src_surface %p, src_rect %s, flags %#x.\n",
3836             iface, dstx, dsty, Source, wine_dbgstr_rect(rsrc), trans);
3837
3838     dst_w = This->surface_desc.dwWidth;
3839     dst_h = This->surface_desc.dwHeight;
3840
3841     /* Source must be != NULL, This is not checked by windows. Windows happily throws a 0xc0000005
3842      * in that case
3843      */
3844     if(rsrc)
3845     {
3846         src_w = rsrc->right - rsrc->left;
3847         src_h = rsrc->bottom - rsrc->top;
3848     }
3849     else
3850     {
3851         src_w = src->surface_desc.dwWidth;
3852         src_h = src->surface_desc.dwHeight;
3853     }
3854
3855     if (src_w > dst_w || dstx > dst_w - src_w
3856             || src_h > dst_h || dsty > dst_h - src_h)
3857     {
3858         WARN("Destination area out of bounds, returning DDERR_INVALIDRECT.\n");
3859         return DDERR_INVALIDRECT;
3860     }
3861
3862     SetRect(&dst_rect, dstx, dsty, dstx + src_w, dsty + src_h);
3863     if (trans & DDBLTFAST_SRCCOLORKEY)
3864         flags |= WINEDDBLT_KEYSRC;
3865     if (trans & DDBLTFAST_DESTCOLORKEY)
3866         flags |= WINEDDBLT_KEYDEST;
3867     if (trans & DDBLTFAST_WAIT)
3868         flags |= WINEDDBLT_WAIT;
3869     if (trans & DDBLTFAST_DONOTWAIT)
3870         flags |= WINEDDBLT_DONOTWAIT;
3871
3872     wined3d_mutex_lock();
3873     hr = ddraw_surface_blt_clipped(This, &dst_rect, src, rsrc, flags, NULL, WINED3DTEXF_POINT);
3874     wined3d_mutex_unlock();
3875
3876     switch(hr)
3877     {
3878         case WINED3DERR_NOTAVAILABLE:           return DDERR_UNSUPPORTED;
3879         case WINED3DERR_WRONGTEXTUREFORMAT:     return DDERR_INVALIDPIXELFORMAT;
3880         default:                                return hr;
3881     }
3882 }
3883
3884 static HRESULT WINAPI ddraw_surface4_BltFast(IDirectDrawSurface4 *iface, DWORD dst_x, DWORD dst_y,
3885         IDirectDrawSurface4 *src_surface, RECT *src_rect, DWORD flags)
3886 {
3887     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
3888     IDirectDrawSurfaceImpl *src_impl = unsafe_impl_from_IDirectDrawSurface4(src_surface);
3889     TRACE("iface %p, dst_x %u, dst_y %u, src_surface %p, src_rect %s, flags %#x.\n",
3890             iface, dst_x, dst_y, src_surface, wine_dbgstr_rect(src_rect), flags);
3891
3892     return ddraw_surface7_BltFast(&This->IDirectDrawSurface7_iface, dst_x, dst_y,
3893             src_impl ? &src_impl->IDirectDrawSurface7_iface : NULL, src_rect, flags);
3894 }
3895
3896 static HRESULT WINAPI ddraw_surface3_BltFast(IDirectDrawSurface3 *iface, DWORD dst_x, DWORD dst_y,
3897         IDirectDrawSurface3 *src_surface, RECT *src_rect, DWORD flags)
3898 {
3899     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
3900     IDirectDrawSurfaceImpl *src_impl = unsafe_impl_from_IDirectDrawSurface3(src_surface);
3901     TRACE("iface %p, dst_x %u, dst_y %u, src_surface %p, src_rect %s, flags %#x.\n",
3902             iface, dst_x, dst_y, src_surface, wine_dbgstr_rect(src_rect), flags);
3903
3904     return ddraw_surface7_BltFast(&This->IDirectDrawSurface7_iface, dst_x, dst_y,
3905             src_impl ? &src_impl->IDirectDrawSurface7_iface : NULL, src_rect, flags);
3906 }
3907
3908 static HRESULT WINAPI ddraw_surface2_BltFast(IDirectDrawSurface2 *iface, DWORD dst_x, DWORD dst_y,
3909         IDirectDrawSurface2 *src_surface, RECT *src_rect, DWORD flags)
3910 {
3911     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
3912     IDirectDrawSurfaceImpl *src_impl = unsafe_impl_from_IDirectDrawSurface2(src_surface);
3913     TRACE("iface %p, dst_x %u, dst_y %u, src_surface %p, src_rect %s, flags %#x.\n",
3914             iface, dst_x, dst_y, src_surface, wine_dbgstr_rect(src_rect), flags);
3915
3916     return ddraw_surface7_BltFast(&This->IDirectDrawSurface7_iface, dst_x, dst_y,
3917             src_impl ? &src_impl->IDirectDrawSurface7_iface : NULL, src_rect, flags);
3918 }
3919
3920 static HRESULT WINAPI ddraw_surface1_BltFast(IDirectDrawSurface *iface, DWORD dst_x, DWORD dst_y,
3921         IDirectDrawSurface *src_surface, RECT *src_rect, DWORD flags)
3922 {
3923     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
3924     IDirectDrawSurfaceImpl *src_impl = unsafe_impl_from_IDirectDrawSurface(src_surface);
3925     TRACE("iface %p, dst_x %u, dst_y %u, src_surface %p, src_rect %s, flags %#x.\n",
3926             iface, dst_x, dst_y, src_surface, wine_dbgstr_rect(src_rect), flags);
3927
3928     return ddraw_surface7_BltFast(&This->IDirectDrawSurface7_iface, dst_x, dst_y,
3929             src_impl ? &src_impl->IDirectDrawSurface7_iface : NULL, src_rect, flags);
3930 }
3931
3932 /*****************************************************************************
3933  * IDirectDrawSurface7::GetClipper
3934  *
3935  * Returns the IDirectDrawClipper interface of the clipper assigned to this
3936  * surface
3937  *
3938  * Params:
3939  *  Clipper: Address to store the interface pointer at
3940  *
3941  * Returns:
3942  *  DD_OK on success
3943  *  DDERR_INVALIDPARAMS if Clipper is NULL
3944  *  DDERR_NOCLIPPERATTACHED if there's no clipper attached
3945  *
3946  *****************************************************************************/
3947 static HRESULT WINAPI ddraw_surface7_GetClipper(IDirectDrawSurface7 *iface, IDirectDrawClipper **Clipper)
3948 {
3949     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
3950
3951     TRACE("iface %p, clipper %p.\n", iface, Clipper);
3952
3953     if (!Clipper)
3954         return DDERR_INVALIDPARAMS;
3955
3956     wined3d_mutex_lock();
3957     if(This->clipper == NULL)
3958     {
3959         wined3d_mutex_unlock();
3960         return DDERR_NOCLIPPERATTACHED;
3961     }
3962
3963     *Clipper = (IDirectDrawClipper *)This->clipper;
3964     IDirectDrawClipper_AddRef(*Clipper);
3965     wined3d_mutex_unlock();
3966
3967     return DD_OK;
3968 }
3969
3970 static HRESULT WINAPI ddraw_surface4_GetClipper(IDirectDrawSurface4 *iface, IDirectDrawClipper **clipper)
3971 {
3972     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
3973     TRACE("iface %p, clipper %p.\n", iface, clipper);
3974
3975     return ddraw_surface7_GetClipper(&This->IDirectDrawSurface7_iface, clipper);
3976 }
3977
3978 static HRESULT WINAPI ddraw_surface3_GetClipper(IDirectDrawSurface3 *iface, IDirectDrawClipper **clipper)
3979 {
3980     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
3981     TRACE("iface %p, clipper %p.\n", iface, clipper);
3982
3983     return ddraw_surface7_GetClipper(&This->IDirectDrawSurface7_iface, clipper);
3984 }
3985
3986 static HRESULT WINAPI ddraw_surface2_GetClipper(IDirectDrawSurface2 *iface, IDirectDrawClipper **clipper)
3987 {
3988     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
3989     TRACE("iface %p, clipper %p.\n", iface, clipper);
3990
3991     return ddraw_surface7_GetClipper(&This->IDirectDrawSurface7_iface, clipper);
3992 }
3993
3994 static HRESULT WINAPI ddraw_surface1_GetClipper(IDirectDrawSurface *iface, IDirectDrawClipper **clipper)
3995 {
3996     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
3997     TRACE("iface %p, clipper %p.\n", iface, clipper);
3998
3999     return ddraw_surface7_GetClipper(&This->IDirectDrawSurface7_iface, clipper);
4000 }
4001
4002 /*****************************************************************************
4003  * IDirectDrawSurface7::SetClipper
4004  *
4005  * Sets a clipper for the surface
4006  *
4007  * Params:
4008  *  Clipper: IDirectDrawClipper interface of the clipper to set
4009  *
4010  * Returns:
4011  *  DD_OK on success
4012  *
4013  *****************************************************************************/
4014 static HRESULT WINAPI ddraw_surface7_SetClipper(IDirectDrawSurface7 *iface,
4015         IDirectDrawClipper *iclipper)
4016 {
4017     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
4018     struct ddraw_clipper *clipper = unsafe_impl_from_IDirectDrawClipper(iclipper);
4019     struct ddraw_clipper *old_clipper = This->clipper;
4020     HWND clipWindow;
4021
4022     TRACE("iface %p, clipper %p.\n", iface, iclipper);
4023
4024     wined3d_mutex_lock();
4025     if (clipper == This->clipper)
4026     {
4027         wined3d_mutex_unlock();
4028         return DD_OK;
4029     }
4030
4031     This->clipper = clipper;
4032
4033     if (clipper != NULL)
4034         IDirectDrawClipper_AddRef(iclipper);
4035     if (old_clipper)
4036         IDirectDrawClipper_Release(&old_clipper->IDirectDrawClipper_iface);
4037
4038     if ((This->surface_desc.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE) && This->ddraw->wined3d_swapchain)
4039     {
4040         clipWindow = NULL;
4041         if(clipper) {
4042             IDirectDrawClipper_GetHWnd(iclipper, &clipWindow);
4043         }
4044
4045         if (clipWindow)
4046         {
4047             wined3d_swapchain_set_window(This->ddraw->wined3d_swapchain, clipWindow);
4048             ddraw_set_swapchain_window(This->ddraw, clipWindow);
4049         }
4050         else
4051         {
4052             wined3d_swapchain_set_window(This->ddraw->wined3d_swapchain, This->ddraw->d3d_window);
4053             ddraw_set_swapchain_window(This->ddraw, This->ddraw->dest_window);
4054         }
4055     }
4056
4057     wined3d_mutex_unlock();
4058
4059     return DD_OK;
4060 }
4061
4062 static HRESULT WINAPI ddraw_surface4_SetClipper(IDirectDrawSurface4 *iface, IDirectDrawClipper *clipper)
4063 {
4064     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
4065     TRACE("iface %p, clipper %p.\n", iface, clipper);
4066
4067     return ddraw_surface7_SetClipper(&This->IDirectDrawSurface7_iface, clipper);
4068 }
4069
4070 static HRESULT WINAPI ddraw_surface3_SetClipper(IDirectDrawSurface3 *iface, IDirectDrawClipper *clipper)
4071 {
4072     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
4073     TRACE("iface %p, clipper %p.\n", iface, clipper);
4074
4075     return ddraw_surface7_SetClipper(&This->IDirectDrawSurface7_iface, clipper);
4076 }
4077
4078 static HRESULT WINAPI ddraw_surface2_SetClipper(IDirectDrawSurface2 *iface, IDirectDrawClipper *clipper)
4079 {
4080     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
4081     TRACE("iface %p, clipper %p.\n", iface, clipper);
4082
4083     return ddraw_surface7_SetClipper(&This->IDirectDrawSurface7_iface, clipper);
4084 }
4085
4086 static HRESULT WINAPI ddraw_surface1_SetClipper(IDirectDrawSurface *iface, IDirectDrawClipper *clipper)
4087 {
4088     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
4089     TRACE("iface %p, clipper %p.\n", iface, clipper);
4090
4091     return ddraw_surface7_SetClipper(&This->IDirectDrawSurface7_iface, clipper);
4092 }
4093
4094 /*****************************************************************************
4095  * IDirectDrawSurface7::SetSurfaceDesc
4096  *
4097  * Sets the surface description. It can override the pixel format, the surface
4098  * memory, ...
4099  * It's not really tested.
4100  *
4101  * Params:
4102  * DDSD: Pointer to the new surface description to set
4103  * Flags: Some flags
4104  *
4105  * Returns:
4106  *  DD_OK on success
4107  *  DDERR_INVALIDPARAMS if DDSD is NULL
4108  *
4109  *****************************************************************************/
4110 static HRESULT WINAPI ddraw_surface7_SetSurfaceDesc(IDirectDrawSurface7 *iface, DDSURFACEDESC2 *DDSD, DWORD Flags)
4111 {
4112     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
4113     enum wined3d_format_id newFormat = WINED3DFMT_UNKNOWN;
4114     HRESULT hr;
4115     const DWORD allowed_flags = DDSD_LPSURFACE | DDSD_PIXELFORMAT | DDSD_WIDTH
4116             | DDSD_HEIGHT | DDSD_PITCH | DDSD_CAPS;
4117
4118     TRACE("iface %p, surface_desc %p, flags %#x.\n", iface, DDSD, Flags);
4119
4120     if (!DDSD)
4121     {
4122         WARN("DDSD is NULL, returning DDERR_INVALIDPARAMS\n");
4123         return DDERR_INVALIDPARAMS;
4124     }
4125     if (Flags)
4126     {
4127         WARN("Flags is %x, returning DDERR_INVALIDPARAMS\n", Flags);
4128         return DDERR_INVALIDPARAMS;
4129     }
4130     if (!(This->surface_desc.ddsCaps.dwCaps & DDSCAPS_SYSTEMMEMORY))
4131     {
4132         WARN("Surface is not in system memory, returning DDERR_INVALIDSURFACETYPE.\n");
4133         return DDERR_INVALIDSURFACETYPE;
4134     }
4135
4136     /* Tests show that only LPSURFACE and PIXELFORMAT can be set, and LPSURFACE is required
4137      * for PIXELFORMAT to work */
4138     if (DDSD->dwFlags & ~allowed_flags)
4139     {
4140         WARN("Invalid flags (0x%08x) set, returning DDERR_INVALIDPARAMS\n", DDSD->dwFlags);
4141         return DDERR_INVALIDPARAMS;
4142     }
4143     if (!(DDSD->dwFlags & DDSD_LPSURFACE))
4144     {
4145         WARN("DDSD_LPSURFACE is not set, returning DDERR_INVALIDPARAMS\n");
4146         return DDERR_INVALIDPARAMS;
4147     }
4148     if (DDSD->dwFlags & DDSD_CAPS)
4149     {
4150         WARN("DDSD_CAPS is set, returning DDERR_INVALIDCAPS.\n");
4151         return DDERR_INVALIDCAPS;
4152     }
4153     if (DDSD->dwFlags & DDSD_WIDTH)
4154     {
4155         if (!(DDSD->dwFlags & DDSD_PITCH))
4156         {
4157             WARN("DDSD_WIDTH is set, but DDSD_PITCH is not, returning DDERR_INVALIDPARAMS.\n");
4158             return DDERR_INVALIDPARAMS;
4159         }
4160         if (!DDSD->dwWidth || DDSD->u1.lPitch <= 0 || DDSD->u1.lPitch & 0x3)
4161         {
4162             WARN("Pitch is %d, width is %u, returning DDERR_INVALIDPARAMS.\n",
4163                     DDSD->u1.lPitch, DDSD->dwWidth);
4164             return DDERR_INVALIDPARAMS;
4165         }
4166         if (DDSD->dwWidth != This->surface_desc.dwWidth)
4167         {
4168             FIXME("Surface width changed from %u to %u.\n", This->surface_desc.dwWidth, DDSD->dwWidth);
4169         }
4170         if (DDSD->u1.lPitch != This->surface_desc.u1.lPitch)
4171         {
4172             FIXME("Surface pitch changed from %u to %u.\n", This->surface_desc.u1.lPitch, DDSD->u1.lPitch);
4173         }
4174     }
4175     else if (DDSD->dwFlags & DDSD_PITCH)
4176     {
4177         WARN("DDSD_PITCH is set, but DDSD_WIDTH is not, returning DDERR_INVALIDPARAMS.\n");
4178         return DDERR_INVALIDPARAMS;
4179     }
4180     if (DDSD->dwFlags & DDSD_HEIGHT)
4181     {
4182         if (!DDSD->dwHeight)
4183         {
4184             WARN("Height is 0, returning DDERR_INVALIDPARAMS.\n");
4185             return DDERR_INVALIDPARAMS;
4186         }
4187         if (DDSD->dwHeight != This->surface_desc.dwHeight)
4188         {
4189             FIXME("Surface height changed from %u to %u.\n", This->surface_desc.dwHeight, DDSD->dwHeight);
4190         }
4191     }
4192
4193     wined3d_mutex_lock();
4194     if (DDSD->dwFlags & DDSD_PIXELFORMAT)
4195     {
4196         newFormat = PixelFormat_DD2WineD3D(&DDSD->u4.ddpfPixelFormat);
4197
4198         if(newFormat == WINED3DFMT_UNKNOWN)
4199         {
4200             ERR("Requested to set an unknown pixelformat\n");
4201             wined3d_mutex_unlock();
4202             return DDERR_INVALIDPARAMS;
4203         }
4204         if(newFormat != PixelFormat_DD2WineD3D(&This->surface_desc.u4.ddpfPixelFormat) )
4205         {
4206             hr = wined3d_surface_set_format(This->wined3d_surface, newFormat);
4207             if (FAILED(hr))
4208             {
4209                 wined3d_mutex_unlock();
4210                 return hr;
4211             }
4212             This->surface_desc.u4.ddpfPixelFormat = DDSD->u4.ddpfPixelFormat;
4213         }
4214     }
4215     if (DDSD->dwFlags & DDSD_LPSURFACE && DDSD->lpSurface)
4216     {
4217         hr = wined3d_surface_set_mem(This->wined3d_surface, DDSD->lpSurface);
4218         if (FAILED(hr))
4219         {
4220             /* No need for a trace here, wined3d does that for us */
4221             switch(hr)
4222             {
4223                 case WINED3DERR_INVALIDCALL:
4224                     wined3d_mutex_unlock();
4225                     return DDERR_INVALIDPARAMS;
4226                 default:
4227                     break; /* Go on */
4228             }
4229         }
4230         /* DDSD->lpSurface is set by Lock() */
4231     }
4232
4233     wined3d_mutex_unlock();
4234
4235     return DD_OK;
4236 }
4237
4238 static HRESULT WINAPI ddraw_surface4_SetSurfaceDesc(IDirectDrawSurface4 *iface,
4239         DDSURFACEDESC2 *surface_desc, DWORD flags)
4240 {
4241     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
4242     TRACE("iface %p, surface_desc %p, flags %#x.\n", iface, surface_desc, flags);
4243
4244     return ddraw_surface7_SetSurfaceDesc(&This->IDirectDrawSurface7_iface,
4245             surface_desc, flags);
4246 }
4247
4248 static HRESULT WINAPI ddraw_surface3_SetSurfaceDesc(IDirectDrawSurface3 *iface,
4249         DDSURFACEDESC *surface_desc, DWORD flags)
4250 {
4251     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
4252     DDSURFACEDESC2 surface_desc2;
4253     TRACE("iface %p, surface_desc %p, flags %#x.\n", iface, surface_desc, flags);
4254
4255     if (surface_desc) DDSD_to_DDSD2(surface_desc, &surface_desc2);
4256     return ddraw_surface7_SetSurfaceDesc(&This->IDirectDrawSurface7_iface,
4257             surface_desc ? &surface_desc2 : NULL, flags);
4258 }
4259
4260 /*****************************************************************************
4261  * IDirectDrawSurface7::GetPalette
4262  *
4263  * Returns the IDirectDrawPalette interface of the palette currently assigned
4264  * to the surface
4265  *
4266  * Params:
4267  *  Pal: Address to write the interface pointer to
4268  *
4269  * Returns:
4270  *  DD_OK on success
4271  *  DDERR_INVALIDPARAMS if Pal is NULL
4272  *
4273  *****************************************************************************/
4274 static HRESULT WINAPI ddraw_surface7_GetPalette(IDirectDrawSurface7 *iface, IDirectDrawPalette **Pal)
4275 {
4276     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
4277     struct wined3d_palette *wined3d_palette;
4278     HRESULT hr = DD_OK;
4279
4280     TRACE("iface %p, palette %p.\n", iface, Pal);
4281
4282     if(!Pal)
4283         return DDERR_INVALIDPARAMS;
4284
4285     wined3d_mutex_lock();
4286     wined3d_palette = wined3d_surface_get_palette(This->wined3d_surface);
4287     if (wined3d_palette)
4288     {
4289         *Pal = wined3d_palette_get_parent(wined3d_palette);
4290         IDirectDrawPalette_AddRef(*Pal);
4291     }
4292     else
4293     {
4294         *Pal = NULL;
4295         hr = DDERR_NOPALETTEATTACHED;
4296     }
4297
4298     wined3d_mutex_unlock();
4299
4300     return hr;
4301 }
4302
4303 static HRESULT WINAPI ddraw_surface4_GetPalette(IDirectDrawSurface4 *iface, IDirectDrawPalette **palette)
4304 {
4305     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
4306     TRACE("iface %p, palette %p.\n", iface, palette);
4307
4308     return ddraw_surface7_GetPalette(&This->IDirectDrawSurface7_iface, palette);
4309 }
4310
4311 static HRESULT WINAPI ddraw_surface3_GetPalette(IDirectDrawSurface3 *iface, IDirectDrawPalette **palette)
4312 {
4313     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
4314     TRACE("iface %p, palette %p.\n", iface, palette);
4315
4316     return ddraw_surface7_GetPalette(&This->IDirectDrawSurface7_iface, palette);
4317 }
4318
4319 static HRESULT WINAPI ddraw_surface2_GetPalette(IDirectDrawSurface2 *iface, IDirectDrawPalette **palette)
4320 {
4321     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
4322     TRACE("iface %p, palette %p.\n", iface, palette);
4323
4324     return ddraw_surface7_GetPalette(&This->IDirectDrawSurface7_iface, palette);
4325 }
4326
4327 static HRESULT WINAPI ddraw_surface1_GetPalette(IDirectDrawSurface *iface, IDirectDrawPalette **palette)
4328 {
4329     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
4330     TRACE("iface %p, palette %p.\n", iface, palette);
4331
4332     return ddraw_surface7_GetPalette(&This->IDirectDrawSurface7_iface, palette);
4333 }
4334
4335 /*****************************************************************************
4336  * SetColorKeyEnum
4337  *
4338  * EnumAttachedSurface callback for SetColorKey. Used to set color keys
4339  * recursively in the surface tree
4340  *
4341  *****************************************************************************/
4342 struct SCKContext
4343 {
4344     HRESULT ret;
4345     struct wined3d_color_key *color_key;
4346     DWORD Flags;
4347 };
4348
4349 static HRESULT WINAPI
4350 SetColorKeyEnum(IDirectDrawSurface7 *surface,
4351                 DDSURFACEDESC2 *desc,
4352                 void *context)
4353 {
4354     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(surface);
4355     struct SCKContext *ctx = context;
4356     HRESULT hr;
4357
4358     hr = wined3d_surface_set_color_key(This->wined3d_surface, ctx->Flags, ctx->color_key);
4359     if (FAILED(hr))
4360     {
4361         WARN("IWineD3DSurface_SetColorKey failed, hr = %08x\n", hr);
4362         ctx->ret = hr;
4363     }
4364
4365     ddraw_surface7_EnumAttachedSurfaces(surface, context, SetColorKeyEnum);
4366     ddraw_surface7_Release(surface);
4367
4368     return DDENUMRET_OK;
4369 }
4370
4371 /*****************************************************************************
4372  * IDirectDrawSurface7::SetColorKey
4373  *
4374  * Sets the color keying options for the surface. Observations showed that
4375  * in case of complex surfaces the color key has to be assigned to all
4376  * sublevels.
4377  *
4378  * Params:
4379  *  Flags: DDCKEY_*
4380  *  CKey: The new color key
4381  *
4382  * Returns:
4383  *  DD_OK on success
4384  *  See IWineD3DSurface::SetColorKey for details
4385  *
4386  *****************************************************************************/
4387 static HRESULT WINAPI ddraw_surface7_SetColorKey(IDirectDrawSurface7 *iface, DWORD Flags, DDCOLORKEY *CKey)
4388 {
4389     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
4390     DDCOLORKEY FixedCKey;
4391     struct SCKContext ctx = { DD_OK, (struct wined3d_color_key *)(CKey ? &FixedCKey : NULL), Flags };
4392
4393     TRACE("iface %p, flags %#x, color_key %p.\n", iface, Flags, CKey);
4394
4395     wined3d_mutex_lock();
4396     if (CKey)
4397     {
4398         FixedCKey = *CKey;
4399         /* Handle case where dwColorSpaceHighValue < dwColorSpaceLowValue */
4400         if (FixedCKey.dwColorSpaceHighValue < FixedCKey.dwColorSpaceLowValue)
4401             FixedCKey.dwColorSpaceHighValue = FixedCKey.dwColorSpaceLowValue;
4402
4403         switch (Flags & ~DDCKEY_COLORSPACE)
4404         {
4405         case DDCKEY_DESTBLT:
4406             This->surface_desc.ddckCKDestBlt = FixedCKey;
4407             This->surface_desc.dwFlags |= DDSD_CKDESTBLT;
4408             break;
4409
4410         case DDCKEY_DESTOVERLAY:
4411             This->surface_desc.u3.ddckCKDestOverlay = FixedCKey;
4412             This->surface_desc.dwFlags |= DDSD_CKDESTOVERLAY;
4413             break;
4414
4415         case DDCKEY_SRCOVERLAY:
4416             This->surface_desc.ddckCKSrcOverlay = FixedCKey;
4417             This->surface_desc.dwFlags |= DDSD_CKSRCOVERLAY;
4418             break;
4419
4420         case DDCKEY_SRCBLT:
4421             This->surface_desc.ddckCKSrcBlt = FixedCKey;
4422             This->surface_desc.dwFlags |= DDSD_CKSRCBLT;
4423             break;
4424
4425         default:
4426             wined3d_mutex_unlock();
4427             return DDERR_INVALIDPARAMS;
4428         }
4429     }
4430     else
4431     {
4432         switch (Flags & ~DDCKEY_COLORSPACE)
4433         {
4434         case DDCKEY_DESTBLT:
4435             This->surface_desc.dwFlags &= ~DDSD_CKDESTBLT;
4436             break;
4437
4438         case DDCKEY_DESTOVERLAY:
4439             This->surface_desc.dwFlags &= ~DDSD_CKDESTOVERLAY;
4440             break;
4441
4442         case DDCKEY_SRCOVERLAY:
4443             This->surface_desc.dwFlags &= ~DDSD_CKSRCOVERLAY;
4444             break;
4445
4446         case DDCKEY_SRCBLT:
4447             This->surface_desc.dwFlags &= ~DDSD_CKSRCBLT;
4448             break;
4449
4450         default:
4451             wined3d_mutex_unlock();
4452             return DDERR_INVALIDPARAMS;
4453         }
4454     }
4455     ctx.ret = wined3d_surface_set_color_key(This->wined3d_surface, Flags, ctx.color_key);
4456     ddraw_surface7_EnumAttachedSurfaces(iface, &ctx, SetColorKeyEnum);
4457     wined3d_mutex_unlock();
4458
4459     switch(ctx.ret)
4460     {
4461         case WINED3DERR_INVALIDCALL:        return DDERR_INVALIDPARAMS;
4462         default:                            return ctx.ret;
4463     }
4464 }
4465
4466 static HRESULT WINAPI ddraw_surface4_SetColorKey(IDirectDrawSurface4 *iface, DWORD flags, DDCOLORKEY *color_key)
4467 {
4468     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
4469     TRACE("iface %p, flags %#x, color_key %p.\n", iface, flags, color_key);
4470
4471     return ddraw_surface7_SetColorKey(&This->IDirectDrawSurface7_iface, flags, color_key);
4472 }
4473
4474 static HRESULT WINAPI ddraw_surface3_SetColorKey(IDirectDrawSurface3 *iface, DWORD flags, DDCOLORKEY *color_key)
4475 {
4476     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
4477     TRACE("iface %p, flags %#x, color_key %p.\n", iface, flags, color_key);
4478
4479     return ddraw_surface7_SetColorKey(&This->IDirectDrawSurface7_iface, flags, color_key);
4480 }
4481
4482 static HRESULT WINAPI ddraw_surface2_SetColorKey(IDirectDrawSurface2 *iface, DWORD flags, DDCOLORKEY *color_key)
4483 {
4484     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
4485     TRACE("iface %p, flags %#x, color_key %p.\n", iface, flags, color_key);
4486
4487     return ddraw_surface7_SetColorKey(&This->IDirectDrawSurface7_iface, flags, color_key);
4488 }
4489
4490 static HRESULT WINAPI ddraw_surface1_SetColorKey(IDirectDrawSurface *iface, DWORD flags, DDCOLORKEY *color_key)
4491 {
4492     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
4493     TRACE("iface %p, flags %#x, color_key %p.\n", iface, flags, color_key);
4494
4495     return ddraw_surface7_SetColorKey(&This->IDirectDrawSurface7_iface, flags, color_key);
4496 }
4497
4498 /*****************************************************************************
4499  * IDirectDrawSurface7::SetPalette
4500  *
4501  * Assigns a DirectDrawPalette object to the surface
4502  *
4503  * Params:
4504  *  Pal: Interface to the palette to set
4505  *
4506  * Returns:
4507  *  DD_OK on success
4508  *
4509  *****************************************************************************/
4510 static HRESULT WINAPI ddraw_surface7_SetPalette(IDirectDrawSurface7 *iface, IDirectDrawPalette *Pal)
4511 {
4512     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface7(iface);
4513     IDirectDrawPalette *oldPal;
4514     IDirectDrawSurfaceImpl *surf;
4515     IDirectDrawPaletteImpl *PalImpl = unsafe_impl_from_IDirectDrawPalette(Pal);
4516     HRESULT hr;
4517
4518     TRACE("iface %p, palette %p.\n", iface, Pal);
4519
4520     if (!(This->surface_desc.u4.ddpfPixelFormat.dwFlags & (DDPF_PALETTEINDEXED1 | DDPF_PALETTEINDEXED2 |
4521             DDPF_PALETTEINDEXED4 | DDPF_PALETTEINDEXED8 | DDPF_PALETTEINDEXEDTO8))) {
4522         return DDERR_INVALIDPIXELFORMAT;
4523     }
4524
4525     if (This->surface_desc.ddsCaps.dwCaps2 & DDSCAPS2_MIPMAPSUBLEVEL)
4526     {
4527         return DDERR_NOTONMIPMAPSUBLEVEL;
4528     }
4529
4530     /* Find the old palette */
4531     wined3d_mutex_lock();
4532     hr = IDirectDrawSurface_GetPalette(iface, &oldPal);
4533     if(hr != DD_OK && hr != DDERR_NOPALETTEATTACHED)
4534     {
4535         wined3d_mutex_unlock();
4536         return hr;
4537     }
4538     if(oldPal) IDirectDrawPalette_Release(oldPal);  /* For the GetPalette */
4539
4540     /* Set the new Palette */
4541     wined3d_surface_set_palette(This->wined3d_surface, PalImpl ? PalImpl->wineD3DPalette : NULL);
4542     /* AddRef the Palette */
4543     if(Pal) IDirectDrawPalette_AddRef(Pal);
4544
4545     /* Release the old palette */
4546     if(oldPal) IDirectDrawPalette_Release(oldPal);
4547
4548     /* Update the wined3d frontbuffer if this is the frontbuffer. */
4549     if ((This->surface_desc.ddsCaps.dwCaps & DDSCAPS_FRONTBUFFER) && This->ddraw->wined3d_frontbuffer)
4550     {
4551         hr = wined3d_surface_set_palette(This->ddraw->wined3d_frontbuffer, PalImpl ? PalImpl->wineD3DPalette : NULL);
4552         if (FAILED(hr))
4553             ERR("Failed to set frontbuffer palette, hr %#x.\n", hr);
4554     }
4555
4556     /* If this is a front buffer, also update the back buffers
4557      * TODO: How do things work for palettized cube textures?
4558      */
4559     if(This->surface_desc.ddsCaps.dwCaps & DDSCAPS_FRONTBUFFER)
4560     {
4561         /* For primary surfaces the tree is just a list, so the simpler scheme fits too */
4562         DDSCAPS2 caps2 = { DDSCAPS_PRIMARYSURFACE, 0, 0, 0 };
4563
4564         surf = This;
4565         while(1)
4566         {
4567             IDirectDrawSurface7 *attach;
4568             HRESULT hr;
4569             hr = ddraw_surface7_GetAttachedSurface(&surf->IDirectDrawSurface7_iface, &caps2, &attach);
4570             if(hr != DD_OK)
4571             {
4572                 break;
4573             }
4574
4575             TRACE("Setting palette on %p\n", attach);
4576             ddraw_surface7_SetPalette(attach, Pal);
4577             surf = impl_from_IDirectDrawSurface7(attach);
4578             ddraw_surface7_Release(attach);
4579         }
4580     }
4581
4582     wined3d_mutex_unlock();
4583
4584     return DD_OK;
4585 }
4586
4587 static HRESULT WINAPI ddraw_surface4_SetPalette(IDirectDrawSurface4 *iface, IDirectDrawPalette *palette)
4588 {
4589     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface4(iface);
4590     TRACE("iface %p, palette %p.\n", iface, palette);
4591
4592     return ddraw_surface7_SetPalette(&This->IDirectDrawSurface7_iface, palette);
4593 }
4594
4595 static HRESULT WINAPI ddraw_surface3_SetPalette(IDirectDrawSurface3 *iface, IDirectDrawPalette *palette)
4596 {
4597     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
4598     TRACE("iface %p, palette %p.\n", iface, palette);
4599
4600     return ddraw_surface7_SetPalette(&This->IDirectDrawSurface7_iface, palette);
4601 }
4602
4603 static HRESULT WINAPI ddraw_surface2_SetPalette(IDirectDrawSurface2 *iface, IDirectDrawPalette *palette)
4604 {
4605     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface2(iface);
4606     TRACE("iface %p, palette %p.\n", iface, palette);
4607
4608     return ddraw_surface7_SetPalette(&This->IDirectDrawSurface7_iface, palette);
4609 }
4610
4611 static HRESULT WINAPI ddraw_surface1_SetPalette(IDirectDrawSurface *iface, IDirectDrawPalette *palette)
4612 {
4613     IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface(iface);
4614     TRACE("iface %p, palette %p.\n", iface, palette);
4615
4616     return ddraw_surface7_SetPalette(&This->IDirectDrawSurface7_iface, palette);
4617 }
4618
4619 /**********************************************************
4620  * IDirectDrawGammaControl::GetGammaRamp
4621  *
4622  * Returns the current gamma ramp for a surface
4623  *
4624  * Params:
4625  *  flags: Ignored
4626  *  gamma_ramp: Address to write the ramp to
4627  *
4628  * Returns:
4629  *  DD_OK on success
4630  *  DDERR_INVALIDPARAMS if gamma_ramp is NULL
4631  *
4632  **********************************************************/
4633 static HRESULT WINAPI ddraw_gamma_control_GetGammaRamp(IDirectDrawGammaControl *iface,
4634         DWORD flags, DDGAMMARAMP *gamma_ramp)
4635 {
4636     IDirectDrawSurfaceImpl *surface = impl_from_IDirectDrawGammaControl(iface);
4637
4638     TRACE("iface %p, flags %#x, gamma_ramp %p.\n", iface, flags, gamma_ramp);
4639
4640     if (!gamma_ramp)
4641     {
4642         WARN("Invalid gamma_ramp passed.\n");
4643         return DDERR_INVALIDPARAMS;
4644     }
4645
4646     wined3d_mutex_lock();
4647     if (surface->surface_desc.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE)
4648     {
4649         /* Note: DDGAMMARAMP is compatible with struct wined3d_gamma_ramp. */
4650         wined3d_device_get_gamma_ramp(surface->ddraw->wined3d_device, 0, (struct wined3d_gamma_ramp *)gamma_ramp);
4651     }
4652     else
4653     {
4654         ERR("Not implemented for non-primary surfaces.\n");
4655     }
4656     wined3d_mutex_unlock();
4657
4658     return DD_OK;
4659 }
4660
4661 /**********************************************************
4662  * IDirectDrawGammaControl::SetGammaRamp
4663  *
4664  * Sets the red, green and blue gamma ramps for
4665  *
4666  * Params:
4667  *  flags: Can be DDSGR_CALIBRATE to request calibration
4668  *  gamma_ramp: Structure containing the new gamma ramp
4669  *
4670  * Returns:
4671  *  DD_OK on success
4672  *  DDERR_INVALIDPARAMS if gamma_ramp is NULL
4673  *
4674  **********************************************************/
4675 static HRESULT WINAPI ddraw_gamma_control_SetGammaRamp(IDirectDrawGammaControl *iface,
4676         DWORD flags, DDGAMMARAMP *gamma_ramp)
4677 {
4678     IDirectDrawSurfaceImpl *surface = impl_from_IDirectDrawGammaControl(iface);
4679
4680     TRACE("iface %p, flags %#x, gamma_ramp %p.\n", iface, flags, gamma_ramp);
4681
4682     if (!gamma_ramp)
4683     {
4684         WARN("Invalid gamma_ramp passed.\n");
4685         return DDERR_INVALIDPARAMS;
4686     }
4687
4688     wined3d_mutex_lock();
4689     if (surface->surface_desc.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE)
4690     {
4691         /* Note: DDGAMMARAMP is compatible with struct wined3d_gamma_ramp. */
4692         wined3d_device_set_gamma_ramp(surface->ddraw->wined3d_device,
4693                 0, flags, (struct wined3d_gamma_ramp *)gamma_ramp);
4694     }
4695     else
4696     {
4697         ERR("Not implemented for non-primary surfaces.\n");
4698     }
4699     wined3d_mutex_unlock();
4700
4701     return DD_OK;
4702 }
4703
4704 /*****************************************************************************
4705  * IDirect3DTexture2::PaletteChanged
4706  *
4707  * Informs the texture about a palette change
4708  *
4709  * Params:
4710  *  start: Start index of the change
4711  *  count: The number of changed entries
4712  *
4713  * Returns
4714  *  D3D_OK, because it's a stub
4715  *
4716  *****************************************************************************/
4717 static HRESULT WINAPI d3d_texture2_PaletteChanged(IDirect3DTexture2 *iface, DWORD start, DWORD count)
4718 {
4719     FIXME("iface %p, start %u, count %u stub!\n", iface, start, count);
4720
4721     return D3D_OK;
4722 }
4723
4724 static HRESULT WINAPI d3d_texture1_PaletteChanged(IDirect3DTexture *iface, DWORD start, DWORD count)
4725 {
4726     IDirectDrawSurfaceImpl *surface = impl_from_IDirect3DTexture(iface);
4727
4728     TRACE("iface %p, start %u, count %u.\n", iface, start, count);
4729
4730     return d3d_texture2_PaletteChanged(&surface->IDirect3DTexture2_iface, start, count);
4731 }
4732
4733 /*****************************************************************************
4734  * IDirect3DTexture::Unload
4735  *
4736  * DX5 SDK: "The IDirect3DTexture2::Unload method is not implemented
4737  *
4738  *
4739  * Returns:
4740  *  DDERR_UNSUPPORTED
4741  *
4742  *****************************************************************************/
4743 static HRESULT WINAPI d3d_texture1_Unload(IDirect3DTexture *iface)
4744 {
4745     WARN("iface %p. Not implemented.\n", iface);
4746
4747     return DDERR_UNSUPPORTED;
4748 }
4749
4750 /*****************************************************************************
4751  * IDirect3DTexture2::GetHandle
4752  *
4753  * Returns handle for the texture. At the moment, the interface
4754  * to the IWineD3DTexture is used.
4755  *
4756  * Params:
4757  *  device: Device this handle is assigned to
4758  *  handle: Address to store the handle at.
4759  *
4760  * Returns:
4761  *  D3D_OK
4762  *
4763  *****************************************************************************/
4764 static HRESULT WINAPI d3d_texture2_GetHandle(IDirect3DTexture2 *iface,
4765         IDirect3DDevice2 *device, D3DTEXTUREHANDLE *handle)
4766 {
4767     IDirectDrawSurfaceImpl *surface = impl_from_IDirect3DTexture2(iface);
4768     IDirect3DDeviceImpl *device_impl = unsafe_impl_from_IDirect3DDevice2(device);
4769
4770     TRACE("iface %p, device %p, handle %p.\n", iface, device, handle);
4771
4772     wined3d_mutex_lock();
4773
4774     if (!surface->Handle)
4775     {
4776         DWORD h = ddraw_allocate_handle(&device_impl->handle_table, surface, DDRAW_HANDLE_SURFACE);
4777         if (h == DDRAW_INVALID_HANDLE)
4778         {
4779             ERR("Failed to allocate a texture handle.\n");
4780             wined3d_mutex_unlock();
4781             return DDERR_OUTOFMEMORY;
4782         }
4783
4784         surface->Handle = h + 1;
4785     }
4786
4787     TRACE("Returning handle %08x.\n", surface->Handle);
4788     *handle = surface->Handle;
4789
4790     wined3d_mutex_unlock();
4791
4792     return D3D_OK;
4793 }
4794
4795 static HRESULT WINAPI d3d_texture1_GetHandle(IDirect3DTexture *iface,
4796         IDirect3DDevice *device, D3DTEXTUREHANDLE *handle)
4797 {
4798     IDirectDrawSurfaceImpl *This = impl_from_IDirect3DTexture(iface);
4799     IDirect3DDeviceImpl *device_impl = unsafe_impl_from_IDirect3DDevice(device);
4800
4801     TRACE("iface %p, device %p, handle %p.\n", iface, device, handle);
4802
4803     return d3d_texture2_GetHandle(&This->IDirect3DTexture2_iface,
4804             device_impl ? &device_impl->IDirect3DDevice2_iface : NULL, handle);
4805 }
4806
4807 /*****************************************************************************
4808  * get_sub_mimaplevel
4809  *
4810  * Helper function that returns the next mipmap level
4811  *
4812  * tex_ptr: Surface of which to return the next level
4813  *
4814  *****************************************************************************/
4815 static IDirectDrawSurfaceImpl *get_sub_mimaplevel(IDirectDrawSurfaceImpl *surface)
4816 {
4817     /* Now go down the mipmap chain to the next surface */
4818     static DDSCAPS2 mipmap_caps = { DDSCAPS_MIPMAP | DDSCAPS_TEXTURE, 0, 0, 0 };
4819     IDirectDrawSurface7 *next_level;
4820     HRESULT hr;
4821
4822     hr = ddraw_surface7_GetAttachedSurface(&surface->IDirectDrawSurface7_iface, &mipmap_caps, &next_level);
4823     if (FAILED(hr)) return NULL;
4824
4825     ddraw_surface7_Release(next_level);
4826
4827     return impl_from_IDirectDrawSurface7(next_level);
4828 }
4829
4830 /*****************************************************************************
4831  * IDirect3DTexture2::Load
4832  *
4833  * Loads a texture created with the DDSCAPS_ALLOCONLOAD
4834  *
4835  * This function isn't relayed to WineD3D because the whole interface is
4836  * implemented in DDraw only. For speed improvements a implementation which
4837  * takes OpenGL more into account could be placed into WineD3D.
4838  *
4839  * Params:
4840  *  src_texture: Address of the texture to load
4841  *
4842  * Returns:
4843  *  D3D_OK on success
4844  *  D3DERR_TEXTURE_LOAD_FAILED.
4845  *
4846  *****************************************************************************/
4847 static HRESULT WINAPI d3d_texture2_Load(IDirect3DTexture2 *iface, IDirect3DTexture2 *src_texture)
4848 {
4849     IDirectDrawSurfaceImpl *dst_surface = impl_from_IDirect3DTexture2(iface);
4850     IDirectDrawSurfaceImpl *src_surface = unsafe_impl_from_IDirect3DTexture2(src_texture);
4851     HRESULT hr;
4852
4853     TRACE("iface %p, src_texture %p.\n", iface, src_texture);
4854
4855     if (src_surface == dst_surface)
4856     {
4857         TRACE("copying surface %p to surface %p, why?\n", src_surface, dst_surface);
4858         return D3D_OK;
4859     }
4860
4861     wined3d_mutex_lock();
4862
4863     if (((src_surface->surface_desc.ddsCaps.dwCaps & DDSCAPS_MIPMAP)
4864             != (dst_surface->surface_desc.ddsCaps.dwCaps & DDSCAPS_MIPMAP))
4865             || (src_surface->surface_desc.u2.dwMipMapCount != dst_surface->surface_desc.u2.dwMipMapCount))
4866     {
4867         ERR("Trying to load surfaces with different mip-map counts.\n");
4868     }
4869
4870     for (;;)
4871     {
4872         struct wined3d_palette *wined3d_dst_pal, *wined3d_src_pal;
4873         IDirectDrawPalette *dst_pal = NULL, *src_pal = NULL;
4874         DDSURFACEDESC *src_desc, *dst_desc;
4875
4876         TRACE("Copying surface %p to surface %p (mipmap level %d).\n",
4877                 src_surface, dst_surface, src_surface->mipmap_level);
4878
4879         /* Suppress the ALLOCONLOAD flag */
4880         dst_surface->surface_desc.ddsCaps.dwCaps &= ~DDSCAPS_ALLOCONLOAD;
4881
4882         /* Get the palettes */
4883         wined3d_dst_pal = wined3d_surface_get_palette(dst_surface->wined3d_surface);
4884         if (wined3d_dst_pal)
4885             dst_pal = wined3d_palette_get_parent(wined3d_dst_pal);
4886
4887         wined3d_src_pal = wined3d_surface_get_palette(src_surface->wined3d_surface);
4888         if (wined3d_src_pal)
4889             src_pal = wined3d_palette_get_parent(wined3d_src_pal);
4890
4891         if (src_pal)
4892         {
4893             PALETTEENTRY palent[256];
4894
4895             if (!dst_pal)
4896             {
4897                 wined3d_mutex_unlock();
4898                 return DDERR_NOPALETTEATTACHED;
4899             }
4900             IDirectDrawPalette_GetEntries(src_pal, 0, 0, 256, palent);
4901             IDirectDrawPalette_SetEntries(dst_pal, 0, 0, 256, palent);
4902         }
4903
4904         /* Copy one surface on the other */
4905         dst_desc = (DDSURFACEDESC *)&(dst_surface->surface_desc);
4906         src_desc = (DDSURFACEDESC *)&(src_surface->surface_desc);
4907
4908         if ((src_desc->dwWidth != dst_desc->dwWidth) || (src_desc->dwHeight != dst_desc->dwHeight))
4909         {
4910             /* Should also check for same pixel format, u1.lPitch, ... */
4911             ERR("Error in surface sizes.\n");
4912             wined3d_mutex_unlock();
4913             return D3DERR_TEXTURE_LOAD_FAILED;
4914         }
4915         else
4916         {
4917             struct wined3d_mapped_rect src_rect, dst_rect;
4918
4919             /* Copy also the ColorKeying stuff */
4920             if (src_desc->dwFlags & DDSD_CKSRCBLT)
4921             {
4922                 dst_desc->dwFlags |= DDSD_CKSRCBLT;
4923                 dst_desc->ddckCKSrcBlt.dwColorSpaceLowValue = src_desc->ddckCKSrcBlt.dwColorSpaceLowValue;
4924                 dst_desc->ddckCKSrcBlt.dwColorSpaceHighValue = src_desc->ddckCKSrcBlt.dwColorSpaceHighValue;
4925             }
4926
4927             /* Copy the main memory texture into the surface that corresponds
4928              * to the OpenGL texture object. */
4929
4930             hr = wined3d_surface_map(src_surface->wined3d_surface, &src_rect, NULL, 0);
4931             if (FAILED(hr))
4932             {
4933                 ERR("Failed to lock source surface, hr %#x.\n", hr);
4934                 wined3d_mutex_unlock();
4935                 return D3DERR_TEXTURE_LOAD_FAILED;
4936             }
4937
4938             hr = wined3d_surface_map(dst_surface->wined3d_surface, &dst_rect, NULL, 0);
4939             if (FAILED(hr))
4940             {
4941                 ERR("Failed to lock destination surface, hr %#x.\n", hr);
4942                 wined3d_surface_unmap(src_surface->wined3d_surface);
4943                 wined3d_mutex_unlock();
4944                 return D3DERR_TEXTURE_LOAD_FAILED;
4945             }
4946
4947             if (dst_surface->surface_desc.u4.ddpfPixelFormat.dwFlags & DDPF_FOURCC)
4948                 memcpy(dst_rect.data, src_rect.data, src_surface->surface_desc.u1.dwLinearSize);
4949             else
4950                 memcpy(dst_rect.data, src_rect.data, src_rect.row_pitch * src_desc->dwHeight);
4951
4952             wined3d_surface_unmap(src_surface->wined3d_surface);
4953             wined3d_surface_unmap(dst_surface->wined3d_surface);
4954         }
4955
4956         if (src_surface->surface_desc.ddsCaps.dwCaps & DDSCAPS_MIPMAP)
4957             src_surface = get_sub_mimaplevel(src_surface);
4958         else
4959             src_surface = NULL;
4960
4961         if (dst_surface->surface_desc.ddsCaps.dwCaps & DDSCAPS_MIPMAP)
4962             dst_surface = get_sub_mimaplevel(dst_surface);
4963         else
4964             dst_surface = NULL;
4965
4966         if (!src_surface || !dst_surface)
4967         {
4968             if (src_surface != dst_surface)
4969                 ERR("Loading surface with different mipmap structure.\n");
4970             break;
4971         }
4972     }
4973
4974     wined3d_mutex_unlock();
4975
4976     return hr;
4977 }
4978
4979 static HRESULT WINAPI d3d_texture1_Load(IDirect3DTexture *iface, IDirect3DTexture *src_texture)
4980 {
4981     IDirectDrawSurfaceImpl* This = impl_from_IDirect3DTexture(iface);
4982     IDirectDrawSurfaceImpl* src_surface = unsafe_impl_from_IDirect3DTexture(src_texture);
4983     TRACE("iface %p, src_texture %p.\n", iface, src_texture);
4984
4985     return d3d_texture2_Load(&This->IDirect3DTexture2_iface,
4986             src_surface ? &src_surface->IDirect3DTexture2_iface : NULL);
4987 }
4988
4989 /*****************************************************************************
4990  * The VTable
4991  *****************************************************************************/
4992
4993 static const struct IDirectDrawSurface7Vtbl ddraw_surface7_vtbl =
4994 {
4995     /* IUnknown */
4996     ddraw_surface7_QueryInterface,
4997     ddraw_surface7_AddRef,
4998     ddraw_surface7_Release,
4999     /* IDirectDrawSurface */
5000     ddraw_surface7_AddAttachedSurface,
5001     ddraw_surface7_AddOverlayDirtyRect,
5002     ddraw_surface7_Blt,
5003     ddraw_surface7_BltBatch,
5004     ddraw_surface7_BltFast,
5005     ddraw_surface7_DeleteAttachedSurface,
5006     ddraw_surface7_EnumAttachedSurfaces,
5007     ddraw_surface7_EnumOverlayZOrders,
5008     ddraw_surface7_Flip,
5009     ddraw_surface7_GetAttachedSurface,
5010     ddraw_surface7_GetBltStatus,
5011     ddraw_surface7_GetCaps,
5012     ddraw_surface7_GetClipper,
5013     ddraw_surface7_GetColorKey,
5014     ddraw_surface7_GetDC,
5015     ddraw_surface7_GetFlipStatus,
5016     ddraw_surface7_GetOverlayPosition,
5017     ddraw_surface7_GetPalette,
5018     ddraw_surface7_GetPixelFormat,
5019     ddraw_surface7_GetSurfaceDesc,
5020     ddraw_surface7_Initialize,
5021     ddraw_surface7_IsLost,
5022     ddraw_surface7_Lock,
5023     ddraw_surface7_ReleaseDC,
5024     ddraw_surface7_Restore,
5025     ddraw_surface7_SetClipper,
5026     ddraw_surface7_SetColorKey,
5027     ddraw_surface7_SetOverlayPosition,
5028     ddraw_surface7_SetPalette,
5029     ddraw_surface7_Unlock,
5030     ddraw_surface7_UpdateOverlay,
5031     ddraw_surface7_UpdateOverlayDisplay,
5032     ddraw_surface7_UpdateOverlayZOrder,
5033     /* IDirectDrawSurface2 */
5034     ddraw_surface7_GetDDInterface,
5035     ddraw_surface7_PageLock,
5036     ddraw_surface7_PageUnlock,
5037     /* IDirectDrawSurface3 */
5038     ddraw_surface7_SetSurfaceDesc,
5039     /* IDirectDrawSurface4 */
5040     ddraw_surface7_SetPrivateData,
5041     ddraw_surface7_GetPrivateData,
5042     ddraw_surface7_FreePrivateData,
5043     ddraw_surface7_GetUniquenessValue,
5044     ddraw_surface7_ChangeUniquenessValue,
5045     /* IDirectDrawSurface7 */
5046     ddraw_surface7_SetPriority,
5047     ddraw_surface7_GetPriority,
5048     ddraw_surface7_SetLOD,
5049     ddraw_surface7_GetLOD,
5050 };
5051
5052 static const struct IDirectDrawSurface4Vtbl ddraw_surface4_vtbl =
5053 {
5054     /* IUnknown */
5055     ddraw_surface4_QueryInterface,
5056     ddraw_surface4_AddRef,
5057     ddraw_surface4_Release,
5058     /* IDirectDrawSurface */
5059     ddraw_surface4_AddAttachedSurface,
5060     ddraw_surface4_AddOverlayDirtyRect,
5061     ddraw_surface4_Blt,
5062     ddraw_surface4_BltBatch,
5063     ddraw_surface4_BltFast,
5064     ddraw_surface4_DeleteAttachedSurface,
5065     ddraw_surface4_EnumAttachedSurfaces,
5066     ddraw_surface4_EnumOverlayZOrders,
5067     ddraw_surface4_Flip,
5068     ddraw_surface4_GetAttachedSurface,
5069     ddraw_surface4_GetBltStatus,
5070     ddraw_surface4_GetCaps,
5071     ddraw_surface4_GetClipper,
5072     ddraw_surface4_GetColorKey,
5073     ddraw_surface4_GetDC,
5074     ddraw_surface4_GetFlipStatus,
5075     ddraw_surface4_GetOverlayPosition,
5076     ddraw_surface4_GetPalette,
5077     ddraw_surface4_GetPixelFormat,
5078     ddraw_surface4_GetSurfaceDesc,
5079     ddraw_surface4_Initialize,
5080     ddraw_surface4_IsLost,
5081     ddraw_surface4_Lock,
5082     ddraw_surface4_ReleaseDC,
5083     ddraw_surface4_Restore,
5084     ddraw_surface4_SetClipper,
5085     ddraw_surface4_SetColorKey,
5086     ddraw_surface4_SetOverlayPosition,
5087     ddraw_surface4_SetPalette,
5088     ddraw_surface4_Unlock,
5089     ddraw_surface4_UpdateOverlay,
5090     ddraw_surface4_UpdateOverlayDisplay,
5091     ddraw_surface4_UpdateOverlayZOrder,
5092     /* IDirectDrawSurface2 */
5093     ddraw_surface4_GetDDInterface,
5094     ddraw_surface4_PageLock,
5095     ddraw_surface4_PageUnlock,
5096     /* IDirectDrawSurface3 */
5097     ddraw_surface4_SetSurfaceDesc,
5098     /* IDirectDrawSurface4 */
5099     ddraw_surface4_SetPrivateData,
5100     ddraw_surface4_GetPrivateData,
5101     ddraw_surface4_FreePrivateData,
5102     ddraw_surface4_GetUniquenessValue,
5103     ddraw_surface4_ChangeUniquenessValue,
5104 };
5105
5106 static const struct IDirectDrawSurface3Vtbl ddraw_surface3_vtbl =
5107 {
5108     /* IUnknown */
5109     ddraw_surface3_QueryInterface,
5110     ddraw_surface3_AddRef,
5111     ddraw_surface3_Release,
5112     /* IDirectDrawSurface */
5113     ddraw_surface3_AddAttachedSurface,
5114     ddraw_surface3_AddOverlayDirtyRect,
5115     ddraw_surface3_Blt,
5116     ddraw_surface3_BltBatch,
5117     ddraw_surface3_BltFast,
5118     ddraw_surface3_DeleteAttachedSurface,
5119     ddraw_surface3_EnumAttachedSurfaces,
5120     ddraw_surface3_EnumOverlayZOrders,
5121     ddraw_surface3_Flip,
5122     ddraw_surface3_GetAttachedSurface,
5123     ddraw_surface3_GetBltStatus,
5124     ddraw_surface3_GetCaps,
5125     ddraw_surface3_GetClipper,
5126     ddraw_surface3_GetColorKey,
5127     ddraw_surface3_GetDC,
5128     ddraw_surface3_GetFlipStatus,
5129     ddraw_surface3_GetOverlayPosition,
5130     ddraw_surface3_GetPalette,
5131     ddraw_surface3_GetPixelFormat,
5132     ddraw_surface3_GetSurfaceDesc,
5133     ddraw_surface3_Initialize,
5134     ddraw_surface3_IsLost,
5135     ddraw_surface3_Lock,
5136     ddraw_surface3_ReleaseDC,
5137     ddraw_surface3_Restore,
5138     ddraw_surface3_SetClipper,
5139     ddraw_surface3_SetColorKey,
5140     ddraw_surface3_SetOverlayPosition,
5141     ddraw_surface3_SetPalette,
5142     ddraw_surface3_Unlock,
5143     ddraw_surface3_UpdateOverlay,
5144     ddraw_surface3_UpdateOverlayDisplay,
5145     ddraw_surface3_UpdateOverlayZOrder,
5146     /* IDirectDrawSurface2 */
5147     ddraw_surface3_GetDDInterface,
5148     ddraw_surface3_PageLock,
5149     ddraw_surface3_PageUnlock,
5150     /* IDirectDrawSurface3 */
5151     ddraw_surface3_SetSurfaceDesc,
5152 };
5153
5154 static const struct IDirectDrawSurface2Vtbl ddraw_surface2_vtbl =
5155 {
5156     /* IUnknown */
5157     ddraw_surface2_QueryInterface,
5158     ddraw_surface2_AddRef,
5159     ddraw_surface2_Release,
5160     /* IDirectDrawSurface */
5161     ddraw_surface2_AddAttachedSurface,
5162     ddraw_surface2_AddOverlayDirtyRect,
5163     ddraw_surface2_Blt,
5164     ddraw_surface2_BltBatch,
5165     ddraw_surface2_BltFast,
5166     ddraw_surface2_DeleteAttachedSurface,
5167     ddraw_surface2_EnumAttachedSurfaces,
5168     ddraw_surface2_EnumOverlayZOrders,
5169     ddraw_surface2_Flip,
5170     ddraw_surface2_GetAttachedSurface,
5171     ddraw_surface2_GetBltStatus,
5172     ddraw_surface2_GetCaps,
5173     ddraw_surface2_GetClipper,
5174     ddraw_surface2_GetColorKey,
5175     ddraw_surface2_GetDC,
5176     ddraw_surface2_GetFlipStatus,
5177     ddraw_surface2_GetOverlayPosition,
5178     ddraw_surface2_GetPalette,
5179     ddraw_surface2_GetPixelFormat,
5180     ddraw_surface2_GetSurfaceDesc,
5181     ddraw_surface2_Initialize,
5182     ddraw_surface2_IsLost,
5183     ddraw_surface2_Lock,
5184     ddraw_surface2_ReleaseDC,
5185     ddraw_surface2_Restore,
5186     ddraw_surface2_SetClipper,
5187     ddraw_surface2_SetColorKey,
5188     ddraw_surface2_SetOverlayPosition,
5189     ddraw_surface2_SetPalette,
5190     ddraw_surface2_Unlock,
5191     ddraw_surface2_UpdateOverlay,
5192     ddraw_surface2_UpdateOverlayDisplay,
5193     ddraw_surface2_UpdateOverlayZOrder,
5194     /* IDirectDrawSurface2 */
5195     ddraw_surface2_GetDDInterface,
5196     ddraw_surface2_PageLock,
5197     ddraw_surface2_PageUnlock,
5198 };
5199
5200 static const struct IDirectDrawSurfaceVtbl ddraw_surface1_vtbl =
5201 {
5202     /* IUnknown */
5203     ddraw_surface1_QueryInterface,
5204     ddraw_surface1_AddRef,
5205     ddraw_surface1_Release,
5206     /* IDirectDrawSurface */
5207     ddraw_surface1_AddAttachedSurface,
5208     ddraw_surface1_AddOverlayDirtyRect,
5209     ddraw_surface1_Blt,
5210     ddraw_surface1_BltBatch,
5211     ddraw_surface1_BltFast,
5212     ddraw_surface1_DeleteAttachedSurface,
5213     ddraw_surface1_EnumAttachedSurfaces,
5214     ddraw_surface1_EnumOverlayZOrders,
5215     ddraw_surface1_Flip,
5216     ddraw_surface1_GetAttachedSurface,
5217     ddraw_surface1_GetBltStatus,
5218     ddraw_surface1_GetCaps,
5219     ddraw_surface1_GetClipper,
5220     ddraw_surface1_GetColorKey,
5221     ddraw_surface1_GetDC,
5222     ddraw_surface1_GetFlipStatus,
5223     ddraw_surface1_GetOverlayPosition,
5224     ddraw_surface1_GetPalette,
5225     ddraw_surface1_GetPixelFormat,
5226     ddraw_surface1_GetSurfaceDesc,
5227     ddraw_surface1_Initialize,
5228     ddraw_surface1_IsLost,
5229     ddraw_surface1_Lock,
5230     ddraw_surface1_ReleaseDC,
5231     ddraw_surface1_Restore,
5232     ddraw_surface1_SetClipper,
5233     ddraw_surface1_SetColorKey,
5234     ddraw_surface1_SetOverlayPosition,
5235     ddraw_surface1_SetPalette,
5236     ddraw_surface1_Unlock,
5237     ddraw_surface1_UpdateOverlay,
5238     ddraw_surface1_UpdateOverlayDisplay,
5239     ddraw_surface1_UpdateOverlayZOrder,
5240 };
5241
5242 static const struct IDirectDrawGammaControlVtbl ddraw_gamma_control_vtbl =
5243 {
5244     ddraw_gamma_control_QueryInterface,
5245     ddraw_gamma_control_AddRef,
5246     ddraw_gamma_control_Release,
5247     ddraw_gamma_control_GetGammaRamp,
5248     ddraw_gamma_control_SetGammaRamp,
5249 };
5250
5251 static const struct IDirect3DTexture2Vtbl d3d_texture2_vtbl =
5252 {
5253     d3d_texture2_QueryInterface,
5254     d3d_texture2_AddRef,
5255     d3d_texture2_Release,
5256     d3d_texture2_GetHandle,
5257     d3d_texture2_PaletteChanged,
5258     d3d_texture2_Load,
5259 };
5260
5261 static const struct IDirect3DTextureVtbl d3d_texture1_vtbl =
5262 {
5263     d3d_texture1_QueryInterface,
5264     d3d_texture1_AddRef,
5265     d3d_texture1_Release,
5266     d3d_texture1_Initialize,
5267     d3d_texture1_GetHandle,
5268     d3d_texture1_PaletteChanged,
5269     d3d_texture1_Load,
5270     d3d_texture1_Unload,
5271 };
5272
5273 IDirectDrawSurfaceImpl *unsafe_impl_from_IDirectDrawSurface7(IDirectDrawSurface7 *iface)
5274 {
5275     if (!iface) return NULL;
5276     assert(iface->lpVtbl == &ddraw_surface7_vtbl);
5277     return CONTAINING_RECORD(iface, IDirectDrawSurfaceImpl, IDirectDrawSurface7_iface);
5278 }
5279
5280 IDirectDrawSurfaceImpl *unsafe_impl_from_IDirectDrawSurface4(IDirectDrawSurface4 *iface)
5281 {
5282     if (!iface) return NULL;
5283     assert(iface->lpVtbl == &ddraw_surface4_vtbl);
5284     return CONTAINING_RECORD(iface, IDirectDrawSurfaceImpl, IDirectDrawSurface4_iface);
5285 }
5286
5287 static IDirectDrawSurfaceImpl *unsafe_impl_from_IDirectDrawSurface3(IDirectDrawSurface3 *iface)
5288 {
5289     if (!iface) return NULL;
5290     assert(iface->lpVtbl == &ddraw_surface3_vtbl);
5291     return CONTAINING_RECORD(iface, IDirectDrawSurfaceImpl, IDirectDrawSurface3_iface);
5292 }
5293
5294 static IDirectDrawSurfaceImpl *unsafe_impl_from_IDirectDrawSurface2(IDirectDrawSurface2 *iface)
5295 {
5296     if (!iface) return NULL;
5297     assert(iface->lpVtbl == &ddraw_surface2_vtbl);
5298     return CONTAINING_RECORD(iface, IDirectDrawSurfaceImpl, IDirectDrawSurface2_iface);
5299 }
5300
5301 IDirectDrawSurfaceImpl *unsafe_impl_from_IDirectDrawSurface(IDirectDrawSurface *iface)
5302 {
5303     if (!iface) return NULL;
5304     assert(iface->lpVtbl == &ddraw_surface1_vtbl);
5305     return CONTAINING_RECORD(iface, IDirectDrawSurfaceImpl, IDirectDrawSurface_iface);
5306 }
5307
5308 IDirectDrawSurfaceImpl *unsafe_impl_from_IDirect3DTexture2(IDirect3DTexture2 *iface)
5309 {
5310     if (!iface) return NULL;
5311     assert(iface->lpVtbl == &d3d_texture2_vtbl);
5312     return CONTAINING_RECORD(iface, IDirectDrawSurfaceImpl, IDirect3DTexture2_iface);
5313 }
5314
5315 IDirectDrawSurfaceImpl *unsafe_impl_from_IDirect3DTexture(IDirect3DTexture *iface)
5316 {
5317     if (!iface) return NULL;
5318     assert(iface->lpVtbl == &d3d_texture1_vtbl);
5319     return CONTAINING_RECORD(iface, IDirectDrawSurfaceImpl, IDirect3DTexture_iface);
5320 }
5321
5322 static void STDMETHODCALLTYPE ddraw_surface_wined3d_object_destroyed(void *parent)
5323 {
5324     IDirectDrawSurfaceImpl *surface = parent;
5325
5326     TRACE("surface %p.\n", surface);
5327
5328     /* Check for attached surfaces and detach them. */
5329     if (surface->first_attached != surface)
5330     {
5331         /* Well, this shouldn't happen: The surface being attached is
5332          * referenced in AddAttachedSurface(), so it shouldn't be released
5333          * until DeleteAttachedSurface() is called, because the refcount is
5334          * held. It looks like the application released it often enough to
5335          * force this. */
5336         WARN("Surface is still attached to surface %p.\n", surface->first_attached);
5337
5338         /* The refcount will drop to -1 here */
5339         if (FAILED(ddraw_surface_delete_attached_surface(surface->first_attached, surface, surface->attached_iface)))
5340             ERR("DeleteAttachedSurface failed.\n");
5341     }
5342
5343     while (surface->next_attached)
5344         if (FAILED(ddraw_surface_delete_attached_surface(surface,
5345                 surface->next_attached, surface->next_attached->attached_iface)))
5346             ERR("DeleteAttachedSurface failed.\n");
5347
5348     /* Having a texture handle set implies that the device still exists. */
5349     if (surface->Handle)
5350         ddraw_free_handle(&surface->ddraw->d3ddevice->handle_table, surface->Handle - 1, DDRAW_HANDLE_SURFACE);
5351
5352     /* Reduce the ddraw surface count. */
5353     list_remove(&surface->surface_list_entry);
5354
5355     if (surface == surface->ddraw->primary)
5356         surface->ddraw->primary = NULL;
5357
5358     HeapFree(GetProcessHeap(), 0, surface);
5359 }
5360
5361 const struct wined3d_parent_ops ddraw_surface_wined3d_parent_ops =
5362 {
5363     ddraw_surface_wined3d_object_destroyed,
5364 };
5365
5366 static void STDMETHODCALLTYPE ddraw_texture_wined3d_object_destroyed(void *parent)
5367 {
5368     IDirectDrawSurfaceImpl *surface = parent;
5369
5370     TRACE("surface %p.\n", surface);
5371
5372     ddraw_surface_cleanup(surface);
5373 }
5374
5375 static const struct wined3d_parent_ops ddraw_texture_wined3d_parent_ops =
5376 {
5377     ddraw_texture_wined3d_object_destroyed,
5378 };
5379
5380 HRESULT ddraw_surface_create_texture(IDirectDrawSurfaceImpl *surface)
5381 {
5382     const DDSURFACEDESC2 *desc = &surface->surface_desc;
5383     enum wined3d_format_id format;
5384     WINED3DPOOL pool;
5385     UINT levels;
5386
5387     if (desc->ddsCaps.dwCaps & DDSCAPS_MIPMAP)
5388         levels = desc->u2.dwMipMapCount;
5389     else
5390         levels = 1;
5391
5392     /* DDSCAPS_SYSTEMMEMORY textures are in WINED3DPOOL_SYSTEMMEM.
5393      * Should I forward the MANAGED cap to the managed pool? */
5394     if (desc->ddsCaps.dwCaps & DDSCAPS_SYSTEMMEMORY)
5395         pool = WINED3DPOOL_SYSTEMMEM;
5396     else
5397         pool = WINED3DPOOL_DEFAULT;
5398
5399     format = PixelFormat_DD2WineD3D(&surface->surface_desc.u4.ddpfPixelFormat);
5400     if (desc->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP)
5401         return wined3d_texture_create_cube(surface->ddraw->wined3d_device, desc->dwWidth,
5402                 levels, 0, format, pool, surface, &ddraw_texture_wined3d_parent_ops, &surface->wined3d_texture);
5403     else
5404         return wined3d_texture_create_2d(surface->ddraw->wined3d_device, desc->dwWidth, desc->dwHeight,
5405                 levels, 0, format, pool, surface, &ddraw_texture_wined3d_parent_ops, &surface->wined3d_texture);
5406 }
5407
5408 HRESULT ddraw_surface_init(IDirectDrawSurfaceImpl *surface, IDirectDrawImpl *ddraw,
5409         DDSURFACEDESC2 *desc, UINT mip_level, UINT version)
5410 {
5411     WINED3DPOOL pool = WINED3DPOOL_DEFAULT;
5412     DWORD flags = WINED3D_SURFACE_MAPPABLE;
5413     enum wined3d_format_id format;
5414     DWORD usage = 0;
5415     HRESULT hr;
5416
5417     if (!(desc->ddsCaps.dwCaps & (DDSCAPS_VIDEOMEMORY | DDSCAPS_SYSTEMMEMORY))
5418             && !((desc->ddsCaps.dwCaps & DDSCAPS_TEXTURE)
5419             && (desc->ddsCaps.dwCaps2 & DDSCAPS2_TEXTUREMANAGE)))
5420     {
5421         /* Tests show surfaces without memory flags get these flags added
5422          * right after creation. */
5423         desc->ddsCaps.dwCaps |= DDSCAPS_LOCALVIDMEM | DDSCAPS_VIDEOMEMORY;
5424     }
5425
5426     if (desc->ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE)
5427     {
5428         /* Some applications assume that the primary surface will always be
5429          * mapped at the same address. Some of those also assume that this
5430          * address is valid even when the surface isn't mapped, and that
5431          * updates done this way will be visible on the screen. The game Nox
5432          * is such an application. */
5433         if (version == 1)
5434             flags |= WINED3D_SURFACE_PIN_SYSMEM;
5435         usage |= WINED3DUSAGE_RENDERTARGET;
5436         desc->ddsCaps.dwCaps |= DDSCAPS_VISIBLE;
5437     }
5438
5439     if ((desc->ddsCaps.dwCaps & DDSCAPS_3DDEVICE) && !(desc->ddsCaps.dwCaps & DDSCAPS_ZBUFFER))
5440     {
5441         usage |= WINED3DUSAGE_RENDERTARGET;
5442     }
5443
5444     if (desc->ddsCaps.dwCaps & (DDSCAPS_OVERLAY))
5445     {
5446         usage |= WINED3DUSAGE_OVERLAY;
5447     }
5448
5449     if (desc->ddsCaps.dwCaps & DDSCAPS_ZBUFFER)
5450         usage |= WINED3DUSAGE_DEPTHSTENCIL;
5451
5452     if (desc->ddsCaps.dwCaps & DDSCAPS_OWNDC)
5453         usage |= WINED3DUSAGE_OWNDC;
5454
5455     if (desc->ddsCaps.dwCaps & DDSCAPS_SYSTEMMEMORY)
5456     {
5457         pool = WINED3DPOOL_SYSTEMMEM;
5458     }
5459     else if (desc->ddsCaps.dwCaps2 & DDSCAPS2_TEXTUREMANAGE)
5460     {
5461         pool = WINED3DPOOL_MANAGED;
5462         /* Managed textures have the system memory flag set. */
5463         desc->ddsCaps.dwCaps |= DDSCAPS_SYSTEMMEMORY;
5464     }
5465     else if (desc->ddsCaps.dwCaps & DDSCAPS_VIDEOMEMORY)
5466     {
5467         /* Videomemory adds localvidmem. This is mutually exclusive with
5468          * systemmemory and texturemanage. */
5469         desc->ddsCaps.dwCaps |= DDSCAPS_LOCALVIDMEM;
5470     }
5471
5472     format = PixelFormat_DD2WineD3D(&desc->u4.ddpfPixelFormat);
5473     if (format == WINED3DFMT_UNKNOWN)
5474     {
5475         WARN("Unsupported / unknown pixelformat.\n");
5476         return DDERR_INVALIDPIXELFORMAT;
5477     }
5478
5479     surface->IDirectDrawSurface7_iface.lpVtbl = &ddraw_surface7_vtbl;
5480     surface->IDirectDrawSurface4_iface.lpVtbl = &ddraw_surface4_vtbl;
5481     surface->IDirectDrawSurface3_iface.lpVtbl = &ddraw_surface3_vtbl;
5482     surface->IDirectDrawSurface2_iface.lpVtbl = &ddraw_surface2_vtbl;
5483     surface->IDirectDrawSurface_iface.lpVtbl = &ddraw_surface1_vtbl;
5484     surface->IDirectDrawGammaControl_iface.lpVtbl = &ddraw_gamma_control_vtbl;
5485     surface->IDirect3DTexture2_iface.lpVtbl = &d3d_texture2_vtbl;
5486     surface->IDirect3DTexture_iface.lpVtbl = &d3d_texture1_vtbl;
5487     surface->iface_count = 1;
5488     surface->version = version;
5489     surface->ddraw = ddraw;
5490
5491     if (version == 7)
5492     {
5493         surface->ref7 = 1;
5494     }
5495     else if (version == 4)
5496     {
5497         surface->ref4 = 1;
5498     }
5499     else
5500     {
5501         surface->ref1 = 1;
5502     }
5503
5504     copy_to_surfacedesc2(&surface->surface_desc, desc);
5505
5506     surface->first_attached = surface;
5507
5508     hr = wined3d_surface_create(ddraw->wined3d_device, desc->dwWidth, desc->dwHeight, format, mip_level,
5509             usage, pool, WINED3DMULTISAMPLE_NONE, 0, DefaultSurfaceType, flags,
5510             surface, &ddraw_surface_wined3d_parent_ops, &surface->wined3d_surface);
5511     if (FAILED(hr))
5512     {
5513         WARN("Failed to create wined3d surface, hr %#x.\n", hr);
5514         return hr;
5515     }
5516
5517     /* Anno 1602 stores the pitch right after surface creation, so make sure
5518      * it's there. TODO: Test other fourcc formats. */
5519     if (format == WINED3DFMT_DXT1 || format == WINED3DFMT_DXT2 || format == WINED3DFMT_DXT3
5520             || format == WINED3DFMT_DXT4 || format == WINED3DFMT_DXT5)
5521     {
5522         surface->surface_desc.dwFlags |= DDSD_LINEARSIZE;
5523         if (format == WINED3DFMT_DXT1)
5524         {
5525             surface->surface_desc.u1.dwLinearSize = max(4, desc->dwWidth) * max(4, desc->dwHeight) / 2;
5526         }
5527         else
5528         {
5529             surface->surface_desc.u1.dwLinearSize = max(4, desc->dwWidth) * max(4, desc->dwHeight);
5530         }
5531     }
5532     else
5533     {
5534         surface->surface_desc.dwFlags |= DDSD_PITCH;
5535         surface->surface_desc.u1.lPitch = wined3d_surface_get_pitch(surface->wined3d_surface);
5536     }
5537
5538     if (desc->dwFlags & DDSD_CKDESTOVERLAY)
5539     {
5540         wined3d_surface_set_color_key(surface->wined3d_surface, DDCKEY_DESTOVERLAY,
5541                 (struct wined3d_color_key *)&desc->u3.ddckCKDestOverlay);
5542     }
5543     if (desc->dwFlags & DDSD_CKDESTBLT)
5544     {
5545         wined3d_surface_set_color_key(surface->wined3d_surface, DDCKEY_DESTBLT,
5546                 (struct wined3d_color_key *)&desc->ddckCKDestBlt);
5547     }
5548     if (desc->dwFlags & DDSD_CKSRCOVERLAY)
5549     {
5550         wined3d_surface_set_color_key(surface->wined3d_surface, DDCKEY_SRCOVERLAY,
5551                 (struct wined3d_color_key *)&desc->ddckCKSrcOverlay);
5552     }
5553     if (desc->dwFlags & DDSD_CKSRCBLT)
5554     {
5555         wined3d_surface_set_color_key(surface->wined3d_surface, DDCKEY_SRCBLT,
5556                 (struct wined3d_color_key *)&desc->ddckCKSrcBlt);
5557     }
5558     if (desc->dwFlags & DDSD_LPSURFACE)
5559     {
5560         hr = wined3d_surface_set_mem(surface->wined3d_surface, desc->lpSurface);
5561         if (FAILED(hr))
5562         {
5563             ERR("Failed to set surface memory, hr %#x.\n", hr);
5564             wined3d_surface_decref(surface->wined3d_surface);
5565             return hr;
5566         }
5567     }
5568
5569     return DD_OK;
5570 }