ddraw: Create surfaces with the correct mip level in device_parent_create_texture_sur...
[wine/multimedia.git] / dlls / ddraw / ddraw.c
blob1963de2f183027b102d835ba49df2aa126e2b6b8
1 /*
2 * Copyright 1997-2000 Marcus Meissner
3 * Copyright 1998-2000 Lionel Ulmer
4 * Copyright 2000-2001 TransGaming Technologies Inc.
5 * Copyright 2006 Stefan Dösinger
6 * Copyright 2008 Denver Gingerich
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "config.h"
24 #include "wine/port.h"
26 #include "ddraw_private.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(ddraw);
30 /* Device identifier. Don't relay it to WineD3D */
31 static const DDDEVICEIDENTIFIER2 deviceidentifier =
33 "display",
34 "DirectDraw HAL",
35 { { 0x00010001, 0x00010001 } },
36 0, 0, 0, 0,
37 /* a8373c10-7ac4-4deb-849a-009844d08b2d */
38 {0xa8373c10,0x7ac4,0x4deb, {0x84,0x9a,0x00,0x98,0x44,0xd0,0x8b,0x2d}},
42 static struct enum_device_entry
44 char interface_name[100];
45 char device_name[100];
46 const GUID *device_guid;
47 } device_list7[] =
49 /* T&L HAL device */
51 "WINE Direct3D7 Hardware Transform and Lighting acceleration using WineD3D",
52 "Wine D3D7 T&L HAL",
53 &IID_IDirect3DTnLHalDevice,
56 /* HAL device */
58 "WINE Direct3D7 Hardware acceleration using WineD3D",
59 "Direct3D HAL",
60 &IID_IDirect3DHALDevice,
63 /* RGB device */
65 "WINE Direct3D7 RGB Software Emulation using WineD3D",
66 "Wine D3D7 RGB",
67 &IID_IDirect3DRGBDevice,
71 static void STDMETHODCALLTYPE ddraw_null_wined3d_object_destroyed(void *parent) {}
73 const struct wined3d_parent_ops ddraw_null_wined3d_parent_ops =
75 ddraw_null_wined3d_object_destroyed,
78 static inline struct ddraw *impl_from_IDirectDraw(IDirectDraw *iface)
80 return CONTAINING_RECORD(iface, struct ddraw, IDirectDraw_iface);
83 static inline struct ddraw *impl_from_IDirectDraw2(IDirectDraw2 *iface)
85 return CONTAINING_RECORD(iface, struct ddraw, IDirectDraw2_iface);
88 static inline struct ddraw *impl_from_IDirectDraw4(IDirectDraw4 *iface)
90 return CONTAINING_RECORD(iface, struct ddraw, IDirectDraw4_iface);
93 static inline struct ddraw *impl_from_IDirectDraw7(IDirectDraw7 *iface)
95 return CONTAINING_RECORD(iface, struct ddraw, IDirectDraw7_iface);
98 static inline struct ddraw *impl_from_IDirect3D(IDirect3D *iface)
100 return CONTAINING_RECORD(iface, struct ddraw, IDirect3D_iface);
103 static inline struct ddraw *impl_from_IDirect3D2(IDirect3D2 *iface)
105 return CONTAINING_RECORD(iface, struct ddraw, IDirect3D2_iface);
108 static inline struct ddraw *impl_from_IDirect3D3(IDirect3D3 *iface)
110 return CONTAINING_RECORD(iface, struct ddraw, IDirect3D3_iface);
113 static inline struct ddraw *impl_from_IDirect3D7(IDirect3D7 *iface)
115 return CONTAINING_RECORD(iface, struct ddraw, IDirect3D7_iface);
118 /*****************************************************************************
119 * IUnknown Methods
120 *****************************************************************************/
122 /*****************************************************************************
123 * IDirectDraw7::QueryInterface
125 * Queries different interfaces of the DirectDraw object. It can return
126 * IDirectDraw interfaces in version 1, 2, 4 and 7, and IDirect3D interfaces
127 * in version 1, 2, 3 and 7. An IDirect3DDevice can be created with this
128 * method.
129 * The returned interface is AddRef()-ed before it's returned
131 * Used for version 1, 2, 4 and 7
133 * Params:
134 * refiid: Interface ID asked for
135 * obj: Used to return the interface pointer
137 * Returns:
138 * S_OK if an interface was found
139 * E_NOINTERFACE if the requested interface wasn't found
141 *****************************************************************************/
142 static HRESULT WINAPI ddraw7_QueryInterface(IDirectDraw7 *iface, REFIID refiid, void **obj)
144 struct ddraw *This = impl_from_IDirectDraw7(iface);
146 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(refiid), obj);
148 /* Can change surface impl type */
149 wined3d_mutex_lock();
151 /* According to COM docs, if the QueryInterface fails, obj should be set to NULL */
152 *obj = NULL;
154 if(!refiid)
156 wined3d_mutex_unlock();
157 return DDERR_INVALIDPARAMS;
160 /* Check DirectDraw Interfaces */
161 if ( IsEqualGUID( &IID_IUnknown, refiid ) ||
162 IsEqualGUID( &IID_IDirectDraw7, refiid ) )
164 *obj = &This->IDirectDraw7_iface;
165 TRACE("(%p) Returning IDirectDraw7 interface at %p\n", This, *obj);
167 else if ( IsEqualGUID( &IID_IDirectDraw4, refiid ) )
169 *obj = &This->IDirectDraw4_iface;
170 TRACE("(%p) Returning IDirectDraw4 interface at %p\n", This, *obj);
172 else if ( IsEqualGUID( &IID_IDirectDraw3, refiid ) )
174 /* This Interface exists in ddrawex.dll, it is implemented in a wrapper */
175 WARN("IDirectDraw3 is not valid in ddraw.dll\n");
176 *obj = NULL;
177 wined3d_mutex_unlock();
178 return E_NOINTERFACE;
180 else if ( IsEqualGUID( &IID_IDirectDraw2, refiid ) )
182 *obj = &This->IDirectDraw2_iface;
183 TRACE("(%p) Returning IDirectDraw2 interface at %p\n", This, *obj);
185 else if ( IsEqualGUID( &IID_IDirectDraw, refiid ) )
187 *obj = &This->IDirectDraw_iface;
188 TRACE("(%p) Returning IDirectDraw interface at %p\n", This, *obj);
191 /* Direct3D
192 * The refcount unit test revealed that an IDirect3D7 interface can only be queried
193 * from a DirectDraw object that was created as an IDirectDraw7 interface. No idea
194 * who had this idea and why. The older interfaces can query and IDirect3D version
195 * because they are all created as IDirectDraw(1). This isn't really crucial behavior,
196 * and messy to implement with the common creation function, so it has been left out here.
198 else if ( IsEqualGUID( &IID_IDirect3D , refiid ) ||
199 IsEqualGUID( &IID_IDirect3D2 , refiid ) ||
200 IsEqualGUID( &IID_IDirect3D3 , refiid ) ||
201 IsEqualGUID( &IID_IDirect3D7 , refiid ) )
203 /* Check the surface implementation */
204 if (DefaultSurfaceType != WINED3D_SURFACE_TYPE_OPENGL)
206 WARN("The app requests a Direct3D interface, but non-opengl surfaces where set in winecfg\n");
207 /* Do not abort here, only reject 3D Device creation */
210 if ( IsEqualGUID( &IID_IDirect3D , refiid ) )
212 This->d3dversion = 1;
213 *obj = &This->IDirect3D_iface;
214 TRACE(" returning Direct3D interface at %p.\n", *obj);
216 else if ( IsEqualGUID( &IID_IDirect3D2 , refiid ) )
218 This->d3dversion = 2;
219 *obj = &This->IDirect3D2_iface;
220 TRACE(" returning Direct3D2 interface at %p.\n", *obj);
222 else if ( IsEqualGUID( &IID_IDirect3D3 , refiid ) )
224 This->d3dversion = 3;
225 *obj = &This->IDirect3D3_iface;
226 TRACE(" returning Direct3D3 interface at %p.\n", *obj);
228 else if(IsEqualGUID( &IID_IDirect3D7 , refiid ))
230 This->d3dversion = 7;
231 *obj = &This->IDirect3D7_iface;
232 TRACE(" returning Direct3D7 interface at %p.\n", *obj);
235 /* Unknown interface */
236 else
238 ERR("(%p)->(%s, %p): No interface found\n", This, debugstr_guid(refiid), obj);
239 wined3d_mutex_unlock();
240 return E_NOINTERFACE;
243 IUnknown_AddRef( (IUnknown *) *obj );
244 wined3d_mutex_unlock();
246 return S_OK;
249 static HRESULT WINAPI ddraw4_QueryInterface(IDirectDraw4 *iface, REFIID riid, void **object)
251 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
253 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
255 return ddraw7_QueryInterface(&ddraw->IDirectDraw7_iface, riid, object);
258 static HRESULT WINAPI ddraw2_QueryInterface(IDirectDraw2 *iface, REFIID riid, void **object)
260 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
262 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
264 return ddraw7_QueryInterface(&ddraw->IDirectDraw7_iface, riid, object);
267 static HRESULT WINAPI ddraw1_QueryInterface(IDirectDraw *iface, REFIID riid, void **object)
269 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
271 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
273 return ddraw7_QueryInterface(&ddraw->IDirectDraw7_iface, riid, object);
276 static HRESULT WINAPI d3d7_QueryInterface(IDirect3D7 *iface, REFIID riid, void **object)
278 struct ddraw *ddraw = impl_from_IDirect3D7(iface);
280 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
282 return ddraw7_QueryInterface(&ddraw->IDirectDraw7_iface, riid, object);
285 static HRESULT WINAPI d3d3_QueryInterface(IDirect3D3 *iface, REFIID riid, void **object)
287 struct ddraw *ddraw = impl_from_IDirect3D3(iface);
289 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
291 return ddraw7_QueryInterface(&ddraw->IDirectDraw7_iface, riid, object);
294 static HRESULT WINAPI d3d2_QueryInterface(IDirect3D2 *iface, REFIID riid, void **object)
296 struct ddraw *ddraw = impl_from_IDirect3D2(iface);
298 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
300 return ddraw7_QueryInterface(&ddraw->IDirectDraw7_iface, riid, object);
303 static HRESULT WINAPI d3d1_QueryInterface(IDirect3D *iface, REFIID riid, void **object)
305 struct ddraw *ddraw = impl_from_IDirect3D(iface);
307 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
309 return ddraw7_QueryInterface(&ddraw->IDirectDraw7_iface, riid, object);
312 /*****************************************************************************
313 * IDirectDraw7::AddRef
315 * Increases the interfaces refcount, basically
317 * DDraw refcounting is a bit tricky. The different DirectDraw interface
318 * versions have individual refcounts, but the IDirect3D interfaces do not.
319 * All interfaces are from one object, that means calling QueryInterface on an
320 * IDirectDraw7 interface for an IDirectDraw4 interface does not create a new
321 * ddraw object.
323 * That means all AddRef and Release implementations of IDirectDrawX work
324 * with their own counter, and IDirect3DX::AddRef thunk to IDirectDraw (1),
325 * except of IDirect3D7 which thunks to IDirectDraw7
327 * Returns: The new refcount
329 *****************************************************************************/
330 static ULONG WINAPI ddraw7_AddRef(IDirectDraw7 *iface)
332 struct ddraw *This = impl_from_IDirectDraw7(iface);
333 ULONG ref = InterlockedIncrement(&This->ref7);
335 TRACE("%p increasing refcount to %u.\n", This, ref);
337 if(ref == 1) InterlockedIncrement(&This->numIfaces);
339 return ref;
342 static ULONG WINAPI ddraw4_AddRef(IDirectDraw4 *iface)
344 struct ddraw *This = impl_from_IDirectDraw4(iface);
345 ULONG ref = InterlockedIncrement(&This->ref4);
347 TRACE("%p increasing refcount to %u.\n", This, ref);
349 if (ref == 1) InterlockedIncrement(&This->numIfaces);
351 return ref;
354 static ULONG WINAPI ddraw2_AddRef(IDirectDraw2 *iface)
356 struct ddraw *This = impl_from_IDirectDraw2(iface);
357 ULONG ref = InterlockedIncrement(&This->ref2);
359 TRACE("%p increasing refcount to %u.\n", This, ref);
361 if (ref == 1) InterlockedIncrement(&This->numIfaces);
363 return ref;
366 static ULONG WINAPI ddraw1_AddRef(IDirectDraw *iface)
368 struct ddraw *This = impl_from_IDirectDraw(iface);
369 ULONG ref = InterlockedIncrement(&This->ref1);
371 TRACE("%p increasing refcount to %u.\n", This, ref);
373 if (ref == 1) InterlockedIncrement(&This->numIfaces);
375 return ref;
378 static ULONG WINAPI d3d7_AddRef(IDirect3D7 *iface)
380 struct ddraw *This = impl_from_IDirect3D7(iface);
382 TRACE("iface %p.\n", iface);
384 return ddraw7_AddRef(&This->IDirectDraw7_iface);
387 static ULONG WINAPI d3d3_AddRef(IDirect3D3 *iface)
389 struct ddraw *This = impl_from_IDirect3D3(iface);
391 TRACE("iface %p.\n", iface);
393 return ddraw1_AddRef(&This->IDirectDraw_iface);
396 static ULONG WINAPI d3d2_AddRef(IDirect3D2 *iface)
398 struct ddraw *This = impl_from_IDirect3D2(iface);
400 TRACE("iface %p.\n", iface);
402 return ddraw1_AddRef(&This->IDirectDraw_iface);
405 static ULONG WINAPI d3d1_AddRef(IDirect3D *iface)
407 struct ddraw *This = impl_from_IDirect3D(iface);
409 TRACE("iface %p.\n", iface);
411 return ddraw1_AddRef(&This->IDirectDraw_iface);
414 void ddraw_destroy_swapchain(struct ddraw *ddraw)
416 TRACE("Destroying the swapchain.\n");
418 wined3d_swapchain_decref(ddraw->wined3d_swapchain);
419 ddraw->wined3d_swapchain = NULL;
421 if (DefaultSurfaceType == WINED3D_SURFACE_TYPE_OPENGL)
423 UINT i;
425 for (i = 0; i < ddraw->numConvertedDecls; ++i)
427 wined3d_vertex_declaration_decref(ddraw->decls[i].decl);
429 HeapFree(GetProcessHeap(), 0, ddraw->decls);
430 ddraw->numConvertedDecls = 0;
432 if (FAILED(wined3d_device_uninit_3d(ddraw->wined3d_device)))
434 ERR("Failed to uninit 3D.\n");
436 else
438 /* Free the d3d window if one was created. */
439 if (ddraw->d3d_window && ddraw->d3d_window != ddraw->dest_window)
441 TRACE("Destroying the hidden render window %p.\n", ddraw->d3d_window);
442 DestroyWindow(ddraw->d3d_window);
443 ddraw->d3d_window = 0;
447 ddraw->d3d_initialized = FALSE;
449 else
451 wined3d_device_uninit_gdi(ddraw->wined3d_device);
454 ddraw_set_swapchain_window(ddraw, NULL);
456 TRACE("Swapchain destroyed.\n");
459 /*****************************************************************************
460 * ddraw_destroy
462 * Destroys a ddraw object if all refcounts are 0. This is to share code
463 * between the IDirectDrawX::Release functions
465 * Params:
466 * This: DirectDraw object to destroy
468 *****************************************************************************/
469 static void ddraw_destroy(struct ddraw *This)
471 IDirectDraw7_SetCooperativeLevel(&This->IDirectDraw7_iface, NULL, DDSCL_NORMAL);
472 IDirectDraw7_RestoreDisplayMode(&This->IDirectDraw7_iface);
474 /* Destroy the device window if we created one */
475 if(This->devicewindow != 0)
477 TRACE(" (%p) Destroying the device window %p\n", This, This->devicewindow);
478 DestroyWindow(This->devicewindow);
479 This->devicewindow = 0;
482 wined3d_mutex_lock();
483 list_remove(&This->ddraw_list_entry);
484 wined3d_mutex_unlock();
486 if (This->wined3d_swapchain)
487 ddraw_destroy_swapchain(This);
488 wined3d_device_decref(This->wined3d_device);
489 wined3d_decref(This->wined3d);
491 /* Now free the object */
492 HeapFree(GetProcessHeap(), 0, This);
495 /*****************************************************************************
496 * IDirectDraw7::Release
498 * Decreases the refcount. If the refcount falls to 0, the object is destroyed
500 * Returns: The new refcount
501 *****************************************************************************/
502 static ULONG WINAPI ddraw7_Release(IDirectDraw7 *iface)
504 struct ddraw *This = impl_from_IDirectDraw7(iface);
505 ULONG ref = InterlockedDecrement(&This->ref7);
507 TRACE("%p decreasing refcount to %u.\n", This, ref);
509 if (!ref && !InterlockedDecrement(&This->numIfaces))
510 ddraw_destroy(This);
512 return ref;
515 static ULONG WINAPI ddraw4_Release(IDirectDraw4 *iface)
517 struct ddraw *This = impl_from_IDirectDraw4(iface);
518 ULONG ref = InterlockedDecrement(&This->ref4);
520 TRACE("%p decreasing refcount to %u.\n", This, ref);
522 if (!ref && !InterlockedDecrement(&This->numIfaces))
523 ddraw_destroy(This);
525 return ref;
528 static ULONG WINAPI ddraw2_Release(IDirectDraw2 *iface)
530 struct ddraw *This = impl_from_IDirectDraw2(iface);
531 ULONG ref = InterlockedDecrement(&This->ref2);
533 TRACE("%p decreasing refcount to %u.\n", This, ref);
535 if (!ref && !InterlockedDecrement(&This->numIfaces))
536 ddraw_destroy(This);
538 return ref;
541 static ULONG WINAPI ddraw1_Release(IDirectDraw *iface)
543 struct ddraw *This = impl_from_IDirectDraw(iface);
544 ULONG ref = InterlockedDecrement(&This->ref1);
546 TRACE("%p decreasing refcount to %u.\n", This, ref);
548 if (!ref && !InterlockedDecrement(&This->numIfaces))
549 ddraw_destroy(This);
551 return ref;
554 static ULONG WINAPI d3d7_Release(IDirect3D7 *iface)
556 struct ddraw *This = impl_from_IDirect3D7(iface);
558 TRACE("iface %p.\n", iface);
560 return ddraw7_Release(&This->IDirectDraw7_iface);
563 static ULONG WINAPI d3d3_Release(IDirect3D3 *iface)
565 struct ddraw *This = impl_from_IDirect3D3(iface);
567 TRACE("iface %p.\n", iface);
569 return ddraw1_Release(&This->IDirectDraw_iface);
572 static ULONG WINAPI d3d2_Release(IDirect3D2 *iface)
574 struct ddraw *This = impl_from_IDirect3D2(iface);
576 TRACE("iface %p.\n", iface);
578 return ddraw1_Release(&This->IDirectDraw_iface);
581 static ULONG WINAPI d3d1_Release(IDirect3D *iface)
583 struct ddraw *This = impl_from_IDirect3D(iface);
585 TRACE("iface %p.\n", iface);
587 return ddraw1_Release(&This->IDirectDraw_iface);
590 /*****************************************************************************
591 * IDirectDraw methods
592 *****************************************************************************/
594 static HRESULT ddraw_set_focus_window(struct ddraw *ddraw, HWND window)
596 /* FIXME: This looks wrong, exclusive mode should imply a destination
597 * window. */
598 if ((ddraw->cooperative_level & DDSCL_EXCLUSIVE) && ddraw->dest_window)
600 TRACE("Setting DDSCL_SETFOCUSWINDOW with an already set window, returning DDERR_HWNDALREADYSET.\n");
601 return DDERR_HWNDALREADYSET;
604 ddraw->focuswindow = window;
606 /* Use the focus window for drawing too. */
607 ddraw->dest_window = ddraw->focuswindow;
609 return DD_OK;
612 static HRESULT ddraw_attach_d3d_device(struct ddraw *ddraw,
613 struct wined3d_swapchain_desc *swapchain_desc)
615 HWND window = swapchain_desc->device_window;
616 HRESULT hr;
618 TRACE("ddraw %p.\n", ddraw);
620 if (!window || window == GetDesktopWindow())
622 window = CreateWindowExA(0, DDRAW_WINDOW_CLASS_NAME, "Hidden D3D Window",
623 WS_DISABLED, 0, 0, GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN),
624 NULL, NULL, NULL, NULL);
625 if (!window)
627 ERR("Failed to create window, last error %#x.\n", GetLastError());
628 return E_FAIL;
631 ShowWindow(window, SW_HIDE); /* Just to be sure */
632 WARN("No window for the Direct3DDevice, created hidden window %p.\n", window);
634 swapchain_desc->device_window = window;
636 else
638 TRACE("Using existing window %p for Direct3D rendering.\n", window);
640 ddraw->d3d_window = window;
642 /* Set this NOW, otherwise creating the depth stencil surface will cause a
643 * recursive loop until ram or emulated video memory is full. */
644 ddraw->d3d_initialized = TRUE;
645 hr = wined3d_device_init_3d(ddraw->wined3d_device, swapchain_desc);
646 if (FAILED(hr))
648 ddraw->d3d_initialized = FALSE;
649 return hr;
652 ddraw->declArraySize = 2;
653 ddraw->decls = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*ddraw->decls) * ddraw->declArraySize);
654 if (!ddraw->decls)
656 ERR("Error allocating an array for the converted vertex decls.\n");
657 ddraw->declArraySize = 0;
658 hr = wined3d_device_uninit_3d(ddraw->wined3d_device);
659 return E_OUTOFMEMORY;
662 TRACE("Successfully initialized 3D.\n");
664 return DD_OK;
667 static HRESULT ddraw_create_swapchain(struct ddraw *ddraw, HWND window, BOOL windowed)
669 struct wined3d_swapchain_desc swapchain_desc;
670 struct wined3d_display_mode mode;
671 HRESULT hr = WINED3D_OK;
673 if (FAILED(hr = wined3d_get_adapter_display_mode(ddraw->wined3d, WINED3DADAPTER_DEFAULT, &mode, NULL)))
675 ERR("Failed to get display mode.\n");
676 return hr;
679 memset(&swapchain_desc, 0, sizeof(swapchain_desc));
680 swapchain_desc.backbuffer_width = mode.width;
681 swapchain_desc.backbuffer_height = mode.height;
682 swapchain_desc.backbuffer_format = mode.format_id;
683 swapchain_desc.swap_effect = WINED3D_SWAP_EFFECT_COPY;
684 swapchain_desc.device_window = window;
685 swapchain_desc.windowed = windowed;
687 if (DefaultSurfaceType == WINED3D_SURFACE_TYPE_OPENGL)
688 hr = ddraw_attach_d3d_device(ddraw, &swapchain_desc);
689 else
690 hr = wined3d_device_init_gdi(ddraw->wined3d_device, &swapchain_desc);
692 if (FAILED(hr))
694 ERR("Failed to create swapchain, hr %#x.\n", hr);
695 return hr;
698 if (FAILED(hr = wined3d_device_get_swapchain(ddraw->wined3d_device, 0, &ddraw->wined3d_swapchain)))
700 ERR("Failed to get swapchain, hr %#x.\n", hr);
701 ddraw->wined3d_swapchain = NULL;
702 return hr;
705 ddraw_set_swapchain_window(ddraw, window);
707 return DD_OK;
710 /*****************************************************************************
711 * IDirectDraw7::SetCooperativeLevel
713 * Sets the cooperative level for the DirectDraw object, and the window
714 * assigned to it. The cooperative level determines the general behavior
715 * of the DirectDraw application
717 * Warning: This is quite tricky, as it's not really documented which
718 * cooperative levels can be combined with each other. If a game fails
719 * after this function, try to check the cooperative levels passed on
720 * Windows, and if it returns something different.
722 * If you think that this function caused the failure because it writes a
723 * fixme, be sure to run again with a +ddraw trace.
725 * What is known about cooperative levels (See the ddraw modes test):
726 * DDSCL_EXCLUSIVE and DDSCL_FULLSCREEN must be used with each other
727 * DDSCL_NORMAL is not compatible with DDSCL_EXCLUSIVE or DDSCL_FULLSCREEN
728 * DDSCL_SETFOCUSWINDOW can be passed only in DDSCL_NORMAL mode, but after that
729 * DDSCL_FULLSCREEN can be activated
730 * DDSCL_SETFOCUSWINDOW may only be used with DDSCL_NOWINDOWCHANGES
732 * Handled flags: DDSCL_NORMAL, DDSCL_FULLSCREEN, DDSCL_EXCLUSIVE,
733 * DDSCL_SETFOCUSWINDOW (partially),
734 * DDSCL_MULTITHREADED (work in progress)
736 * Unhandled flags, which should be implemented
737 * DDSCL_SETDEVICEWINDOW: Sets a window specially used for rendering (I don't
738 * expect any difference to a normal window for wine)
739 * DDSCL_CREATEDEVICEWINDOW: Tells ddraw to create its own window for
740 * rendering (Possible test case: Half-Life)
742 * Unsure about these: DDSCL_FPUSETUP DDSCL_FPURESERVE
744 * These don't seem very important for wine:
745 * DDSCL_ALLOWREBOOT, DDSCL_NOWINDOWCHANGES, DDSCL_ALLOWMODEX
747 * Returns:
748 * DD_OK if the cooperative level was set successfully
749 * DDERR_INVALIDPARAMS if the passed cooperative level combination is invalid
750 * DDERR_HWNDALREADYSET if DDSCL_SETFOCUSWINDOW is passed in exclusive mode
751 * (Probably others too, have to investigate)
753 *****************************************************************************/
754 static HRESULT WINAPI ddraw7_SetCooperativeLevel(IDirectDraw7 *iface, HWND hwnd, DWORD cooplevel)
756 struct ddraw *This = impl_from_IDirectDraw7(iface);
757 struct wined3d_stateblock *stateblock;
758 struct wined3d_surface *rt, *ds;
759 BOOL restore_state = FALSE;
760 HWND window;
761 HRESULT hr;
763 TRACE("iface %p, window %p, flags %#x.\n", iface, hwnd, cooplevel);
764 DDRAW_dump_cooperativelevel(cooplevel);
766 wined3d_mutex_lock();
768 /* Get the old window */
769 window = This->dest_window;
771 /* Tests suggest that we need one of them: */
772 if(!(cooplevel & (DDSCL_SETFOCUSWINDOW |
773 DDSCL_NORMAL |
774 DDSCL_EXCLUSIVE )))
776 TRACE("Incorrect cooplevel flags, returning DDERR_INVALIDPARAMS\n");
777 wined3d_mutex_unlock();
778 return DDERR_INVALIDPARAMS;
781 if ((cooplevel & DDSCL_CREATEDEVICEWINDOW) && !(cooplevel & DDSCL_EXCLUSIVE))
783 WARN("DDSCL_CREATEDEVICEWINDOW requires DDSCL_EXCLUSIVE.\n");
784 wined3d_mutex_unlock();
785 return DDERR_INVALIDPARAMS;
788 /* Handle those levels first which set various hwnds */
789 if ((cooplevel & DDSCL_SETFOCUSWINDOW) && !(cooplevel & DDSCL_CREATEDEVICEWINDOW))
791 /* This isn't compatible with a lot of flags */
792 if (cooplevel & (DDSCL_MULTITHREADED
793 | DDSCL_FPUSETUP
794 | DDSCL_FPUPRESERVE
795 | DDSCL_ALLOWREBOOT
796 | DDSCL_ALLOWMODEX
797 | DDSCL_SETDEVICEWINDOW
798 | DDSCL_NORMAL
799 | DDSCL_EXCLUSIVE
800 | DDSCL_FULLSCREEN))
802 WARN("Called with incompatible flags, returning DDERR_INVALIDPARAMS.\n");
803 wined3d_mutex_unlock();
804 return DDERR_INVALIDPARAMS;
807 hr = ddraw_set_focus_window(This, hwnd);
808 wined3d_mutex_unlock();
809 return hr;
812 if (cooplevel & DDSCL_EXCLUSIVE)
814 if (!(cooplevel & DDSCL_FULLSCREEN) || !(hwnd || (cooplevel & DDSCL_CREATEDEVICEWINDOW)))
816 WARN("DDSCL_EXCLUSIVE requires DDSCL_FULLSCREEN and a window.\n");
817 wined3d_mutex_unlock();
818 return DDERR_INVALIDPARAMS;
821 if (cooplevel & DDSCL_CREATEDEVICEWINDOW)
823 HWND device_window;
825 if (!This->focuswindow && !(cooplevel & DDSCL_SETFOCUSWINDOW))
827 WARN("No focus window set.\n");
828 wined3d_mutex_unlock();
829 return DDERR_NOFOCUSWINDOW;
832 device_window = CreateWindowExA(0, DDRAW_WINDOW_CLASS_NAME, "DirectDrawDeviceWnd",
833 WS_POPUP, 0, 0, GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN),
834 NULL, NULL, NULL, NULL);
835 if (!device_window)
837 ERR("Failed to create window, last error %#x.\n", GetLastError());
838 wined3d_mutex_unlock();
839 return E_FAIL;
842 ShowWindow(device_window, SW_SHOW);
843 TRACE("Created a device window %p.\n", device_window);
845 /* Native apparently leaks the created device window if setting the
846 * focus window below fails. */
847 This->cooperative_level |= DDSCL_CREATEDEVICEWINDOW;
848 This->devicewindow = device_window;
850 if (cooplevel & DDSCL_SETFOCUSWINDOW)
852 if (!hwnd)
854 wined3d_mutex_unlock();
855 return DDERR_NOHWND;
858 if (FAILED(hr = ddraw_set_focus_window(This, hwnd)))
860 wined3d_mutex_unlock();
861 return hr;
865 hwnd = device_window;
868 else
870 if (This->cooperative_level & DDSCL_CREATEDEVICEWINDOW)
871 DestroyWindow(This->devicewindow);
872 This->devicewindow = NULL;
873 This->focuswindow = NULL;
876 if ((This->cooperative_level & DDSCL_EXCLUSIVE)
877 && (hwnd != window || !(cooplevel & DDSCL_EXCLUSIVE)))
878 wined3d_device_release_focus_window(This->wined3d_device);
880 if ((cooplevel & DDSCL_FULLSCREEN) != (This->cooperative_level & DDSCL_FULLSCREEN) || hwnd != window)
882 if (This->cooperative_level & DDSCL_FULLSCREEN)
883 wined3d_device_restore_fullscreen_window(This->wined3d_device, window);
885 if (cooplevel & DDSCL_FULLSCREEN)
887 struct wined3d_display_mode display_mode;
889 wined3d_get_adapter_display_mode(This->wined3d, WINED3DADAPTER_DEFAULT, &display_mode, NULL);
890 wined3d_device_setup_fullscreen_window(This->wined3d_device, hwnd,
891 display_mode.width, display_mode.height);
895 if ((cooplevel & DDSCL_EXCLUSIVE)
896 && (hwnd != window || !(This->cooperative_level & DDSCL_EXCLUSIVE)))
898 hr = wined3d_device_acquire_focus_window(This->wined3d_device, hwnd);
899 if (FAILED(hr))
901 ERR("Failed to acquire focus window, hr %#x.\n", hr);
902 wined3d_mutex_unlock();
903 return hr;
907 /* Don't override focus windows or private device windows */
908 if (hwnd && !This->focuswindow && !This->devicewindow && (hwnd != window))
909 This->dest_window = hwnd;
911 if (cooplevel & DDSCL_MULTITHREADED && !(This->cooperative_level & DDSCL_MULTITHREADED))
912 wined3d_device_set_multithreaded(This->wined3d_device);
914 if (This->wined3d_swapchain)
916 if (DefaultSurfaceType != WINED3D_SURFACE_TYPE_GDI)
918 restore_state = TRUE;
920 if (FAILED(hr = wined3d_stateblock_create(This->wined3d_device, WINED3D_SBT_ALL, &stateblock)))
922 ERR("Failed to create stateblock, hr %#x.\n", hr);
923 wined3d_mutex_unlock();
924 return hr;
927 if (FAILED(hr = wined3d_stateblock_capture(stateblock)))
929 ERR("Failed to capture stateblock, hr %#x.\n", hr);
930 wined3d_stateblock_decref(stateblock);
931 wined3d_mutex_unlock();
932 return hr;
935 wined3d_device_get_render_target(This->wined3d_device, 0, &rt);
936 if (rt == This->wined3d_frontbuffer)
938 wined3d_surface_decref(rt);
939 rt = NULL;
942 wined3d_device_get_depth_stencil(This->wined3d_device, &ds);
945 ddraw_destroy_swapchain(This);
948 if (FAILED(hr = ddraw_create_swapchain(This, This->dest_window, !(cooplevel & DDSCL_FULLSCREEN))))
949 ERR("Failed to create swapchain, hr %#x.\n", hr);
951 if (restore_state)
953 if (ds)
955 wined3d_device_set_depth_stencil(This->wined3d_device, ds);
956 wined3d_surface_decref(ds);
959 if (rt)
961 wined3d_device_set_render_target(This->wined3d_device, 0, rt, FALSE);
962 wined3d_surface_decref(rt);
965 hr = wined3d_stateblock_apply(stateblock);
966 wined3d_stateblock_decref(stateblock);
967 if (FAILED(hr))
969 ERR("Failed to apply stateblock, hr %#x.\n", hr);
970 wined3d_mutex_unlock();
971 return hr;
975 /* Unhandled flags */
976 if(cooplevel & DDSCL_ALLOWREBOOT)
977 WARN("(%p) Unhandled flag DDSCL_ALLOWREBOOT, harmless\n", This);
978 if(cooplevel & DDSCL_ALLOWMODEX)
979 WARN("(%p) Unhandled flag DDSCL_ALLOWMODEX, harmless\n", This);
980 if(cooplevel & DDSCL_FPUSETUP)
981 WARN("(%p) Unhandled flag DDSCL_FPUSETUP, harmless\n", This);
983 /* Store the cooperative_level */
984 This->cooperative_level = cooplevel;
985 TRACE("SetCooperativeLevel retuning DD_OK\n");
986 wined3d_mutex_unlock();
988 return DD_OK;
991 static HRESULT WINAPI ddraw4_SetCooperativeLevel(IDirectDraw4 *iface, HWND window, DWORD flags)
993 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
995 TRACE("iface %p, window %p, flags %#x.\n", iface, window, flags);
997 return ddraw7_SetCooperativeLevel(&ddraw->IDirectDraw7_iface, window, flags);
1000 static HRESULT WINAPI ddraw2_SetCooperativeLevel(IDirectDraw2 *iface, HWND window, DWORD flags)
1002 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
1004 TRACE("iface %p, window %p, flags %#x.\n", iface, window, flags);
1006 return ddraw7_SetCooperativeLevel(&ddraw->IDirectDraw7_iface, window, flags);
1009 static HRESULT WINAPI ddraw1_SetCooperativeLevel(IDirectDraw *iface, HWND window, DWORD flags)
1011 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
1013 TRACE("iface %p, window %p, flags %#x.\n", iface, window, flags);
1015 return ddraw7_SetCooperativeLevel(&ddraw->IDirectDraw7_iface, window, flags);
1018 /*****************************************************************************
1020 * Helper function for SetDisplayMode and RestoreDisplayMode
1022 * Implements DirectDraw's SetDisplayMode, but ignores the value of
1023 * ForceRefreshRate, since it is already handled by
1024 * ddraw7_SetDisplayMode. RestoreDisplayMode can use this function
1025 * without worrying that ForceRefreshRate will override the refresh rate. For
1026 * argument and return value documentation, see
1027 * ddraw7_SetDisplayMode.
1029 *****************************************************************************/
1030 static HRESULT ddraw_set_display_mode(struct ddraw *ddraw, DWORD Width, DWORD Height,
1031 DWORD BPP, DWORD RefreshRate, DWORD Flags)
1033 struct wined3d_display_mode mode;
1034 enum wined3d_format_id format;
1035 HRESULT hr;
1037 TRACE("ddraw %p, width %u, height %u, bpp %u, refresh_rate %u, flags %#x.\n", ddraw, Width,
1038 Height, BPP, RefreshRate, Flags);
1040 wined3d_mutex_lock();
1041 if( !Width || !Height )
1043 ERR("Width %u, Height %u, what to do?\n", Width, Height);
1044 /* It looks like Need for Speed Porsche Unleashed expects DD_OK here */
1045 wined3d_mutex_unlock();
1046 return DD_OK;
1049 switch(BPP)
1051 case 8: format = WINED3DFMT_P8_UINT; break;
1052 case 15: format = WINED3DFMT_B5G5R5X1_UNORM; break;
1053 case 16: format = WINED3DFMT_B5G6R5_UNORM; break;
1054 case 24: format = WINED3DFMT_B8G8R8_UNORM; break;
1055 case 32: format = WINED3DFMT_B8G8R8X8_UNORM; break;
1056 default: format = WINED3DFMT_UNKNOWN; break;
1059 /* Check the exclusive mode
1060 if(!(ddraw->cooperative_level & DDSCL_EXCLUSIVE))
1061 return DDERR_NOEXCLUSIVEMODE;
1062 * This is WRONG. Don't know if the SDK is completely
1063 * wrong and if there are any conditions when DDERR_NOEXCLUSIVE
1064 * is returned, but Half-Life 1.1.1.1 (Steam version)
1065 * depends on this
1068 mode.width = Width;
1069 mode.height = Height;
1070 mode.refresh_rate = RefreshRate;
1071 mode.format_id = format;
1072 mode.scanline_ordering = WINED3D_SCANLINE_ORDERING_UNKNOWN;
1074 /* TODO: The possible return values from msdn suggest that
1075 * the screen mode can't be changed if a surface is locked
1076 * or some drawing is in progress
1079 /* TODO: Lose the primary surface */
1080 hr = wined3d_set_adapter_display_mode(ddraw->wined3d, WINED3DADAPTER_DEFAULT, &mode);
1082 wined3d_mutex_unlock();
1084 switch(hr)
1086 case WINED3DERR_NOTAVAILABLE: return DDERR_UNSUPPORTED;
1087 default: return hr;
1091 /*****************************************************************************
1092 * IDirectDraw7::SetDisplayMode
1094 * Sets the display screen resolution, color depth and refresh frequency
1095 * when in fullscreen mode (in theory).
1096 * Possible return values listed in the SDK suggest that this method fails
1097 * when not in fullscreen mode, but this is wrong. Windows 2000 happily sets
1098 * the display mode in DDSCL_NORMAL mode without an hwnd specified.
1099 * It seems to be valid to pass 0 for With and Height, this has to be tested
1100 * It could mean that the current video mode should be left as-is. (But why
1101 * call it then?)
1103 * Params:
1104 * Height, Width: Screen dimension
1105 * BPP: Color depth in Bits per pixel
1106 * Refreshrate: Screen refresh rate
1107 * Flags: Other stuff
1109 * Returns
1110 * DD_OK on success
1112 *****************************************************************************/
1113 static HRESULT WINAPI ddraw7_SetDisplayMode(IDirectDraw7 *iface, DWORD Width, DWORD Height,
1114 DWORD BPP, DWORD RefreshRate, DWORD Flags)
1116 struct ddraw *ddraw = impl_from_IDirectDraw7(iface);
1118 TRACE("iface %p, width %u, height %u, bpp %u, refresh_rate %u, flags %#x.\n",
1119 iface, Width, Height, BPP, RefreshRate, Flags);
1121 if (force_refresh_rate != 0)
1123 TRACE("ForceRefreshRate overriding passed-in refresh rate (%u Hz) to %u Hz\n",
1124 RefreshRate, force_refresh_rate);
1125 RefreshRate = force_refresh_rate;
1128 return ddraw_set_display_mode(ddraw, Width, Height, BPP, RefreshRate, Flags);
1131 static HRESULT WINAPI ddraw4_SetDisplayMode(IDirectDraw4 *iface, DWORD width, DWORD height,
1132 DWORD bpp, DWORD refresh_rate, DWORD flags)
1134 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
1136 TRACE("iface %p, width %u, height %u, bpp %u, refresh_rate %u, flags %#x.\n",
1137 iface, width, height, bpp, refresh_rate, flags);
1139 return ddraw7_SetDisplayMode(&ddraw->IDirectDraw7_iface, width, height, bpp, refresh_rate, flags);
1142 static HRESULT WINAPI ddraw2_SetDisplayMode(IDirectDraw2 *iface,
1143 DWORD width, DWORD height, DWORD bpp, DWORD refresh_rate, DWORD flags)
1145 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
1147 TRACE("iface %p, width %u, height %u, bpp %u, refresh_rate %u, flags %#x.\n",
1148 iface, width, height, bpp, refresh_rate, flags);
1150 return ddraw7_SetDisplayMode(&ddraw->IDirectDraw7_iface, width, height, bpp, refresh_rate, flags);
1153 static HRESULT WINAPI ddraw1_SetDisplayMode(IDirectDraw *iface, DWORD width, DWORD height, DWORD bpp)
1155 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
1157 TRACE("iface %p, width %u, height %u, bpp %u.\n", iface, width, height, bpp);
1159 return ddraw7_SetDisplayMode(&ddraw->IDirectDraw7_iface, width, height, bpp, 0, 0);
1162 /*****************************************************************************
1163 * IDirectDraw7::RestoreDisplayMode
1165 * Restores the display mode to what it was at creation time. Basically.
1167 * A problem arises when there are 2 DirectDraw objects using the same hwnd:
1168 * -> DD_1 finds the screen at 1400x1050x32 when created, sets it to 640x480x16
1169 * -> DD_2 is created, finds the screen at 640x480x16, sets it to 1024x768x32
1170 * -> DD_1 is released. The screen should be left at 1024x768x32.
1171 * -> DD_2 is released. The screen should be set to 1400x1050x32
1172 * This case is unhandled right now, but Empire Earth does it this way.
1173 * (But perhaps there is something in SetCooperativeLevel to prevent this)
1175 * The msdn says that this method resets the display mode to what it was before
1176 * SetDisplayMode was called. What if SetDisplayModes is called 2 times??
1178 * Returns
1179 * DD_OK on success
1180 * DDERR_NOEXCLUSIVE mode if the device isn't in fullscreen mode
1182 *****************************************************************************/
1183 static HRESULT WINAPI ddraw7_RestoreDisplayMode(IDirectDraw7 *iface)
1185 struct ddraw *ddraw = impl_from_IDirectDraw7(iface);
1187 TRACE("iface %p.\n", iface);
1189 return ddraw_set_display_mode(ddraw, ddraw->orig_width, ddraw->orig_height, ddraw->orig_bpp, 0, 0);
1192 static HRESULT WINAPI ddraw4_RestoreDisplayMode(IDirectDraw4 *iface)
1194 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
1196 TRACE("iface %p.\n", iface);
1198 return ddraw7_RestoreDisplayMode(&ddraw->IDirectDraw7_iface);
1201 static HRESULT WINAPI ddraw2_RestoreDisplayMode(IDirectDraw2 *iface)
1203 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
1205 TRACE("iface %p.\n", iface);
1207 return ddraw7_RestoreDisplayMode(&ddraw->IDirectDraw7_iface);
1210 static HRESULT WINAPI ddraw1_RestoreDisplayMode(IDirectDraw *iface)
1212 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
1214 TRACE("iface %p.\n", iface);
1216 return ddraw7_RestoreDisplayMode(&ddraw->IDirectDraw7_iface);
1219 /*****************************************************************************
1220 * IDirectDraw7::GetCaps
1222 * Returns the drives capabilities
1224 * Used for version 1, 2, 4 and 7
1226 * Params:
1227 * DriverCaps: Structure to write the Hardware accelerated caps to
1228 * HelCaps: Structure to write the emulation caps to
1230 * Returns
1231 * This implementation returns DD_OK only
1233 *****************************************************************************/
1234 static HRESULT WINAPI ddraw7_GetCaps(IDirectDraw7 *iface, DDCAPS *DriverCaps, DDCAPS *HELCaps)
1236 struct ddraw *ddraw = impl_from_IDirectDraw7(iface);
1237 DDCAPS caps;
1238 WINED3DCAPS winecaps;
1239 HRESULT hr;
1240 DDSCAPS2 ddscaps = {0, 0, 0, 0};
1242 TRACE("iface %p, driver_caps %p, hel_caps %p.\n", iface, DriverCaps, HELCaps);
1244 /* One structure must be != NULL */
1245 if (!DriverCaps && !HELCaps)
1247 WARN("Invalid parameters.\n");
1248 return DDERR_INVALIDPARAMS;
1251 memset(&caps, 0, sizeof(caps));
1252 memset(&winecaps, 0, sizeof(winecaps));
1253 caps.dwSize = sizeof(caps);
1255 wined3d_mutex_lock();
1256 hr = wined3d_device_get_device_caps(ddraw->wined3d_device, &winecaps);
1257 if (FAILED(hr))
1259 WARN("IWineD3DDevice::GetDeviceCaps failed\n");
1260 wined3d_mutex_unlock();
1261 return hr;
1264 hr = IDirectDraw7_GetAvailableVidMem(iface, &ddscaps, &caps.dwVidMemTotal, &caps.dwVidMemFree);
1265 wined3d_mutex_unlock();
1266 if(FAILED(hr)) {
1267 WARN("IDirectDraw7::GetAvailableVidMem failed\n");
1268 return hr;
1271 caps.dwCaps = winecaps.ddraw_caps.caps;
1272 caps.dwCaps2 = winecaps.ddraw_caps.caps2;
1273 caps.dwCKeyCaps = winecaps.ddraw_caps.color_key_caps;
1274 caps.dwFXCaps = winecaps.ddraw_caps.fx_caps;
1275 caps.dwPalCaps = winecaps.ddraw_caps.pal_caps;
1276 caps.ddsCaps.dwCaps = winecaps.ddraw_caps.dds_caps;
1277 caps.dwSVBCaps = winecaps.ddraw_caps.svb_caps;
1278 caps.dwSVBCKeyCaps = winecaps.ddraw_caps.svb_color_key_caps;
1279 caps.dwSVBFXCaps = winecaps.ddraw_caps.svb_fx_caps;
1280 caps.dwVSBCaps = winecaps.ddraw_caps.vsb_caps;
1281 caps.dwVSBCKeyCaps = winecaps.ddraw_caps.vsb_color_key_caps;
1282 caps.dwVSBFXCaps = winecaps.ddraw_caps.vsb_fx_caps;
1283 caps.dwSSBCaps = winecaps.ddraw_caps.ssb_caps;
1284 caps.dwSSBCKeyCaps = winecaps.ddraw_caps.ssb_color_key_caps;
1285 caps.dwSSBFXCaps = winecaps.ddraw_caps.ssb_fx_caps;
1287 /* Even if WineD3D supports 3D rendering, remove the cap if ddraw is configured
1288 * not to use it
1290 if (DefaultSurfaceType == WINED3D_SURFACE_TYPE_GDI)
1292 caps.dwCaps &= ~DDCAPS_3D;
1293 caps.ddsCaps.dwCaps &= ~(DDSCAPS_3DDEVICE | DDSCAPS_MIPMAP | DDSCAPS_TEXTURE | DDSCAPS_ZBUFFER);
1295 if (winecaps.ddraw_caps.stride_align)
1297 caps.dwCaps |= DDCAPS_ALIGNSTRIDE;
1298 caps.dwAlignStrideAlign = winecaps.ddraw_caps.stride_align;
1301 if(DriverCaps)
1303 DD_STRUCT_COPY_BYSIZE(DriverCaps, &caps);
1304 if (TRACE_ON(ddraw))
1306 TRACE("Driver Caps :\n");
1307 DDRAW_dump_DDCAPS(DriverCaps);
1311 if(HELCaps)
1313 DD_STRUCT_COPY_BYSIZE(HELCaps, &caps);
1314 if (TRACE_ON(ddraw))
1316 TRACE("HEL Caps :\n");
1317 DDRAW_dump_DDCAPS(HELCaps);
1321 return DD_OK;
1324 static HRESULT WINAPI ddraw4_GetCaps(IDirectDraw4 *iface, DDCAPS *driver_caps, DDCAPS *hel_caps)
1326 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
1328 TRACE("iface %p, driver_caps %p, hel_caps %p.\n", iface, driver_caps, hel_caps);
1330 return ddraw7_GetCaps(&ddraw->IDirectDraw7_iface, driver_caps, hel_caps);
1333 static HRESULT WINAPI ddraw2_GetCaps(IDirectDraw2 *iface, DDCAPS *driver_caps, DDCAPS *hel_caps)
1335 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
1337 TRACE("iface %p, driver_caps %p, hel_caps %p.\n", iface, driver_caps, hel_caps);
1339 return ddraw7_GetCaps(&ddraw->IDirectDraw7_iface, driver_caps, hel_caps);
1342 static HRESULT WINAPI ddraw1_GetCaps(IDirectDraw *iface, DDCAPS *driver_caps, DDCAPS *hel_caps)
1344 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
1346 TRACE("iface %p, driver_caps %p, hel_caps %p.\n", iface, driver_caps, hel_caps);
1348 return ddraw7_GetCaps(&ddraw->IDirectDraw7_iface, driver_caps, hel_caps);
1351 /*****************************************************************************
1352 * IDirectDraw7::Compact
1354 * No idea what it does, MSDN says it's not implemented.
1356 * Returns
1357 * DD_OK, but this is unchecked
1359 *****************************************************************************/
1360 static HRESULT WINAPI ddraw7_Compact(IDirectDraw7 *iface)
1362 TRACE("iface %p.\n", iface);
1364 return DD_OK;
1367 static HRESULT WINAPI ddraw4_Compact(IDirectDraw4 *iface)
1369 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
1371 TRACE("iface %p.\n", iface);
1373 return ddraw7_Compact(&ddraw->IDirectDraw7_iface);
1376 static HRESULT WINAPI ddraw2_Compact(IDirectDraw2 *iface)
1378 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
1380 TRACE("iface %p.\n", iface);
1382 return ddraw7_Compact(&ddraw->IDirectDraw7_iface);
1385 static HRESULT WINAPI ddraw1_Compact(IDirectDraw *iface)
1387 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
1389 TRACE("iface %p.\n", iface);
1391 return ddraw7_Compact(&ddraw->IDirectDraw7_iface);
1394 /*****************************************************************************
1395 * IDirectDraw7::GetDisplayMode
1397 * Returns information about the current display mode
1399 * Exists in Version 1, 2, 4 and 7
1401 * Params:
1402 * DDSD: Address of a surface description structure to write the info to
1404 * Returns
1405 * DD_OK
1407 *****************************************************************************/
1408 static HRESULT WINAPI ddraw7_GetDisplayMode(IDirectDraw7 *iface, DDSURFACEDESC2 *DDSD)
1410 struct ddraw *ddraw = impl_from_IDirectDraw7(iface);
1411 struct wined3d_display_mode mode;
1412 HRESULT hr;
1413 DWORD Size;
1415 TRACE("iface %p, surface_desc %p.\n", iface, DDSD);
1417 wined3d_mutex_lock();
1418 /* This seems sane */
1419 if (!DDSD)
1421 wined3d_mutex_unlock();
1422 return DDERR_INVALIDPARAMS;
1425 if (FAILED(hr = wined3d_get_adapter_display_mode(ddraw->wined3d, WINED3DADAPTER_DEFAULT, &mode, NULL)))
1427 ERR("Failed to get display mode, hr %#x.\n", hr);
1428 wined3d_mutex_unlock();
1429 return hr;
1432 Size = DDSD->dwSize;
1433 memset(DDSD, 0, Size);
1435 DDSD->dwSize = Size;
1436 DDSD->dwFlags |= DDSD_HEIGHT | DDSD_WIDTH | DDSD_PIXELFORMAT | DDSD_PITCH | DDSD_REFRESHRATE;
1437 DDSD->dwWidth = mode.width;
1438 DDSD->dwHeight = mode.height;
1439 DDSD->u2.dwRefreshRate = 60;
1440 DDSD->ddsCaps.dwCaps = 0;
1441 DDSD->u4.ddpfPixelFormat.dwSize = sizeof(DDSD->u4.ddpfPixelFormat);
1442 PixelFormat_WineD3DtoDD(&DDSD->u4.ddpfPixelFormat, mode.format_id);
1443 DDSD->u1.lPitch = mode.width * DDSD->u4.ddpfPixelFormat.u1.dwRGBBitCount / 8;
1445 if(TRACE_ON(ddraw))
1447 TRACE("Returning surface desc :\n");
1448 DDRAW_dump_surface_desc(DDSD);
1451 wined3d_mutex_unlock();
1453 return DD_OK;
1456 static HRESULT WINAPI ddraw4_GetDisplayMode(IDirectDraw4 *iface, DDSURFACEDESC2 *surface_desc)
1458 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
1460 TRACE("iface %p, surface_desc %p.\n", iface, surface_desc);
1462 return ddraw7_GetDisplayMode(&ddraw->IDirectDraw7_iface, surface_desc);
1465 static HRESULT WINAPI ddraw2_GetDisplayMode(IDirectDraw2 *iface, DDSURFACEDESC *surface_desc)
1467 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
1469 TRACE("iface %p, surface_desc %p.\n", iface, surface_desc);
1471 /* FIXME: Test sizes, properly convert surface_desc */
1472 return ddraw7_GetDisplayMode(&ddraw->IDirectDraw7_iface, (DDSURFACEDESC2 *)surface_desc);
1475 static HRESULT WINAPI ddraw1_GetDisplayMode(IDirectDraw *iface, DDSURFACEDESC *surface_desc)
1477 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
1479 TRACE("iface %p, surface_desc %p.\n", iface, surface_desc);
1481 /* FIXME: Test sizes, properly convert surface_desc */
1482 return ddraw7_GetDisplayMode(&ddraw->IDirectDraw7_iface, (DDSURFACEDESC2 *)surface_desc);
1485 /*****************************************************************************
1486 * IDirectDraw7::GetFourCCCodes
1488 * Returns an array of supported FourCC codes.
1490 * Exists in Version 1, 2, 4 and 7
1492 * Params:
1493 * NumCodes: Contains the number of Codes that Codes can carry. Returns the number
1494 * of enumerated codes
1495 * Codes: Pointer to an array of DWORDs where the supported codes are written
1496 * to
1498 * Returns
1499 * Always returns DD_OK, as it's a stub for now
1501 *****************************************************************************/
1502 static HRESULT WINAPI ddraw7_GetFourCCCodes(IDirectDraw7 *iface, DWORD *NumCodes, DWORD *Codes)
1504 struct ddraw *ddraw = impl_from_IDirectDraw7(iface);
1505 static const enum wined3d_format_id formats[] =
1507 WINED3DFMT_YUY2, WINED3DFMT_UYVY, WINED3DFMT_YV12,
1508 WINED3DFMT_DXT1, WINED3DFMT_DXT2, WINED3DFMT_DXT3, WINED3DFMT_DXT4, WINED3DFMT_DXT5,
1509 WINED3DFMT_ATI2N, WINED3DFMT_NVHU, WINED3DFMT_NVHS
1511 struct wined3d_display_mode mode;
1512 DWORD count = 0, i, outsize;
1513 HRESULT hr;
1515 TRACE("iface %p, codes_count %p, codes %p.\n", iface, NumCodes, Codes);
1517 if (FAILED(hr = wined3d_get_adapter_display_mode(ddraw->wined3d, WINED3DADAPTER_DEFAULT, &mode, NULL)))
1519 ERR("Failed to get display mode, hr %#x.\n", hr);
1520 return hr;
1523 outsize = NumCodes && Codes ? *NumCodes : 0;
1525 for (i = 0; i < (sizeof(formats) / sizeof(formats[0])); ++i)
1527 hr = wined3d_check_device_format(ddraw->wined3d, WINED3DADAPTER_DEFAULT, WINED3D_DEVICE_TYPE_HAL,
1528 mode.format_id, 0, WINED3D_RTYPE_SURFACE, formats[i], DefaultSurfaceType);
1529 if (SUCCEEDED(hr))
1531 if (count < outsize)
1532 Codes[count] = formats[i];
1533 ++count;
1536 if(NumCodes) {
1537 TRACE("Returning %u FourCC codes\n", count);
1538 *NumCodes = count;
1541 return DD_OK;
1544 static HRESULT WINAPI ddraw4_GetFourCCCodes(IDirectDraw4 *iface, DWORD *codes_count, DWORD *codes)
1546 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
1548 TRACE("iface %p, codes_count %p, codes %p.\n", iface, codes_count, codes);
1550 return ddraw7_GetFourCCCodes(&ddraw->IDirectDraw7_iface, codes_count, codes);
1553 static HRESULT WINAPI ddraw2_GetFourCCCodes(IDirectDraw2 *iface, DWORD *codes_count, DWORD *codes)
1555 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
1557 TRACE("iface %p, codes_count %p, codes %p.\n", iface, codes_count, codes);
1559 return ddraw7_GetFourCCCodes(&ddraw->IDirectDraw7_iface, codes_count, codes);
1562 static HRESULT WINAPI ddraw1_GetFourCCCodes(IDirectDraw *iface, DWORD *codes_count, DWORD *codes)
1564 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
1566 TRACE("iface %p, codes_count %p, codes %p.\n", iface, codes_count, codes);
1568 return ddraw7_GetFourCCCodes(&ddraw->IDirectDraw7_iface, codes_count, codes);
1571 /*****************************************************************************
1572 * IDirectDraw7::GetMonitorFrequency
1574 * Returns the monitor's frequency
1576 * Exists in Version 1, 2, 4 and 7
1578 * Params:
1579 * Freq: Pointer to a DWORD to write the frequency to
1581 * Returns
1582 * Always returns DD_OK
1584 *****************************************************************************/
1585 static HRESULT WINAPI ddraw7_GetMonitorFrequency(IDirectDraw7 *iface, DWORD *Freq)
1587 FIXME("iface %p, frequency %p stub!\n", iface, Freq);
1589 /* Ideally this should be in WineD3D, as it concerns the screen setup,
1590 * but for now this should make the games happy
1592 *Freq = 60;
1593 return DD_OK;
1596 static HRESULT WINAPI ddraw4_GetMonitorFrequency(IDirectDraw4 *iface, DWORD *frequency)
1598 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
1600 TRACE("iface %p, frequency %p.\n", iface, frequency);
1602 return ddraw7_GetMonitorFrequency(&ddraw->IDirectDraw7_iface, frequency);
1605 static HRESULT WINAPI ddraw2_GetMonitorFrequency(IDirectDraw2 *iface, DWORD *frequency)
1607 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
1609 TRACE("iface %p, frequency %p.\n", iface, frequency);
1611 return ddraw7_GetMonitorFrequency(&ddraw->IDirectDraw7_iface, frequency);
1614 static HRESULT WINAPI ddraw1_GetMonitorFrequency(IDirectDraw *iface, DWORD *frequency)
1616 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
1618 TRACE("iface %p, frequency %p.\n", iface, frequency);
1620 return ddraw7_GetMonitorFrequency(&ddraw->IDirectDraw7_iface, frequency);
1623 /*****************************************************************************
1624 * IDirectDraw7::GetVerticalBlankStatus
1626 * Returns the Vertical blank status of the monitor. This should be in WineD3D
1627 * too basically, but as it's a semi stub, I didn't create a function there
1629 * Params:
1630 * status: Pointer to a BOOL to be filled with the vertical blank status
1632 * Returns
1633 * DD_OK on success
1634 * DDERR_INVALIDPARAMS if status is NULL
1636 *****************************************************************************/
1637 static HRESULT WINAPI ddraw7_GetVerticalBlankStatus(IDirectDraw7 *iface, BOOL *status)
1639 static BOOL fake_vblank;
1641 TRACE("iface %p, status %p.\n", iface, status);
1643 if(!status)
1644 return DDERR_INVALIDPARAMS;
1646 *status = fake_vblank;
1647 fake_vblank = !fake_vblank;
1649 return DD_OK;
1652 static HRESULT WINAPI ddraw4_GetVerticalBlankStatus(IDirectDraw4 *iface, BOOL *status)
1654 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
1656 TRACE("iface %p, status %p.\n", iface, status);
1658 return ddraw7_GetVerticalBlankStatus(&ddraw->IDirectDraw7_iface, status);
1661 static HRESULT WINAPI ddraw2_GetVerticalBlankStatus(IDirectDraw2 *iface, BOOL *status)
1663 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
1665 TRACE("iface %p, status %p.\n", iface, status);
1667 return ddraw7_GetVerticalBlankStatus(&ddraw->IDirectDraw7_iface, status);
1670 static HRESULT WINAPI ddraw1_GetVerticalBlankStatus(IDirectDraw *iface, BOOL *status)
1672 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
1674 TRACE("iface %p, status %p.\n", iface, status);
1676 return ddraw7_GetVerticalBlankStatus(&ddraw->IDirectDraw7_iface, status);
1679 /*****************************************************************************
1680 * IDirectDraw7::GetAvailableVidMem
1682 * Returns the total and free video memory
1684 * Params:
1685 * Caps: Specifies the memory type asked for
1686 * total: Pointer to a DWORD to be filled with the total memory
1687 * free: Pointer to a DWORD to be filled with the free memory
1689 * Returns
1690 * DD_OK on success
1691 * DDERR_INVALIDPARAMS of free and total are NULL
1693 *****************************************************************************/
1694 static HRESULT WINAPI ddraw7_GetAvailableVidMem(IDirectDraw7 *iface, DDSCAPS2 *Caps, DWORD *total,
1695 DWORD *free)
1697 struct ddraw *ddraw = impl_from_IDirectDraw7(iface);
1698 HRESULT hr = DD_OK;
1700 TRACE("iface %p, caps %p, total %p, free %p.\n", iface, Caps, total, free);
1702 if (TRACE_ON(ddraw))
1704 TRACE("Asked for memory with description: ");
1705 DDRAW_dump_DDSCAPS2(Caps);
1707 wined3d_mutex_lock();
1709 /* Todo: System memory vs local video memory vs non-local video memory
1710 * The MSDN also mentions differences between texture memory and other
1711 * resources, but that's not important
1714 if( (!total) && (!free) )
1716 wined3d_mutex_unlock();
1717 return DDERR_INVALIDPARAMS;
1720 if (free)
1721 *free = wined3d_device_get_available_texture_mem(ddraw->wined3d_device);
1722 if (total)
1724 struct wined3d_adapter_identifier desc = {0};
1726 hr = wined3d_get_adapter_identifier(ddraw->wined3d, WINED3DADAPTER_DEFAULT, 0, &desc);
1727 *total = desc.video_memory;
1730 wined3d_mutex_unlock();
1732 return hr;
1735 static HRESULT WINAPI ddraw4_GetAvailableVidMem(IDirectDraw4 *iface,
1736 DDSCAPS2 *caps, DWORD *total, DWORD *free)
1738 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
1740 TRACE("iface %p, caps %p, total %p, free %p.\n", iface, caps, total, free);
1742 return ddraw7_GetAvailableVidMem(&ddraw->IDirectDraw7_iface, caps, total, free);
1745 static HRESULT WINAPI ddraw2_GetAvailableVidMem(IDirectDraw2 *iface,
1746 DDSCAPS *caps, DWORD *total, DWORD *free)
1748 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
1749 DDSCAPS2 caps2;
1751 TRACE("iface %p, caps %p, total %p, free %p.\n", iface, caps, total, free);
1753 DDRAW_Convert_DDSCAPS_1_To_2(caps, &caps2);
1754 return ddraw7_GetAvailableVidMem(&ddraw->IDirectDraw7_iface, &caps2, total, free);
1757 /*****************************************************************************
1758 * IDirectDraw7::Initialize
1760 * Initializes a DirectDraw interface.
1762 * Params:
1763 * GUID: Interface identifier. Well, don't know what this is really good
1764 * for
1766 * Returns
1767 * Returns DD_OK on the first call,
1768 * DDERR_ALREADYINITIALIZED on repeated calls
1770 *****************************************************************************/
1771 static HRESULT WINAPI ddraw7_Initialize(IDirectDraw7 *iface, GUID *guid)
1773 struct ddraw *ddraw = impl_from_IDirectDraw7(iface);
1775 TRACE("iface %p, guid %s.\n", iface, debugstr_guid(guid));
1777 if (ddraw->initialized)
1778 return DDERR_ALREADYINITIALIZED;
1780 /* FIXME: To properly take the GUID into account we should call
1781 * ddraw_init() here instead of in DDRAW_Create(). */
1782 if (guid)
1783 FIXME("Ignoring guid %s.\n", debugstr_guid(guid));
1785 ddraw->initialized = TRUE;
1786 return DD_OK;
1789 static HRESULT WINAPI ddraw4_Initialize(IDirectDraw4 *iface, GUID *guid)
1791 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
1793 TRACE("iface %p, guid %s.\n", iface, debugstr_guid(guid));
1795 return ddraw7_Initialize(&ddraw->IDirectDraw7_iface, guid);
1798 static HRESULT WINAPI ddraw2_Initialize(IDirectDraw2 *iface, GUID *guid)
1800 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
1802 TRACE("iface %p, guid %s.\n", iface, debugstr_guid(guid));
1804 return ddraw7_Initialize(&ddraw->IDirectDraw7_iface, guid);
1807 static HRESULT WINAPI ddraw1_Initialize(IDirectDraw *iface, GUID *guid)
1809 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
1811 TRACE("iface %p, guid %s.\n", iface, debugstr_guid(guid));
1813 return ddraw7_Initialize(&ddraw->IDirectDraw7_iface, guid);
1816 static HRESULT WINAPI d3d1_Initialize(IDirect3D *iface, REFIID riid)
1818 TRACE("iface %p, riid %s.\n", iface, debugstr_guid(riid));
1820 return DDERR_ALREADYINITIALIZED;
1823 /*****************************************************************************
1824 * IDirectDraw7::FlipToGDISurface
1826 * "Makes the surface that the GDI writes to the primary surface"
1827 * Looks like some windows specific thing we don't have to care about.
1828 * According to MSDN it permits GDI dialog boxes in FULLSCREEN mode. Good to
1829 * show error boxes ;)
1830 * Well, just return DD_OK.
1832 * Returns:
1833 * Always returns DD_OK
1835 *****************************************************************************/
1836 static HRESULT WINAPI ddraw7_FlipToGDISurface(IDirectDraw7 *iface)
1838 FIXME("iface %p stub!\n", iface);
1840 return DD_OK;
1843 static HRESULT WINAPI ddraw4_FlipToGDISurface(IDirectDraw4 *iface)
1845 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
1847 TRACE("iface %p.\n", iface);
1849 return ddraw7_FlipToGDISurface(&ddraw->IDirectDraw7_iface);
1852 static HRESULT WINAPI ddraw2_FlipToGDISurface(IDirectDraw2 *iface)
1854 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
1856 TRACE("iface %p.\n", iface);
1858 return ddraw7_FlipToGDISurface(&ddraw->IDirectDraw7_iface);
1861 static HRESULT WINAPI ddraw1_FlipToGDISurface(IDirectDraw *iface)
1863 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
1865 TRACE("iface %p.\n", iface);
1867 return ddraw7_FlipToGDISurface(&ddraw->IDirectDraw7_iface);
1870 /*****************************************************************************
1871 * IDirectDraw7::WaitForVerticalBlank
1873 * This method allows applications to get in sync with the vertical blank
1874 * interval.
1875 * The wormhole demo in the DirectX 7 sdk uses this call, and it doesn't
1876 * redraw the screen, most likely because of this stub
1878 * Parameters:
1879 * Flags: one of DDWAITVB_BLOCKBEGIN, DDWAITVB_BLOCKBEGINEVENT
1880 * or DDWAITVB_BLOCKEND
1881 * h: Not used, according to MSDN
1883 * Returns:
1884 * Always returns DD_OK
1886 *****************************************************************************/
1887 static HRESULT WINAPI ddraw7_WaitForVerticalBlank(IDirectDraw7 *iface, DWORD Flags, HANDLE event)
1889 static BOOL hide;
1891 TRACE("iface %p, flags %#x, event %p.\n", iface, Flags, event);
1893 /* This function is called often, so print the fixme only once */
1894 if(!hide)
1896 FIXME("iface %p, flags %#x, event %p stub!\n", iface, Flags, event);
1897 hide = TRUE;
1900 /* MSDN says DDWAITVB_BLOCKBEGINEVENT is not supported */
1901 if(Flags & DDWAITVB_BLOCKBEGINEVENT)
1902 return DDERR_UNSUPPORTED; /* unchecked */
1904 return DD_OK;
1907 static HRESULT WINAPI ddraw4_WaitForVerticalBlank(IDirectDraw4 *iface, DWORD flags, HANDLE event)
1909 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
1911 TRACE("iface %p, flags %#x, event %p.\n", iface, flags, event);
1913 return ddraw7_WaitForVerticalBlank(&ddraw->IDirectDraw7_iface, flags, event);
1916 static HRESULT WINAPI ddraw2_WaitForVerticalBlank(IDirectDraw2 *iface, DWORD flags, HANDLE event)
1918 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
1920 TRACE("iface %p, flags %#x, event %p.\n", iface, flags, event);
1922 return ddraw7_WaitForVerticalBlank(&ddraw->IDirectDraw7_iface, flags, event);
1925 static HRESULT WINAPI ddraw1_WaitForVerticalBlank(IDirectDraw *iface, DWORD flags, HANDLE event)
1927 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
1929 TRACE("iface %p, flags %#x, event %p.\n", iface, flags, event);
1931 return ddraw7_WaitForVerticalBlank(&ddraw->IDirectDraw7_iface, flags, event);
1934 /*****************************************************************************
1935 * IDirectDraw7::GetScanLine
1937 * Returns the scan line that is being drawn on the monitor
1939 * Parameters:
1940 * Scanline: Address to write the scan line value to
1942 * Returns:
1943 * Always returns DD_OK
1945 *****************************************************************************/
1946 static HRESULT WINAPI ddraw7_GetScanLine(IDirectDraw7 *iface, DWORD *Scanline)
1948 struct ddraw *ddraw = impl_from_IDirectDraw7(iface);
1949 struct wined3d_display_mode mode;
1950 static BOOL hide = FALSE;
1951 DWORD time, frame_progress, lines;
1952 HRESULT hr;
1954 TRACE("iface %p, line %p.\n", iface, Scanline);
1956 /* This function is called often, so print the fixme only once */
1957 if(!hide)
1959 FIXME("iface %p, line %p partial stub!\n", iface, Scanline);
1960 hide = TRUE;
1963 wined3d_mutex_lock();
1964 hr = wined3d_get_adapter_display_mode(ddraw->wined3d, WINED3DADAPTER_DEFAULT, &mode, NULL);
1965 wined3d_mutex_unlock();
1966 if (FAILED(hr))
1968 ERR("Failed to get display mode, hr %#x.\n", hr);
1969 return hr;
1972 /* Fake the line sweeping of the monitor */
1973 /* FIXME: We should synchronize with a source to keep the refresh rate */
1975 /* Simulate a 60Hz display */
1976 time = GetTickCount();
1977 frame_progress = time & 15; /* time % (1000 / 60) */
1978 if (!frame_progress)
1980 *Scanline = 0;
1981 return DDERR_VERTICALBLANKINPROGRESS;
1984 /* Convert frame_progress to estimated scan line. Return any line from
1985 * block determined by time. Some lines may be never returned */
1986 lines = mode.height / 15;
1987 *Scanline = (frame_progress - 1) * lines + time % lines;
1988 return DD_OK;
1991 static HRESULT WINAPI ddraw4_GetScanLine(IDirectDraw4 *iface, DWORD *line)
1993 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
1995 TRACE("iface %p, line %p.\n", iface, line);
1997 return ddraw7_GetScanLine(&ddraw->IDirectDraw7_iface, line);
2000 static HRESULT WINAPI ddraw2_GetScanLine(IDirectDraw2 *iface, DWORD *line)
2002 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
2004 TRACE("iface %p, line %p.\n", iface, line);
2006 return ddraw7_GetScanLine(&ddraw->IDirectDraw7_iface, line);
2009 static HRESULT WINAPI ddraw1_GetScanLine(IDirectDraw *iface, DWORD *line)
2011 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
2013 TRACE("iface %p, line %p.\n", iface, line);
2015 return ddraw7_GetScanLine(&ddraw->IDirectDraw7_iface, line);
2018 /*****************************************************************************
2019 * IDirectDraw7::TestCooperativeLevel
2021 * Informs the application about the state of the video adapter, depending
2022 * on the cooperative level
2024 * Returns:
2025 * DD_OK if the device is in a sane state
2026 * DDERR_NOEXCLUSIVEMODE or DDERR_EXCLUSIVEMODEALREADYSET
2027 * if the state is not correct(See below)
2029 *****************************************************************************/
2030 static HRESULT WINAPI ddraw7_TestCooperativeLevel(IDirectDraw7 *iface)
2032 TRACE("iface %p.\n", iface);
2034 return DD_OK;
2037 static HRESULT WINAPI ddraw4_TestCooperativeLevel(IDirectDraw4 *iface)
2039 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
2041 TRACE("iface %p.\n", iface);
2043 return ddraw7_TestCooperativeLevel(&ddraw->IDirectDraw7_iface);
2046 /*****************************************************************************
2047 * IDirectDraw7::GetGDISurface
2049 * Returns the surface that GDI is treating as the primary surface.
2050 * For Wine this is the front buffer
2052 * Params:
2053 * GDISurface: Address to write the surface pointer to
2055 * Returns:
2056 * DD_OK if the surface was found
2057 * DDERR_NOTFOUND if the GDI surface wasn't found
2059 *****************************************************************************/
2060 static HRESULT WINAPI ddraw7_GetGDISurface(IDirectDraw7 *iface, IDirectDrawSurface7 **GDISurface)
2062 struct ddraw *ddraw = impl_from_IDirectDraw7(iface);
2064 TRACE("iface %p, surface %p.\n", iface, GDISurface);
2066 wined3d_mutex_lock();
2068 if (!(*GDISurface = &ddraw->primary->IDirectDrawSurface7_iface))
2070 WARN("Primary not created yet.\n");
2071 wined3d_mutex_unlock();
2072 return DDERR_NOTFOUND;
2074 IDirectDrawSurface7_AddRef(*GDISurface);
2076 wined3d_mutex_unlock();
2078 return DD_OK;
2081 static HRESULT WINAPI ddraw4_GetGDISurface(IDirectDraw4 *iface, IDirectDrawSurface4 **surface)
2083 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
2084 struct ddraw_surface *surface_impl;
2085 IDirectDrawSurface7 *surface7;
2086 HRESULT hr;
2088 TRACE("iface %p, surface %p.\n", iface, surface);
2090 hr = ddraw7_GetGDISurface(&ddraw->IDirectDraw7_iface, &surface7);
2091 if (FAILED(hr))
2093 *surface = NULL;
2094 return hr;
2096 surface_impl = impl_from_IDirectDrawSurface7(surface7);
2097 *surface = &surface_impl->IDirectDrawSurface4_iface;
2098 IDirectDrawSurface4_AddRef(*surface);
2099 IDirectDrawSurface7_Release(surface7);
2101 return hr;
2104 static HRESULT WINAPI ddraw2_GetGDISurface(IDirectDraw2 *iface, IDirectDrawSurface **surface)
2106 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
2107 struct ddraw_surface *surface_impl;
2108 IDirectDrawSurface7 *surface7;
2109 HRESULT hr;
2111 TRACE("iface %p, surface %p.\n", iface, surface);
2113 hr = ddraw7_GetGDISurface(&ddraw->IDirectDraw7_iface, &surface7);
2114 if (FAILED(hr))
2116 *surface = NULL;
2117 return hr;
2119 surface_impl = impl_from_IDirectDrawSurface7(surface7);
2120 *surface = &surface_impl->IDirectDrawSurface_iface;
2121 IDirectDrawSurface_AddRef(*surface);
2122 IDirectDrawSurface7_Release(surface7);
2124 return hr;
2127 static HRESULT WINAPI ddraw1_GetGDISurface(IDirectDraw *iface, IDirectDrawSurface **surface)
2129 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
2130 struct ddraw_surface *surface_impl;
2131 IDirectDrawSurface7 *surface7;
2132 HRESULT hr;
2134 TRACE("iface %p, surface %p.\n", iface, surface);
2136 hr = ddraw7_GetGDISurface(&ddraw->IDirectDraw7_iface, &surface7);
2137 if (FAILED(hr))
2139 *surface = NULL;
2140 return hr;
2142 surface_impl = impl_from_IDirectDrawSurface7(surface7);
2143 *surface = &surface_impl->IDirectDrawSurface_iface;
2144 IDirectDrawSurface_AddRef(*surface);
2145 IDirectDrawSurface7_Release(surface7);
2147 return hr;
2150 struct displaymodescallback_context
2152 LPDDENUMMODESCALLBACK func;
2153 void *context;
2156 static HRESULT CALLBACK EnumDisplayModesCallbackThunk(DDSURFACEDESC2 *surface_desc, void *context)
2158 struct displaymodescallback_context *cbcontext = context;
2159 DDSURFACEDESC desc;
2161 DDSD2_to_DDSD(surface_desc, &desc);
2162 return cbcontext->func(&desc, cbcontext->context);
2165 /*****************************************************************************
2166 * IDirectDraw7::EnumDisplayModes
2168 * Enumerates the supported Display modes. The modes can be filtered with
2169 * the DDSD parameter.
2171 * Params:
2172 * Flags: can be DDEDM_REFRESHRATES and DDEDM_STANDARDVGAMODES. For old ddraw
2173 * versions (3 and older?) this is reserved and must be 0.
2174 * DDSD: Surface description to filter the modes
2175 * Context: Pointer passed back to the callback function
2176 * cb: Application-provided callback function
2178 * Returns:
2179 * DD_OK on success
2180 * DDERR_INVALIDPARAMS if the callback wasn't set
2182 *****************************************************************************/
2183 static HRESULT WINAPI ddraw7_EnumDisplayModes(IDirectDraw7 *iface, DWORD Flags,
2184 DDSURFACEDESC2 *DDSD, void *Context, LPDDENUMMODESCALLBACK2 cb)
2186 struct ddraw *ddraw = impl_from_IDirectDraw7(iface);
2187 struct wined3d_display_mode *enum_modes = NULL;
2188 struct wined3d_display_mode mode;
2189 unsigned int modenum, fmt;
2190 DDSURFACEDESC2 callback_sd;
2191 unsigned enum_mode_count = 0, enum_mode_array_size = 0;
2192 DDPIXELFORMAT pixelformat;
2194 static const enum wined3d_format_id checkFormatList[] =
2196 WINED3DFMT_B8G8R8X8_UNORM,
2197 WINED3DFMT_B5G6R5_UNORM,
2198 WINED3DFMT_P8_UINT,
2201 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
2202 iface, Flags, DDSD, Context, cb);
2204 if (!cb)
2205 return DDERR_INVALIDPARAMS;
2207 wined3d_mutex_lock();
2208 if(!(Flags & DDEDM_REFRESHRATES))
2210 enum_mode_array_size = 16;
2211 enum_modes = HeapAlloc(GetProcessHeap(), 0, sizeof(*enum_modes) * enum_mode_array_size);
2212 if (!enum_modes)
2214 ERR("Out of memory\n");
2215 wined3d_mutex_unlock();
2216 return DDERR_OUTOFMEMORY;
2220 pixelformat.dwSize = sizeof(pixelformat);
2221 for(fmt = 0; fmt < (sizeof(checkFormatList) / sizeof(checkFormatList[0])); fmt++)
2223 modenum = 0;
2224 while (wined3d_enum_adapter_modes(ddraw->wined3d, WINED3DADAPTER_DEFAULT, checkFormatList[fmt],
2225 WINED3D_SCANLINE_ORDERING_UNKNOWN, modenum++, &mode) == WINED3D_OK)
2227 PixelFormat_WineD3DtoDD(&pixelformat, mode.format_id);
2228 if (DDSD)
2230 if (DDSD->dwFlags & DDSD_WIDTH && mode.width != DDSD->dwWidth)
2231 continue;
2232 if (DDSD->dwFlags & DDSD_HEIGHT && mode.height != DDSD->dwHeight)
2233 continue;
2234 if (DDSD->dwFlags & DDSD_REFRESHRATE && mode.refresh_rate != DDSD->u2.dwRefreshRate)
2235 continue;
2236 if (DDSD->dwFlags & DDSD_PIXELFORMAT
2237 && pixelformat.u1.dwRGBBitCount != DDSD->u4.ddpfPixelFormat.u1.dwRGBBitCount)
2238 continue;
2241 if(!(Flags & DDEDM_REFRESHRATES))
2243 /* DX docs state EnumDisplayMode should return only unique modes. If DDEDM_REFRESHRATES is not set, refresh
2244 * rate doesn't matter when determining if the mode is unique. So modes only differing in refresh rate have
2245 * to be reduced to a single unique result in such case.
2247 BOOL found = FALSE;
2248 unsigned i;
2250 for (i = 0; i < enum_mode_count; i++)
2252 if (enum_modes[i].width == mode.width && enum_modes[i].height == mode.height
2253 && enum_modes[i].format_id == mode.format_id)
2255 found = TRUE;
2256 break;
2260 if(found) continue;
2263 memset(&callback_sd, 0, sizeof(callback_sd));
2264 callback_sd.dwSize = sizeof(callback_sd);
2265 callback_sd.u4.ddpfPixelFormat.dwSize = sizeof(DDPIXELFORMAT);
2267 callback_sd.dwFlags = DDSD_HEIGHT|DDSD_WIDTH|DDSD_PIXELFORMAT|DDSD_PITCH|DDSD_REFRESHRATE;
2268 if (Flags & DDEDM_REFRESHRATES)
2269 callback_sd.u2.dwRefreshRate = mode.refresh_rate;
2271 callback_sd.dwWidth = mode.width;
2272 callback_sd.dwHeight = mode.height;
2274 callback_sd.u4.ddpfPixelFormat=pixelformat;
2276 /* Calc pitch and DWORD align like MSDN says */
2277 callback_sd.u1.lPitch = (callback_sd.u4.ddpfPixelFormat.u1.dwRGBBitCount / 8) * mode.width;
2278 callback_sd.u1.lPitch = (callback_sd.u1.lPitch + 3) & ~3;
2280 TRACE("Enumerating %dx%dx%d @%d\n", callback_sd.dwWidth, callback_sd.dwHeight, callback_sd.u4.ddpfPixelFormat.u1.dwRGBBitCount,
2281 callback_sd.u2.dwRefreshRate);
2283 if(cb(&callback_sd, Context) == DDENUMRET_CANCEL)
2285 TRACE("Application asked to terminate the enumeration\n");
2286 HeapFree(GetProcessHeap(), 0, enum_modes);
2287 wined3d_mutex_unlock();
2288 return DD_OK;
2291 if(!(Flags & DDEDM_REFRESHRATES))
2293 if (enum_mode_count == enum_mode_array_size)
2295 struct wined3d_display_mode *new_enum_modes;
2297 enum_mode_array_size *= 2;
2298 new_enum_modes = HeapReAlloc(GetProcessHeap(), 0, enum_modes,
2299 sizeof(*new_enum_modes) * enum_mode_array_size);
2300 if (!new_enum_modes)
2302 ERR("Out of memory\n");
2303 HeapFree(GetProcessHeap(), 0, enum_modes);
2304 wined3d_mutex_unlock();
2305 return DDERR_OUTOFMEMORY;
2308 enum_modes = new_enum_modes;
2311 enum_modes[enum_mode_count++] = mode;
2316 TRACE("End of enumeration\n");
2317 HeapFree(GetProcessHeap(), 0, enum_modes);
2318 wined3d_mutex_unlock();
2320 return DD_OK;
2323 static HRESULT WINAPI ddraw4_EnumDisplayModes(IDirectDraw4 *iface, DWORD flags,
2324 DDSURFACEDESC2 *surface_desc, void *context, LPDDENUMMODESCALLBACK2 callback)
2326 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
2328 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
2329 iface, flags, surface_desc, context, callback);
2331 return ddraw7_EnumDisplayModes(&ddraw->IDirectDraw7_iface, flags, surface_desc, context, callback);
2334 static HRESULT WINAPI ddraw2_EnumDisplayModes(IDirectDraw2 *iface, DWORD flags,
2335 DDSURFACEDESC *surface_desc, void *context, LPDDENUMMODESCALLBACK callback)
2337 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
2338 struct displaymodescallback_context cbcontext;
2339 DDSURFACEDESC2 surface_desc2;
2341 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
2342 iface, flags, surface_desc, context, callback);
2344 cbcontext.func = callback;
2345 cbcontext.context = context;
2347 if (surface_desc) DDSD_to_DDSD2(surface_desc, &surface_desc2);
2348 return ddraw7_EnumDisplayModes(&ddraw->IDirectDraw7_iface, flags,
2349 surface_desc ? &surface_desc2 : NULL, &cbcontext, EnumDisplayModesCallbackThunk);
2352 static HRESULT WINAPI ddraw1_EnumDisplayModes(IDirectDraw *iface, DWORD flags,
2353 DDSURFACEDESC *surface_desc, void *context, LPDDENUMMODESCALLBACK callback)
2355 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
2356 struct displaymodescallback_context cbcontext;
2357 DDSURFACEDESC2 surface_desc2;
2359 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
2360 iface, flags, surface_desc, context, callback);
2362 cbcontext.func = callback;
2363 cbcontext.context = context;
2365 if (surface_desc) DDSD_to_DDSD2(surface_desc, &surface_desc2);
2366 return ddraw7_EnumDisplayModes(&ddraw->IDirectDraw7_iface, flags,
2367 surface_desc ? &surface_desc2 : NULL, &cbcontext, EnumDisplayModesCallbackThunk);
2370 /*****************************************************************************
2371 * IDirectDraw7::EvaluateMode
2373 * Used with IDirectDraw7::StartModeTest to test video modes.
2374 * EvaluateMode is used to pass or fail a mode, and continue with the next
2375 * mode
2377 * Params:
2378 * Flags: DDEM_MODEPASSED or DDEM_MODEFAILED
2379 * Timeout: Returns the amount of seconds left before the mode would have
2380 * been failed automatically
2382 * Returns:
2383 * This implementation always DD_OK, because it's a stub
2385 *****************************************************************************/
2386 static HRESULT WINAPI ddraw7_EvaluateMode(IDirectDraw7 *iface, DWORD Flags, DWORD *Timeout)
2388 FIXME("iface %p, flags %#x, timeout %p stub!\n", iface, Flags, Timeout);
2390 /* When implementing this, implement it in WineD3D */
2392 return DD_OK;
2395 /*****************************************************************************
2396 * IDirectDraw7::GetDeviceIdentifier
2398 * Returns the device identifier, which gives information about the driver
2399 * Our device identifier is defined at the beginning of this file.
2401 * Params:
2402 * DDDI: Address for the returned structure
2403 * Flags: Can be DDGDI_GETHOSTIDENTIFIER
2405 * Returns:
2406 * On success it returns DD_OK
2407 * DDERR_INVALIDPARAMS if DDDI is NULL
2409 *****************************************************************************/
2410 static HRESULT WINAPI ddraw7_GetDeviceIdentifier(IDirectDraw7 *iface,
2411 DDDEVICEIDENTIFIER2 *DDDI, DWORD Flags)
2413 TRACE("iface %p, device_identifier %p, flags %#x.\n", iface, DDDI, Flags);
2415 if(!DDDI)
2416 return DDERR_INVALIDPARAMS;
2418 /* The DDGDI_GETHOSTIDENTIFIER returns the information about the 2D
2419 * host adapter, if there's a secondary 3D adapter. This doesn't apply
2420 * to any modern hardware, nor is it interesting for Wine, so ignore it.
2421 * Size of DDDEVICEIDENTIFIER2 may be aligned to 8 bytes and thus 4
2422 * bytes too long. So only copy the relevant part of the structure
2425 memcpy(DDDI, &deviceidentifier, FIELD_OFFSET(DDDEVICEIDENTIFIER2, dwWHQLLevel) + sizeof(DWORD));
2426 return DD_OK;
2429 static HRESULT WINAPI ddraw4_GetDeviceIdentifier(IDirectDraw4 *iface,
2430 DDDEVICEIDENTIFIER *identifier, DWORD flags)
2432 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
2433 DDDEVICEIDENTIFIER2 identifier2;
2434 HRESULT hr;
2436 TRACE("iface %p, identifier %p, flags %#x.\n", iface, identifier, flags);
2438 hr = ddraw7_GetDeviceIdentifier(&ddraw->IDirectDraw7_iface, &identifier2, flags);
2439 DDRAW_Convert_DDDEVICEIDENTIFIER_2_To_1(&identifier2, identifier);
2441 return hr;
2444 /*****************************************************************************
2445 * IDirectDraw7::GetSurfaceFromDC
2447 * Returns the Surface for a GDI device context handle.
2448 * Is this related to IDirectDrawSurface::GetDC ???
2450 * Params:
2451 * hdc: hdc to return the surface for
2452 * Surface: Address to write the surface pointer to
2454 * Returns:
2455 * Always returns DD_OK because it's a stub
2457 *****************************************************************************/
2458 static HRESULT WINAPI ddraw7_GetSurfaceFromDC(IDirectDraw7 *iface, HDC hdc,
2459 IDirectDrawSurface7 **Surface)
2461 struct ddraw *ddraw = impl_from_IDirectDraw7(iface);
2462 struct wined3d_surface *wined3d_surface;
2463 struct ddraw_surface *surface_impl;
2464 HRESULT hr;
2466 TRACE("iface %p, dc %p, surface %p.\n", iface, hdc, Surface);
2468 if (!Surface) return E_INVALIDARG;
2470 hr = wined3d_device_get_surface_from_dc(ddraw->wined3d_device, hdc, &wined3d_surface);
2471 if (FAILED(hr))
2473 TRACE("No surface found for dc %p.\n", hdc);
2474 *Surface = NULL;
2475 return DDERR_NOTFOUND;
2478 surface_impl = wined3d_surface_get_parent(wined3d_surface);
2479 *Surface = &surface_impl->IDirectDrawSurface7_iface;
2480 IDirectDrawSurface7_AddRef(*Surface);
2481 TRACE("Returning surface %p.\n", Surface);
2482 return DD_OK;
2485 static HRESULT WINAPI ddraw4_GetSurfaceFromDC(IDirectDraw4 *iface, HDC dc,
2486 IDirectDrawSurface4 **surface)
2488 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
2489 struct ddraw_surface *surface_impl;
2490 IDirectDrawSurface7 *surface7;
2491 HRESULT hr;
2493 TRACE("iface %p, dc %p, surface %p.\n", iface, dc, surface);
2495 if (!surface) return E_INVALIDARG;
2497 hr = ddraw7_GetSurfaceFromDC(&ddraw->IDirectDraw7_iface, dc, &surface7);
2498 if (FAILED(hr))
2500 *surface = NULL;
2501 return hr;
2503 surface_impl = impl_from_IDirectDrawSurface7(surface7);
2504 /* Tests say this is true */
2505 *surface = (IDirectDrawSurface4 *)&surface_impl->IDirectDrawSurface_iface;
2506 IDirectDrawSurface_AddRef(&surface_impl->IDirectDrawSurface_iface);
2507 IDirectDrawSurface7_Release(surface7);
2509 return hr;
2512 /*****************************************************************************
2513 * IDirectDraw7::RestoreAllSurfaces
2515 * Calls the restore method of all surfaces
2517 * Params:
2519 * Returns:
2520 * Always returns DD_OK because it's a stub
2522 *****************************************************************************/
2523 static HRESULT WINAPI ddraw7_RestoreAllSurfaces(IDirectDraw7 *iface)
2525 FIXME("iface %p stub!\n", iface);
2527 /* This isn't hard to implement: Enumerate all WineD3D surfaces,
2528 * get their parent and call their restore method. Do not implement
2529 * it in WineD3D, as restoring a surface means re-creating the
2530 * WineD3DDSurface
2532 return DD_OK;
2535 static HRESULT WINAPI ddraw4_RestoreAllSurfaces(IDirectDraw4 *iface)
2537 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
2539 TRACE("iface %p.\n", iface);
2541 return ddraw7_RestoreAllSurfaces(&ddraw->IDirectDraw7_iface);
2544 /*****************************************************************************
2545 * IDirectDraw7::StartModeTest
2547 * Tests the specified video modes to update the system registry with
2548 * refresh rate information. StartModeTest starts the mode test,
2549 * EvaluateMode is used to fail or pass a mode. If EvaluateMode
2550 * isn't called within 15 seconds, the mode is failed automatically
2552 * As refresh rates are handled by the X server, I don't think this
2553 * Method is important
2555 * Params:
2556 * Modes: An array of mode specifications
2557 * NumModes: The number of modes in Modes
2558 * Flags: Some flags...
2560 * Returns:
2561 * Returns DDERR_TESTFINISHED if flags contains DDSMT_ISTESTREQUIRED,
2562 * if no modes are passed, DDERR_INVALIDPARAMS is returned,
2563 * otherwise DD_OK
2565 *****************************************************************************/
2566 static HRESULT WINAPI ddraw7_StartModeTest(IDirectDraw7 *iface, SIZE *Modes, DWORD NumModes, DWORD Flags)
2568 FIXME("iface %p, modes %p, mode_count %u, flags %#x partial stub!\n",
2569 iface, Modes, NumModes, Flags);
2571 /* This looks sane */
2572 if( (!Modes) || (NumModes == 0) ) return DDERR_INVALIDPARAMS;
2574 /* DDSMT_ISTESTREQUIRED asks if a mode test is necessary.
2575 * As it is not, DDERR_TESTFINISHED is returned
2576 * (hopefully that's correct
2578 if(Flags & DDSMT_ISTESTREQUIRED) return DDERR_TESTFINISHED;
2579 * well, that value doesn't (yet) exist in the wine headers, so ignore it
2582 return DD_OK;
2585 /*****************************************************************************
2586 * ddraw_create_surface
2588 * A helper function for IDirectDraw7::CreateSurface. It creates a new surface
2589 * with the passed parameters.
2591 * Params:
2592 * DDSD: Description of the surface to create
2593 * Surf: Address to store the interface pointer at
2595 * Returns:
2596 * DD_OK on success
2598 *****************************************************************************/
2599 static HRESULT ddraw_create_surface(struct ddraw *ddraw, DDSURFACEDESC2 *pDDSD,
2600 struct ddraw_surface **surface, UINT level, UINT version)
2602 HRESULT hr;
2604 TRACE("ddraw %p, surface_desc %p, surface %p, level %u.\n",
2605 ddraw, pDDSD, surface, level);
2607 if (TRACE_ON(ddraw))
2609 TRACE("Requesting surface desc:\n");
2610 DDRAW_dump_surface_desc(pDDSD);
2613 if ((pDDSD->ddsCaps.dwCaps & DDSCAPS_3DDEVICE) && DefaultSurfaceType != WINED3D_SURFACE_TYPE_OPENGL)
2615 WARN("The application requests a 3D capable surface, but a non-OpenGL surface type was set in the registry.\n");
2616 /* Do not fail surface creation, only fail 3D device creation. */
2619 /* Create the Surface object */
2620 *surface = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(**surface));
2621 if (!*surface)
2623 ERR("Failed to allocate surface memory.\n");
2624 return DDERR_OUTOFVIDEOMEMORY;
2627 hr = ddraw_surface_init(*surface, ddraw, pDDSD, level, version);
2628 if (FAILED(hr))
2630 WARN("Failed to initialize surface, hr %#x.\n", hr);
2631 HeapFree(GetProcessHeap(), 0, *surface);
2632 return hr;
2635 /* Increase the surface counter, and attach the surface */
2636 list_add_head(&ddraw->surface_list, &(*surface)->surface_list_entry);
2638 TRACE("Created surface %p.\n", *surface);
2640 return DD_OK;
2643 static HRESULT CDECL ddraw_reset_enum_callback(struct wined3d_resource *resource)
2645 return DD_OK;
2648 /*****************************************************************************
2649 * IDirectDraw7::CreateSurface
2651 * Creates a new IDirectDrawSurface object and returns its interface.
2653 * The surface connections with wined3d are a bit tricky. Basically it works
2654 * like this:
2656 * |------------------------| |-----------------|
2657 * | DDraw surface | | WineD3DSurface |
2658 * | | | |
2659 * | WineD3DSurface |-------------->| |
2660 * | Child |<------------->| Parent |
2661 * |------------------------| |-----------------|
2663 * The DDraw surface is the parent of the wined3d surface, and it releases
2664 * the WineD3DSurface when the ddraw surface is destroyed.
2666 * However, for all surfaces which can be in a container in WineD3D,
2667 * we have to do this. These surfaces are usually complex surfaces,
2668 * so this concerns primary surfaces with a front and a back buffer,
2669 * and textures.
2671 * |------------------------| |-----------------|
2672 * | DDraw surface | | Container |
2673 * | | | |
2674 * | Child |<------------->| Parent |
2675 * | Texture |<------------->| |
2676 * | WineD3DSurface |<----| | Levels |<--|
2677 * | Complex connection | | | | |
2678 * |------------------------| | |-----------------| |
2679 * ^ | |
2680 * | | |
2681 * | | |
2682 * | |------------------| | |-----------------| |
2683 * | | IParent | |-------->| WineD3DSurface | |
2684 * | | | | | |
2685 * | | Child |<------------->| Parent | |
2686 * | | | | Container |<--|
2687 * | |------------------| |-----------------| |
2688 * | |
2689 * | |----------------------| |
2690 * | | DDraw surface 2 | |
2691 * | | | |
2692 * |<->| Complex root Child | |
2693 * | | Texture | |
2694 * | | WineD3DSurface |<----| |
2695 * | |----------------------| | |
2696 * | | |
2697 * | |---------------------| | |-----------------| |
2698 * | | IParent | |----->| WineD3DSurface | |
2699 * | | | | | |
2700 * | | Child |<---------->| Parent | |
2701 * | |---------------------| | Container |<--|
2702 * | |-----------------| |
2703 * | |
2704 * | ---More surfaces can follow--- |
2706 * The reason is that the IWineD3DSwapchain(render target container)
2707 * and the IWineD3DTexure(Texture container) release the parents
2708 * of their surface's children, but by releasing the complex root
2709 * the surfaces which are complexly attached to it are destroyed
2710 * too. See IDirectDrawSurface::Release for a more detailed
2711 * explanation.
2713 * Params:
2714 * DDSD: Description of the surface to create
2715 * Surf: Address to store the interface pointer at
2716 * UnkOuter: Basically for aggregation support, but ddraw doesn't support
2717 * aggregation, so it has to be NULL
2719 * Returns:
2720 * DD_OK on success
2721 * CLASS_E_NOAGGREGATION if UnkOuter != NULL
2722 * DDERR_* if an error occurs
2724 *****************************************************************************/
2725 static HRESULT CreateSurface(struct ddraw *ddraw, DDSURFACEDESC2 *DDSD,
2726 struct ddraw_surface **surface, IUnknown *UnkOuter, UINT version)
2728 struct ddraw_surface *object = NULL;
2729 struct wined3d_display_mode mode;
2730 HRESULT hr;
2731 DDSURFACEDESC2 desc2;
2732 const DWORD sysvidmem = DDSCAPS_VIDEOMEMORY | DDSCAPS_SYSTEMMEMORY;
2734 TRACE("ddraw %p, surface_desc %p, surface %p, outer_unknown %p.\n", ddraw, DDSD, surface, UnkOuter);
2736 /* Some checks before we start */
2737 if (TRACE_ON(ddraw))
2739 TRACE(" (%p) Requesting surface desc :\n", ddraw);
2740 DDRAW_dump_surface_desc(DDSD);
2743 if (UnkOuter != NULL)
2745 FIXME("(%p) : outer != NULL?\n", ddraw);
2746 return CLASS_E_NOAGGREGATION; /* unchecked */
2749 if (!surface)
2751 FIXME("(%p) You want to get back a surface? Don't give NULL ptrs!\n", ddraw);
2752 return E_POINTER; /* unchecked */
2755 if (!(DDSD->dwFlags & DDSD_CAPS))
2757 /* DVIDEO.DLL does forget the DDSD_CAPS flag ... *sigh* */
2758 DDSD->dwFlags |= DDSD_CAPS;
2761 if (DDSD->ddsCaps.dwCaps & DDSCAPS_ALLOCONLOAD)
2763 /* If the surface is of the 'alloconload' type, ignore the LPSURFACE field */
2764 DDSD->dwFlags &= ~DDSD_LPSURFACE;
2767 if ((DDSD->dwFlags & DDSD_LPSURFACE) && (DDSD->lpSurface == NULL))
2769 /* Frank Herbert's Dune specifies a null pointer for the surface, ignore the LPSURFACE field */
2770 WARN("(%p) Null surface pointer specified, ignore it!\n", ddraw);
2771 DDSD->dwFlags &= ~DDSD_LPSURFACE;
2774 if((DDSD->ddsCaps.dwCaps & (DDSCAPS_FLIP | DDSCAPS_PRIMARYSURFACE)) == (DDSCAPS_FLIP | DDSCAPS_PRIMARYSURFACE) &&
2775 !(ddraw->cooperative_level & DDSCL_EXCLUSIVE))
2777 TRACE("(%p): Attempt to create a flipable primary surface without DDSCL_EXCLUSIVE set\n",
2778 ddraw);
2779 *surface = NULL;
2780 return DDERR_NOEXCLUSIVEMODE;
2783 if((DDSD->ddsCaps.dwCaps & (DDSCAPS_BACKBUFFER | DDSCAPS_PRIMARYSURFACE)) == (DDSCAPS_BACKBUFFER | DDSCAPS_PRIMARYSURFACE))
2785 WARN("Application wanted to create back buffer primary surface\n");
2786 return DDERR_INVALIDCAPS;
2789 if((DDSD->ddsCaps.dwCaps & sysvidmem) == sysvidmem)
2791 /* This is a special switch in ddrawex.dll, but not allowed in ddraw.dll */
2792 WARN("Application tries to put the surface in both system and video memory\n");
2793 *surface = NULL;
2794 return DDERR_INVALIDCAPS;
2797 /* Check cube maps but only if the size includes them */
2798 if (DDSD->dwSize >= sizeof(DDSURFACEDESC2))
2800 if(DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP_ALLFACES &&
2801 !(DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP))
2803 WARN("Cube map faces requested without cube map flag\n");
2804 return DDERR_INVALIDCAPS;
2806 if(DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP &&
2807 (DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP_ALLFACES) == 0)
2809 WARN("Cube map without faces requested\n");
2810 return DDERR_INVALIDPARAMS;
2813 /* Quick tests confirm those can be created, but we don't do that yet */
2814 if(DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP &&
2815 (DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP_ALLFACES) != DDSCAPS2_CUBEMAP_ALLFACES)
2817 FIXME("Partial cube maps not supported yet\n");
2821 /* According to the msdn this flag is ignored by CreateSurface */
2822 if (DDSD->dwSize >= sizeof(DDSURFACEDESC2))
2823 DDSD->ddsCaps.dwCaps2 &= ~DDSCAPS2_MIPMAPSUBLEVEL;
2825 /* Modify some flags */
2826 copy_to_surfacedesc2(&desc2, DDSD);
2827 desc2.u4.ddpfPixelFormat.dwSize=sizeof(DDPIXELFORMAT); /* Just to be sure */
2829 /* Get the video mode from WineD3D - we will need it */
2830 if (FAILED(hr = wined3d_get_adapter_display_mode(ddraw->wined3d, WINED3DADAPTER_DEFAULT, &mode, NULL)))
2832 ERR("Failed to get display mode, hr %#x.\n", hr);
2834 switch (ddraw->orig_bpp)
2836 case 8:
2837 mode.format_id = WINED3DFMT_P8_UINT;
2838 break;
2840 case 15:
2841 mode.format_id = WINED3DFMT_B5G5R5X1_UNORM;
2842 break;
2844 case 16:
2845 mode.format_id = WINED3DFMT_B5G6R5_UNORM;
2846 break;
2848 case 24:
2849 mode.format_id = WINED3DFMT_B8G8R8_UNORM;
2850 break;
2852 case 32:
2853 mode.format_id = WINED3DFMT_B8G8R8X8_UNORM;
2854 break;
2856 mode.width = ddraw->orig_width;
2857 mode.height = ddraw->orig_height;
2860 /* No pixelformat given? Use the current screen format */
2861 if(!(desc2.dwFlags & DDSD_PIXELFORMAT))
2863 desc2.dwFlags |= DDSD_PIXELFORMAT;
2864 desc2.u4.ddpfPixelFormat.dwSize=sizeof(DDPIXELFORMAT);
2866 PixelFormat_WineD3DtoDD(&desc2.u4.ddpfPixelFormat, mode.format_id);
2869 /* No Width or no Height? Use the original screen size
2871 if(!(desc2.dwFlags & DDSD_WIDTH) ||
2872 !(desc2.dwFlags & DDSD_HEIGHT) )
2874 /* Invalid for non-render targets */
2875 if(!(desc2.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE))
2877 WARN("Creating a non-Primary surface without Width or Height info, returning DDERR_INVALIDPARAMS\n");
2878 *surface = NULL;
2879 return DDERR_INVALIDPARAMS;
2882 desc2.dwFlags |= DDSD_WIDTH | DDSD_HEIGHT;
2883 desc2.dwWidth = mode.width;
2884 desc2.dwHeight = mode.height;
2887 if (!desc2.dwWidth || !desc2.dwHeight)
2888 return DDERR_INVALIDPARAMS;
2890 /* Mipmap count fixes */
2891 if(desc2.ddsCaps.dwCaps & DDSCAPS_MIPMAP)
2893 if(desc2.ddsCaps.dwCaps & DDSCAPS_COMPLEX)
2895 if(desc2.dwFlags & DDSD_MIPMAPCOUNT)
2897 /* Mipmap count is given, should not be 0 */
2898 if( desc2.u2.dwMipMapCount == 0 )
2899 return DDERR_INVALIDPARAMS;
2901 else
2903 /* Undocumented feature: Create sublevels until
2904 * either the width or the height is 1
2906 DWORD min = desc2.dwWidth < desc2.dwHeight ?
2907 desc2.dwWidth : desc2.dwHeight;
2908 desc2.u2.dwMipMapCount = 0;
2909 while( min )
2911 desc2.u2.dwMipMapCount += 1;
2912 min >>= 1;
2916 else
2918 /* Not-complex mipmap -> Mipmapcount = 1 */
2919 desc2.u2.dwMipMapCount = 1;
2922 /* There's a mipmap count in the created surface in any case */
2923 desc2.dwFlags |= DDSD_MIPMAPCOUNT;
2925 /* If no mipmap is given, the texture has only one level */
2927 /* The first surface is a front buffer, the back buffer is created afterwards */
2928 if( (desc2.dwFlags & DDSD_CAPS) && (desc2.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE) )
2930 desc2.ddsCaps.dwCaps |= DDSCAPS_FRONTBUFFER;
2933 /* The root surface in a cube map is positive x */
2934 if(desc2.ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP)
2936 desc2.ddsCaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_ALLFACES;
2937 desc2.ddsCaps.dwCaps2 |= DDSCAPS2_CUBEMAP_POSITIVEX;
2940 if ((desc2.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE) && (ddraw->cooperative_level & DDSCL_EXCLUSIVE))
2942 struct wined3d_swapchain_desc swapchain_desc;
2944 hr = wined3d_swapchain_get_desc(ddraw->wined3d_swapchain, &swapchain_desc);
2945 if (FAILED(hr))
2947 ERR("Failed to get present parameters.\n");
2948 return hr;
2951 swapchain_desc.backbuffer_width = mode.width;
2952 swapchain_desc.backbuffer_height = mode.height;
2953 swapchain_desc.backbuffer_format = mode.format_id;
2955 hr = wined3d_device_reset(ddraw->wined3d_device,
2956 &swapchain_desc, NULL, ddraw_reset_enum_callback);
2957 if (FAILED(hr))
2959 ERR("Failed to reset device.\n");
2960 return hr;
2964 /* Create the first surface */
2965 hr = ddraw_create_surface(ddraw, &desc2, &object, 0, version);
2966 if (FAILED(hr))
2968 WARN("ddraw_create_surface failed, hr %#x.\n", hr);
2969 return hr;
2971 object->is_complex_root = TRUE;
2973 *surface = object;
2975 /* Create Additional surfaces if necessary
2976 * This applies to Primary surfaces which have a back buffer count
2977 * set, but not to mipmap textures. In case of Mipmap textures,
2978 * wineD3D takes care of the creation of additional surfaces
2980 if(DDSD->dwFlags & DDSD_BACKBUFFERCOUNT)
2982 struct ddraw_surface *last = object;
2983 UINT i;
2985 desc2.ddsCaps.dwCaps &= ~DDSCAPS_FRONTBUFFER; /* It's not a front buffer */
2986 desc2.ddsCaps.dwCaps |= DDSCAPS_BACKBUFFER;
2987 desc2.dwBackBufferCount = 0;
2989 for (i = 0; i < DDSD->dwBackBufferCount; ++i)
2991 struct ddraw_surface *object2 = NULL;
2993 if (FAILED(hr = ddraw_create_surface(ddraw, &desc2, &object2, 0, version)))
2995 if (version == 7)
2996 IDirectDrawSurface7_Release(&object->IDirectDrawSurface7_iface);
2997 else if (version == 4)
2998 IDirectDrawSurface4_Release(&object->IDirectDrawSurface4_iface);
2999 else
3000 IDirectDrawSurface_Release(&object->IDirectDrawSurface_iface);
3002 return hr;
3005 /* Add the new surface to the complex attachment array. */
3006 last->complex_array[0] = object2;
3007 last = object2;
3009 /* Remove the (possible) back buffer cap from the new surface
3010 * description, because only one surface in the flipping chain is a
3011 * back buffer, one is a front buffer, the others are just primary
3012 * surfaces. */
3013 desc2.ddsCaps.dwCaps &= ~DDSCAPS_BACKBUFFER;
3017 if (desc2.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE)
3018 ddraw->primary = object;
3020 /* Create a WineD3DTexture if a texture was requested */
3021 if (desc2.ddsCaps.dwCaps & DDSCAPS_TEXTURE)
3022 ddraw_surface_create_texture(object);
3024 return hr;
3027 static HRESULT WINAPI ddraw7_CreateSurface(IDirectDraw7 *iface, DDSURFACEDESC2 *surface_desc,
3028 IDirectDrawSurface7 **surface, IUnknown *outer_unknown)
3030 struct ddraw *ddraw = impl_from_IDirectDraw7(iface);
3031 struct ddraw_surface *impl;
3032 HRESULT hr;
3034 TRACE("iface %p, surface_desc %p, surface %p, outer_unknown %p.\n",
3035 iface, surface_desc, surface, outer_unknown);
3037 wined3d_mutex_lock();
3039 if (!(ddraw->cooperative_level & (DDSCL_NORMAL | DDSCL_EXCLUSIVE)))
3041 WARN("Cooperative level not set.\n");
3042 wined3d_mutex_unlock();
3043 return DDERR_NOCOOPERATIVELEVELSET;
3046 if(surface_desc == NULL || surface_desc->dwSize != sizeof(DDSURFACEDESC2))
3048 WARN("Application supplied invalid surface descriptor\n");
3049 wined3d_mutex_unlock();
3050 return DDERR_INVALIDPARAMS;
3053 if(surface_desc->ddsCaps.dwCaps & (DDSCAPS_FRONTBUFFER | DDSCAPS_BACKBUFFER))
3055 if (TRACE_ON(ddraw))
3057 TRACE(" (%p) Requesting surface desc :\n", iface);
3058 DDRAW_dump_surface_desc(surface_desc);
3061 WARN("Application tried to create an explicit front or back buffer\n");
3062 wined3d_mutex_unlock();
3063 return DDERR_INVALIDCAPS;
3066 hr = CreateSurface(ddraw, surface_desc, &impl, outer_unknown, 7);
3067 wined3d_mutex_unlock();
3068 if (FAILED(hr))
3070 *surface = NULL;
3071 return hr;
3074 *surface = &impl->IDirectDrawSurface7_iface;
3075 IDirectDraw7_AddRef(iface);
3076 impl->ifaceToRelease = (IUnknown *)iface;
3078 return hr;
3081 static HRESULT WINAPI ddraw4_CreateSurface(IDirectDraw4 *iface,
3082 DDSURFACEDESC2 *surface_desc, IDirectDrawSurface4 **surface, IUnknown *outer_unknown)
3084 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
3085 struct ddraw_surface *impl;
3086 HRESULT hr;
3088 TRACE("iface %p, surface_desc %p, surface %p, outer_unknown %p.\n",
3089 iface, surface_desc, surface, outer_unknown);
3091 wined3d_mutex_lock();
3093 if (!(ddraw->cooperative_level & (DDSCL_NORMAL | DDSCL_EXCLUSIVE)))
3095 WARN("Cooperative level not set.\n");
3096 wined3d_mutex_unlock();
3097 return DDERR_NOCOOPERATIVELEVELSET;
3100 if(surface_desc == NULL || surface_desc->dwSize != sizeof(DDSURFACEDESC2))
3102 WARN("Application supplied invalid surface descriptor\n");
3103 wined3d_mutex_unlock();
3104 return DDERR_INVALIDPARAMS;
3107 if(surface_desc->ddsCaps.dwCaps & (DDSCAPS_FRONTBUFFER | DDSCAPS_BACKBUFFER))
3109 if (TRACE_ON(ddraw))
3111 TRACE(" (%p) Requesting surface desc :\n", iface);
3112 DDRAW_dump_surface_desc(surface_desc);
3115 WARN("Application tried to create an explicit front or back buffer\n");
3116 wined3d_mutex_unlock();
3117 return DDERR_INVALIDCAPS;
3120 hr = CreateSurface(ddraw, surface_desc, &impl, outer_unknown, 4);
3121 wined3d_mutex_unlock();
3122 if (FAILED(hr))
3124 *surface = NULL;
3125 return hr;
3128 *surface = &impl->IDirectDrawSurface4_iface;
3129 IDirectDraw4_AddRef(iface);
3130 impl->ifaceToRelease = (IUnknown *)iface;
3132 return hr;
3135 static HRESULT WINAPI ddraw2_CreateSurface(IDirectDraw2 *iface,
3136 DDSURFACEDESC *surface_desc, IDirectDrawSurface **surface, IUnknown *outer_unknown)
3138 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
3139 struct ddraw_surface *impl;
3140 HRESULT hr;
3141 DDSURFACEDESC2 surface_desc2;
3143 TRACE("iface %p, surface_desc %p, surface %p, outer_unknown %p.\n",
3144 iface, surface_desc, surface, outer_unknown);
3146 wined3d_mutex_lock();
3148 if (!(ddraw->cooperative_level & (DDSCL_NORMAL | DDSCL_EXCLUSIVE)))
3150 WARN("Cooperative level not set.\n");
3151 wined3d_mutex_unlock();
3152 return DDERR_NOCOOPERATIVELEVELSET;
3155 if(surface_desc == NULL || surface_desc->dwSize != sizeof(DDSURFACEDESC))
3157 WARN("Application supplied invalid surface descriptor\n");
3158 wined3d_mutex_unlock();
3159 return DDERR_INVALIDPARAMS;
3162 DDSD_to_DDSD2(surface_desc, &surface_desc2);
3163 if(surface_desc->ddsCaps.dwCaps & (DDSCAPS_FRONTBUFFER | DDSCAPS_BACKBUFFER))
3165 if (TRACE_ON(ddraw))
3167 TRACE(" (%p) Requesting surface desc :\n", iface);
3168 DDRAW_dump_surface_desc((LPDDSURFACEDESC2)surface_desc);
3171 WARN("Application tried to create an explicit front or back buffer\n");
3172 wined3d_mutex_unlock();
3173 return DDERR_INVALIDCAPS;
3176 hr = CreateSurface(ddraw, &surface_desc2, &impl, outer_unknown, 2);
3177 wined3d_mutex_unlock();
3178 if (FAILED(hr))
3180 *surface = NULL;
3181 return hr;
3184 *surface = &impl->IDirectDrawSurface_iface;
3185 impl->ifaceToRelease = NULL;
3187 return hr;
3190 static HRESULT WINAPI ddraw1_CreateSurface(IDirectDraw *iface,
3191 DDSURFACEDESC *surface_desc, IDirectDrawSurface **surface, IUnknown *outer_unknown)
3193 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
3194 struct ddraw_surface *impl;
3195 HRESULT hr;
3196 DDSURFACEDESC2 surface_desc2;
3198 TRACE("iface %p, surface_desc %p, surface %p, outer_unknown %p.\n",
3199 iface, surface_desc, surface, outer_unknown);
3201 wined3d_mutex_lock();
3203 if (!(ddraw->cooperative_level & (DDSCL_NORMAL | DDSCL_EXCLUSIVE)))
3205 WARN("Cooperative level not set.\n");
3206 wined3d_mutex_unlock();
3207 return DDERR_NOCOOPERATIVELEVELSET;
3210 if(surface_desc == NULL || surface_desc->dwSize != sizeof(DDSURFACEDESC))
3212 WARN("Application supplied invalid surface descriptor\n");
3213 wined3d_mutex_unlock();
3214 return DDERR_INVALIDPARAMS;
3217 /* Remove front buffer flag, this causes failure in v7, and its added to normal
3218 * primaries anyway. */
3219 surface_desc->ddsCaps.dwCaps &= ~DDSCAPS_FRONTBUFFER;
3220 DDSD_to_DDSD2(surface_desc, &surface_desc2);
3221 hr = CreateSurface(ddraw, &surface_desc2, &impl, outer_unknown, 1);
3222 wined3d_mutex_unlock();
3223 if (FAILED(hr))
3225 *surface = NULL;
3226 return hr;
3229 *surface = &impl->IDirectDrawSurface_iface;
3230 impl->ifaceToRelease = NULL;
3232 return hr;
3235 #define DDENUMSURFACES_SEARCHTYPE (DDENUMSURFACES_CANBECREATED|DDENUMSURFACES_DOESEXIST)
3236 #define DDENUMSURFACES_MATCHTYPE (DDENUMSURFACES_ALL|DDENUMSURFACES_MATCH|DDENUMSURFACES_NOMATCH)
3238 static BOOL
3239 Main_DirectDraw_DDPIXELFORMAT_Match(const DDPIXELFORMAT *requested,
3240 const DDPIXELFORMAT *provided)
3242 /* Some flags must be present in both or neither for a match. */
3243 static const DWORD must_match = DDPF_PALETTEINDEXED1 | DDPF_PALETTEINDEXED2
3244 | DDPF_PALETTEINDEXED4 | DDPF_PALETTEINDEXED8 | DDPF_FOURCC
3245 | DDPF_ZBUFFER | DDPF_STENCILBUFFER;
3247 if ((requested->dwFlags & provided->dwFlags) != requested->dwFlags)
3248 return FALSE;
3250 if ((requested->dwFlags & must_match) != (provided->dwFlags & must_match))
3251 return FALSE;
3253 if (requested->dwFlags & DDPF_FOURCC)
3254 if (requested->dwFourCC != provided->dwFourCC)
3255 return FALSE;
3257 if (requested->dwFlags & (DDPF_RGB|DDPF_YUV|DDPF_ZBUFFER|DDPF_ALPHA
3258 |DDPF_LUMINANCE|DDPF_BUMPDUDV))
3259 if (requested->u1.dwRGBBitCount != provided->u1.dwRGBBitCount)
3260 return FALSE;
3262 if (requested->dwFlags & (DDPF_RGB|DDPF_YUV|DDPF_STENCILBUFFER
3263 |DDPF_LUMINANCE|DDPF_BUMPDUDV))
3264 if (requested->u2.dwRBitMask != provided->u2.dwRBitMask)
3265 return FALSE;
3267 if (requested->dwFlags & (DDPF_RGB|DDPF_YUV|DDPF_ZBUFFER|DDPF_BUMPDUDV))
3268 if (requested->u3.dwGBitMask != provided->u3.dwGBitMask)
3269 return FALSE;
3271 /* I could be wrong about the bumpmapping. MSDN docs are vague. */
3272 if (requested->dwFlags & (DDPF_RGB|DDPF_YUV|DDPF_STENCILBUFFER
3273 |DDPF_BUMPDUDV))
3274 if (requested->u4.dwBBitMask != provided->u4.dwBBitMask)
3275 return FALSE;
3277 if (requested->dwFlags & (DDPF_ALPHAPIXELS|DDPF_ZPIXELS))
3278 if (requested->u5.dwRGBAlphaBitMask != provided->u5.dwRGBAlphaBitMask)
3279 return FALSE;
3281 return TRUE;
3284 static BOOL ddraw_match_surface_desc(const DDSURFACEDESC2 *requested, const DDSURFACEDESC2 *provided)
3286 struct compare_info
3288 DWORD flag;
3289 ptrdiff_t offset;
3290 size_t size;
3293 #define CMP(FLAG, FIELD) \
3294 { DDSD_##FLAG, offsetof(DDSURFACEDESC2, FIELD), \
3295 sizeof(((DDSURFACEDESC2 *)(NULL))->FIELD) }
3297 static const struct compare_info compare[] =
3299 CMP(ALPHABITDEPTH, dwAlphaBitDepth),
3300 CMP(BACKBUFFERCOUNT, dwBackBufferCount),
3301 CMP(CAPS, ddsCaps),
3302 CMP(CKDESTBLT, ddckCKDestBlt),
3303 CMP(CKDESTOVERLAY, u3 /* ddckCKDestOverlay */),
3304 CMP(CKSRCBLT, ddckCKSrcBlt),
3305 CMP(CKSRCOVERLAY, ddckCKSrcOverlay),
3306 CMP(HEIGHT, dwHeight),
3307 CMP(LINEARSIZE, u1 /* dwLinearSize */),
3308 CMP(LPSURFACE, lpSurface),
3309 CMP(MIPMAPCOUNT, u2 /* dwMipMapCount */),
3310 CMP(PITCH, u1 /* lPitch */),
3311 /* PIXELFORMAT: manual */
3312 CMP(REFRESHRATE, u2 /* dwRefreshRate */),
3313 CMP(TEXTURESTAGE, dwTextureStage),
3314 CMP(WIDTH, dwWidth),
3315 /* ZBUFFERBITDEPTH: "obsolete" */
3318 #undef CMP
3320 unsigned int i;
3322 if ((requested->dwFlags & provided->dwFlags) != requested->dwFlags)
3323 return FALSE;
3325 for (i=0; i < sizeof(compare)/sizeof(compare[0]); i++)
3327 if (requested->dwFlags & compare[i].flag
3328 && memcmp((const char *)provided + compare[i].offset,
3329 (const char *)requested + compare[i].offset,
3330 compare[i].size) != 0)
3331 return FALSE;
3334 if (requested->dwFlags & DDSD_PIXELFORMAT)
3336 if (!Main_DirectDraw_DDPIXELFORMAT_Match(&requested->u4.ddpfPixelFormat,
3337 &provided->u4.ddpfPixelFormat))
3338 return FALSE;
3341 return TRUE;
3344 #undef DDENUMSURFACES_SEARCHTYPE
3345 #undef DDENUMSURFACES_MATCHTYPE
3347 struct surfacescallback2_context
3349 LPDDENUMSURFACESCALLBACK2 func;
3350 void *context;
3353 struct surfacescallback_context
3355 LPDDENUMSURFACESCALLBACK func;
3356 void *context;
3359 static HRESULT CALLBACK EnumSurfacesCallback2Thunk(IDirectDrawSurface7 *surface,
3360 DDSURFACEDESC2 *surface_desc, void *context)
3362 struct ddraw_surface *surface_impl = impl_from_IDirectDrawSurface7(surface);
3363 struct surfacescallback2_context *cbcontext = context;
3365 IDirectDrawSurface4_AddRef(&surface_impl->IDirectDrawSurface4_iface);
3366 IDirectDrawSurface7_Release(surface);
3368 return cbcontext->func(&surface_impl->IDirectDrawSurface4_iface,
3369 surface_desc, cbcontext->context);
3372 static HRESULT CALLBACK EnumSurfacesCallbackThunk(IDirectDrawSurface7 *surface,
3373 DDSURFACEDESC2 *surface_desc, void *context)
3375 struct ddraw_surface *surface_impl = impl_from_IDirectDrawSurface7(surface);
3376 struct surfacescallback_context *cbcontext = context;
3378 IDirectDrawSurface_AddRef(&surface_impl->IDirectDrawSurface_iface);
3379 IDirectDrawSurface7_Release(surface);
3381 return cbcontext->func(&surface_impl->IDirectDrawSurface_iface,
3382 (DDSURFACEDESC *)surface_desc, cbcontext->context);
3385 /*****************************************************************************
3386 * IDirectDraw7::EnumSurfaces
3388 * Loops through all surfaces attached to this device and calls the
3389 * application callback. This can't be relayed to WineD3DDevice,
3390 * because some WineD3DSurfaces' parents are IParent objects
3392 * Params:
3393 * Flags: Some filtering flags. See IDirectDrawImpl_EnumSurfacesCallback
3394 * DDSD: Description to filter for
3395 * Context: Application-provided pointer, it's passed unmodified to the
3396 * Callback function
3397 * Callback: Address to call for each surface
3399 * Returns:
3400 * DDERR_INVALIDPARAMS if the callback is NULL
3401 * DD_OK on success
3403 *****************************************************************************/
3404 static HRESULT WINAPI ddraw7_EnumSurfaces(IDirectDraw7 *iface, DWORD Flags,
3405 DDSURFACEDESC2 *DDSD, void *Context, LPDDENUMSURFACESCALLBACK7 Callback)
3407 struct ddraw *ddraw = impl_from_IDirectDraw7(iface);
3408 struct ddraw_surface *surf;
3409 BOOL all, nomatch;
3410 DDSURFACEDESC2 desc;
3411 struct list *entry, *entry2;
3413 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
3414 iface, Flags, DDSD, Context, Callback);
3416 all = Flags & DDENUMSURFACES_ALL;
3417 nomatch = Flags & DDENUMSURFACES_NOMATCH;
3419 if (!Callback)
3420 return DDERR_INVALIDPARAMS;
3422 wined3d_mutex_lock();
3424 /* Use the _SAFE enumeration, the app may destroy enumerated surfaces */
3425 LIST_FOR_EACH_SAFE(entry, entry2, &ddraw->surface_list)
3427 surf = LIST_ENTRY(entry, struct ddraw_surface, surface_list_entry);
3429 if (!surf->iface_count)
3431 WARN("Not enumerating surface %p because it doesn't have any references.\n", surf);
3432 continue;
3435 if (all || (nomatch != ddraw_match_surface_desc(DDSD, &surf->surface_desc)))
3437 TRACE("Enumerating surface %p.\n", surf);
3438 desc = surf->surface_desc;
3439 IDirectDrawSurface7_AddRef(&surf->IDirectDrawSurface7_iface);
3440 if (Callback(&surf->IDirectDrawSurface7_iface, &desc, Context) != DDENUMRET_OK)
3442 wined3d_mutex_unlock();
3443 return DD_OK;
3448 wined3d_mutex_unlock();
3450 return DD_OK;
3453 static HRESULT WINAPI ddraw4_EnumSurfaces(IDirectDraw4 *iface, DWORD flags,
3454 DDSURFACEDESC2 *surface_desc, void *context, LPDDENUMSURFACESCALLBACK2 callback)
3456 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
3457 struct surfacescallback2_context cbcontext;
3459 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
3460 iface, flags, surface_desc, context, callback);
3462 cbcontext.func = callback;
3463 cbcontext.context = context;
3465 return ddraw7_EnumSurfaces(&ddraw->IDirectDraw7_iface, flags, surface_desc,
3466 &cbcontext, EnumSurfacesCallback2Thunk);
3469 static HRESULT WINAPI ddraw2_EnumSurfaces(IDirectDraw2 *iface, DWORD flags,
3470 DDSURFACEDESC *surface_desc, void *context, LPDDENUMSURFACESCALLBACK callback)
3472 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
3473 struct surfacescallback_context cbcontext;
3474 DDSURFACEDESC2 surface_desc2;
3476 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
3477 iface, flags, surface_desc, context, callback);
3479 cbcontext.func = callback;
3480 cbcontext.context = context;
3482 if (surface_desc) DDSD_to_DDSD2(surface_desc, &surface_desc2);
3483 return ddraw7_EnumSurfaces(&ddraw->IDirectDraw7_iface, flags,
3484 surface_desc ? &surface_desc2 : NULL, &cbcontext, EnumSurfacesCallbackThunk);
3487 static HRESULT WINAPI ddraw1_EnumSurfaces(IDirectDraw *iface, DWORD flags,
3488 DDSURFACEDESC *surface_desc, void *context, LPDDENUMSURFACESCALLBACK callback)
3490 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
3491 struct surfacescallback_context cbcontext;
3492 DDSURFACEDESC2 surface_desc2;
3494 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
3495 iface, flags, surface_desc, context, callback);
3497 cbcontext.func = callback;
3498 cbcontext.context = context;
3500 if (surface_desc) DDSD_to_DDSD2(surface_desc, &surface_desc2);
3501 return ddraw7_EnumSurfaces(&ddraw->IDirectDraw7_iface, flags,
3502 surface_desc ? &surface_desc2 : NULL, &cbcontext, EnumSurfacesCallbackThunk);
3505 /*****************************************************************************
3506 * DirectDrawCreateClipper (DDRAW.@)
3508 * Creates a new IDirectDrawClipper object.
3510 * Params:
3511 * Clipper: Address to write the interface pointer to
3512 * UnkOuter: For aggregation support, which ddraw doesn't have. Has to be
3513 * NULL
3515 * Returns:
3516 * CLASS_E_NOAGGREGATION if UnkOuter != NULL
3517 * E_OUTOFMEMORY if allocating the object failed
3519 *****************************************************************************/
3520 HRESULT WINAPI DirectDrawCreateClipper(DWORD flags, IDirectDrawClipper **clipper, IUnknown *outer_unknown)
3522 struct ddraw_clipper *object;
3523 HRESULT hr;
3525 TRACE("flags %#x, clipper %p, outer_unknown %p.\n",
3526 flags, clipper, outer_unknown);
3528 if (outer_unknown)
3529 return CLASS_E_NOAGGREGATION;
3531 wined3d_mutex_lock();
3533 object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
3534 if (!object)
3536 wined3d_mutex_unlock();
3537 return E_OUTOFMEMORY;
3540 hr = ddraw_clipper_init(object);
3541 if (FAILED(hr))
3543 WARN("Failed to initialize clipper, hr %#x.\n", hr);
3544 HeapFree(GetProcessHeap(), 0, object);
3545 wined3d_mutex_unlock();
3546 return hr;
3549 TRACE("Created clipper %p.\n", object);
3550 *clipper = &object->IDirectDrawClipper_iface;
3551 wined3d_mutex_unlock();
3553 return DD_OK;
3556 /*****************************************************************************
3557 * IDirectDraw7::CreateClipper
3559 * Creates a DDraw clipper. See DirectDrawCreateClipper for details
3561 *****************************************************************************/
3562 static HRESULT WINAPI ddraw7_CreateClipper(IDirectDraw7 *iface, DWORD Flags,
3563 IDirectDrawClipper **Clipper, IUnknown *UnkOuter)
3565 TRACE("iface %p, flags %#x, clipper %p, outer_unknown %p.\n",
3566 iface, Flags, Clipper, UnkOuter);
3568 return DirectDrawCreateClipper(Flags, Clipper, UnkOuter);
3571 static HRESULT WINAPI ddraw4_CreateClipper(IDirectDraw4 *iface, DWORD flags,
3572 IDirectDrawClipper **clipper, IUnknown *outer_unknown)
3574 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
3576 TRACE("iface %p, flags %#x, clipper %p, outer_unknown %p.\n",
3577 iface, flags, clipper, outer_unknown);
3579 return ddraw7_CreateClipper(&ddraw->IDirectDraw7_iface, flags, clipper, outer_unknown);
3582 static HRESULT WINAPI ddraw2_CreateClipper(IDirectDraw2 *iface,
3583 DWORD flags, IDirectDrawClipper **clipper, IUnknown *outer_unknown)
3585 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
3587 TRACE("iface %p, flags %#x, clipper %p, outer_unknown %p.\n",
3588 iface, flags, clipper, outer_unknown);
3590 return ddraw7_CreateClipper(&ddraw->IDirectDraw7_iface, flags, clipper, outer_unknown);
3593 static HRESULT WINAPI ddraw1_CreateClipper(IDirectDraw *iface,
3594 DWORD flags, IDirectDrawClipper **clipper, IUnknown *outer_unknown)
3596 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
3598 TRACE("iface %p, flags %#x, clipper %p, outer_unknown %p.\n",
3599 iface, flags, clipper, outer_unknown);
3601 return ddraw7_CreateClipper(&ddraw->IDirectDraw7_iface, flags, clipper, outer_unknown);
3604 /*****************************************************************************
3605 * IDirectDraw7::CreatePalette
3607 * Creates a new IDirectDrawPalette object
3609 * Params:
3610 * Flags: The flags for the new clipper
3611 * ColorTable: Color table to assign to the new clipper
3612 * Palette: Address to write the interface pointer to
3613 * UnkOuter: For aggregation support, which ddraw doesn't have. Has to be
3614 * NULL
3616 * Returns:
3617 * CLASS_E_NOAGGREGATION if UnkOuter != NULL
3618 * E_OUTOFMEMORY if allocating the object failed
3620 *****************************************************************************/
3621 static HRESULT WINAPI ddraw7_CreatePalette(IDirectDraw7 *iface, DWORD Flags,
3622 PALETTEENTRY *ColorTable, IDirectDrawPalette **Palette, IUnknown *pUnkOuter)
3624 struct ddraw *ddraw = impl_from_IDirectDraw7(iface);
3625 struct ddraw_palette *object;
3626 HRESULT hr;
3628 TRACE("iface %p, flags %#x, color_table %p, palette %p, outer_unknown %p.\n",
3629 iface, Flags, ColorTable, Palette, pUnkOuter);
3631 if (pUnkOuter)
3632 return CLASS_E_NOAGGREGATION;
3634 wined3d_mutex_lock();
3636 /* The refcount test shows that a cooplevel is required for this */
3637 if (!ddraw->cooperative_level)
3639 WARN("No cooperative level set, returning DDERR_NOCOOPERATIVELEVELSET\n");
3640 wined3d_mutex_unlock();
3641 return DDERR_NOCOOPERATIVELEVELSET;
3644 object = HeapAlloc(GetProcessHeap(), 0, sizeof(*object));
3645 if (!object)
3647 ERR("Out of memory when allocating memory for a palette implementation\n");
3648 wined3d_mutex_unlock();
3649 return E_OUTOFMEMORY;
3652 hr = ddraw_palette_init(object, ddraw, Flags, ColorTable);
3653 if (FAILED(hr))
3655 WARN("Failed to initialize palette, hr %#x.\n", hr);
3656 HeapFree(GetProcessHeap(), 0, object);
3657 wined3d_mutex_unlock();
3658 return hr;
3661 TRACE("Created palette %p.\n", object);
3662 *Palette = &object->IDirectDrawPalette_iface;
3663 wined3d_mutex_unlock();
3665 return DD_OK;
3668 static HRESULT WINAPI ddraw4_CreatePalette(IDirectDraw4 *iface, DWORD flags, PALETTEENTRY *entries,
3669 IDirectDrawPalette **palette, IUnknown *outer_unknown)
3671 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
3672 HRESULT hr;
3674 TRACE("iface %p, flags %#x, entries %p, palette %p, outer_unknown %p.\n",
3675 iface, flags, entries, palette, outer_unknown);
3677 hr = ddraw7_CreatePalette(&ddraw->IDirectDraw7_iface, flags, entries, palette, outer_unknown);
3678 if (SUCCEEDED(hr) && *palette)
3680 struct ddraw_palette *impl = impl_from_IDirectDrawPalette(*palette);
3681 IDirectDraw7_Release(&ddraw->IDirectDraw7_iface);
3682 IDirectDraw4_AddRef(iface);
3683 impl->ifaceToRelease = (IUnknown *)iface;
3685 return hr;
3688 static HRESULT WINAPI ddraw2_CreatePalette(IDirectDraw2 *iface, DWORD flags,
3689 PALETTEENTRY *entries, IDirectDrawPalette **palette, IUnknown *outer_unknown)
3691 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
3692 HRESULT hr;
3694 TRACE("iface %p, flags %#x, entries %p, palette %p, outer_unknown %p.\n",
3695 iface, flags, entries, palette, outer_unknown);
3697 hr = ddraw7_CreatePalette(&ddraw->IDirectDraw7_iface, flags, entries, palette, outer_unknown);
3698 if (SUCCEEDED(hr) && *palette)
3700 struct ddraw_palette *impl = impl_from_IDirectDrawPalette(*palette);
3701 IDirectDraw7_Release(&ddraw->IDirectDraw7_iface);
3702 impl->ifaceToRelease = NULL;
3705 return hr;
3708 static HRESULT WINAPI ddraw1_CreatePalette(IDirectDraw *iface, DWORD flags,
3709 PALETTEENTRY *entries, IDirectDrawPalette **palette, IUnknown *outer_unknown)
3711 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
3712 HRESULT hr;
3714 TRACE("iface %p, flags %#x, entries %p, palette %p, outer_unknown %p.\n",
3715 iface, flags, entries, palette, outer_unknown);
3717 hr = ddraw7_CreatePalette(&ddraw->IDirectDraw7_iface, flags, entries, palette, outer_unknown);
3718 if (SUCCEEDED(hr) && *palette)
3720 struct ddraw_palette *impl = impl_from_IDirectDrawPalette(*palette);
3721 IDirectDraw7_Release(&ddraw->IDirectDraw7_iface);
3722 impl->ifaceToRelease = NULL;
3725 return hr;
3728 /*****************************************************************************
3729 * IDirectDraw7::DuplicateSurface
3731 * Duplicates a surface. The surface memory points to the same memory as
3732 * the original surface, and it's released when the last surface referencing
3733 * it is released. I guess that's beyond Wine's surface management right now
3734 * (Idea: create a new DDraw surface with the same WineD3DSurface. I need a
3735 * test application to implement this)
3737 * Params:
3738 * Src: Address of the source surface
3739 * Dest: Address to write the new surface pointer to
3741 * Returns:
3742 * See IDirectDraw7::CreateSurface
3744 *****************************************************************************/
3745 static HRESULT WINAPI ddraw7_DuplicateSurface(IDirectDraw7 *iface,
3746 IDirectDrawSurface7 *Src, IDirectDrawSurface7 **Dest)
3748 struct ddraw_surface *src_surface = unsafe_impl_from_IDirectDrawSurface7(Src);
3750 FIXME("iface %p, src %p, dst %p partial stub!\n", iface, Src, Dest);
3752 /* For now, simply create a new, independent surface */
3753 return IDirectDraw7_CreateSurface(iface, &src_surface->surface_desc, Dest, NULL);
3756 static HRESULT WINAPI ddraw4_DuplicateSurface(IDirectDraw4 *iface, IDirectDrawSurface4 *src,
3757 IDirectDrawSurface4 **dst)
3759 struct ddraw_surface *src_impl = unsafe_impl_from_IDirectDrawSurface4(src);
3760 struct ddraw *ddraw = impl_from_IDirectDraw4(iface);
3761 struct ddraw_surface *dst_impl;
3762 IDirectDrawSurface7 *dst7;
3763 HRESULT hr;
3765 TRACE("iface %p, src %p, dst %p.\n", iface, src, dst);
3767 hr = ddraw7_DuplicateSurface(&ddraw->IDirectDraw7_iface,
3768 src_impl ? &src_impl->IDirectDrawSurface7_iface : NULL, &dst7);
3769 if (FAILED(hr))
3771 *dst = NULL;
3772 return hr;
3774 dst_impl = impl_from_IDirectDrawSurface7(dst7);
3775 *dst = &dst_impl->IDirectDrawSurface4_iface;
3776 IDirectDrawSurface4_AddRef(*dst);
3777 IDirectDrawSurface7_Release(dst7);
3779 return hr;
3782 static HRESULT WINAPI ddraw2_DuplicateSurface(IDirectDraw2 *iface,
3783 IDirectDrawSurface *src, IDirectDrawSurface **dst)
3785 struct ddraw_surface *src_impl = unsafe_impl_from_IDirectDrawSurface(src);
3786 struct ddraw *ddraw = impl_from_IDirectDraw2(iface);
3787 struct ddraw_surface *dst_impl;
3788 IDirectDrawSurface7 *dst7;
3789 HRESULT hr;
3791 TRACE("iface %p, src %p, dst %p.\n", iface, src, dst);
3793 hr = ddraw7_DuplicateSurface(&ddraw->IDirectDraw7_iface,
3794 src_impl ? &src_impl->IDirectDrawSurface7_iface : NULL, &dst7);
3795 if (FAILED(hr))
3796 return hr;
3797 dst_impl = impl_from_IDirectDrawSurface7(dst7);
3798 *dst = &dst_impl->IDirectDrawSurface_iface;
3799 IDirectDrawSurface_AddRef(*dst);
3800 IDirectDrawSurface7_Release(dst7);
3802 return hr;
3805 static HRESULT WINAPI ddraw1_DuplicateSurface(IDirectDraw *iface, IDirectDrawSurface *src,
3806 IDirectDrawSurface **dst)
3808 struct ddraw_surface *src_impl = unsafe_impl_from_IDirectDrawSurface(src);
3809 struct ddraw *ddraw = impl_from_IDirectDraw(iface);
3810 struct ddraw_surface *dst_impl;
3811 IDirectDrawSurface7 *dst7;
3812 HRESULT hr;
3814 TRACE("iface %p, src %p, dst %p.\n", iface, src, dst);
3816 hr = ddraw7_DuplicateSurface(&ddraw->IDirectDraw7_iface,
3817 src_impl ? &src_impl->IDirectDrawSurface7_iface : NULL, &dst7);
3818 if (FAILED(hr))
3819 return hr;
3820 dst_impl = impl_from_IDirectDrawSurface7(dst7);
3821 *dst = &dst_impl->IDirectDrawSurface_iface;
3822 IDirectDrawSurface_AddRef(*dst);
3823 IDirectDrawSurface7_Release(dst7);
3825 return hr;
3828 /*****************************************************************************
3829 * IDirect3D7::EnumDevices
3831 * The EnumDevices method for IDirect3D7. It enumerates all supported
3832 * D3D7 devices. Currently the T&L, HAL and RGB devices are enumerated.
3834 * Params:
3835 * callback: Function to call for each enumerated device
3836 * context: Pointer to pass back to the app
3838 * Returns:
3839 * D3D_OK, or the return value of the GetCaps call
3841 *****************************************************************************/
3842 static HRESULT WINAPI d3d7_EnumDevices(IDirect3D7 *iface, LPD3DENUMDEVICESCALLBACK7 callback, void *context)
3844 struct ddraw *ddraw = impl_from_IDirect3D7(iface);
3845 D3DDEVICEDESC7 device_desc7;
3846 D3DDEVICEDESC device_desc1;
3847 HRESULT hr;
3848 size_t i;
3850 TRACE("iface %p, callback %p, context %p.\n", iface, callback, context);
3852 if (!callback)
3853 return DDERR_INVALIDPARAMS;
3855 wined3d_mutex_lock();
3857 hr = IDirect3DImpl_GetCaps(ddraw->wined3d, &device_desc1, &device_desc7);
3858 if (hr != D3D_OK)
3860 wined3d_mutex_unlock();
3861 return hr;
3864 for (i = 0; i < sizeof(device_list7)/sizeof(device_list7[0]); i++)
3866 HRESULT ret;
3868 device_desc7.deviceGUID = *device_list7[i].device_guid;
3869 ret = callback(device_list7[i].interface_name, device_list7[i].device_name, &device_desc7, context);
3870 if (ret != DDENUMRET_OK)
3872 TRACE("Application cancelled the enumeration.\n");
3873 wined3d_mutex_unlock();
3874 return D3D_OK;
3878 TRACE("End of enumeration.\n");
3880 wined3d_mutex_unlock();
3882 return D3D_OK;
3885 /*****************************************************************************
3886 * IDirect3D3::EnumDevices
3888 * Enumerates all supported Direct3DDevice interfaces. This is the
3889 * implementation for Direct3D 1 to Direc3D 3, Version 7 has its own.
3891 * Version 1, 2 and 3
3893 * Params:
3894 * callback: Application-provided routine to call for each enumerated device
3895 * Context: Pointer to pass to the callback
3897 * Returns:
3898 * D3D_OK on success,
3899 * The result of IDirect3DImpl_GetCaps if it failed
3901 *****************************************************************************/
3902 static HRESULT WINAPI d3d3_EnumDevices(IDirect3D3 *iface, LPD3DENUMDEVICESCALLBACK callback, void *context)
3904 static CHAR wined3d_description[] = "Wine D3DDevice using WineD3D and OpenGL";
3906 struct ddraw *ddraw = impl_from_IDirect3D3(iface);
3907 D3DDEVICEDESC device_desc1, hal_desc, hel_desc;
3908 D3DDEVICEDESC7 device_desc7;
3909 HRESULT hr;
3911 /* Some games (Motoracer 2 demo) have the bad idea to modify the device
3912 * name string. Let's put the string in a sufficiently sized array in
3913 * writable memory. */
3914 char device_name[50];
3915 strcpy(device_name,"Direct3D HEL");
3917 TRACE("iface %p, callback %p, context %p.\n", iface, callback, context);
3919 if (!callback)
3920 return DDERR_INVALIDPARAMS;
3922 wined3d_mutex_lock();
3924 hr = IDirect3DImpl_GetCaps(ddraw->wined3d, &device_desc1, &device_desc7);
3925 if (hr != D3D_OK)
3927 wined3d_mutex_unlock();
3928 return hr;
3931 /* Do I have to enumerate the reference id? Note from old d3d7:
3932 * "It seems that enumerating the reference IID on Direct3D 1 games
3933 * (AvP / Motoracer2) breaks them". So do not enumerate this iid in V1
3935 * There's a registry key HKLM\Software\Microsoft\Direct3D\Drivers,
3936 * EnumReference which enables / disables enumerating the reference
3937 * rasterizer. It's a DWORD, 0 means disabled, 2 means enabled. The
3938 * enablerefrast.reg and disablerefrast.reg files in the DirectX 7.0 sdk
3939 * demo directory suggest this.
3941 * Some games(GTA 2) seem to use the second enumerated device, so I have
3942 * to enumerate at least 2 devices. So enumerate the reference device to
3943 * have 2 devices.
3945 * Other games (Rollcage) tell emulation and hal device apart by certain
3946 * flags. Rollcage expects D3DPTEXTURECAPS_POW2 to be set (yeah, it is a
3947 * limitation flag), and it refuses all devices that have the perspective
3948 * flag set. This way it refuses the emulation device, and HAL devices
3949 * never have POW2 unset in d3d7 on windows. */
3950 if (ddraw->d3dversion != 1)
3952 static CHAR reference_description[] = "RGB Direct3D emulation";
3954 TRACE("Enumerating WineD3D D3DDevice interface.\n");
3955 hal_desc = device_desc1;
3956 hel_desc = device_desc1;
3957 /* The rgb device has the pow2 flag set in the hel caps, but not in the hal caps. */
3958 hal_desc.dpcLineCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2
3959 | D3DPTEXTURECAPS_NONPOW2CONDITIONAL | D3DPTEXTURECAPS_PERSPECTIVE);
3960 hal_desc.dpcTriCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2
3961 | D3DPTEXTURECAPS_NONPOW2CONDITIONAL | D3DPTEXTURECAPS_PERSPECTIVE);
3962 /* RGB, RAMP and MMX devices have a HAL dcmColorModel of 0 */
3963 hal_desc.dcmColorModel = 0;
3965 hr = callback((GUID *)&IID_IDirect3DRGBDevice, reference_description,
3966 device_name, &hal_desc, &hel_desc, context);
3967 if (hr != D3DENUMRET_OK)
3969 TRACE("Application cancelled the enumeration.\n");
3970 wined3d_mutex_unlock();
3971 return D3D_OK;
3975 strcpy(device_name,"Direct3D HAL");
3977 TRACE("Enumerating HAL Direct3D device.\n");
3978 hal_desc = device_desc1;
3979 hel_desc = device_desc1;
3981 /* The hal device does not have the pow2 flag set in hel, but in hal. */
3982 hel_desc.dpcLineCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2
3983 | D3DPTEXTURECAPS_NONPOW2CONDITIONAL | D3DPTEXTURECAPS_PERSPECTIVE);
3984 hel_desc.dpcTriCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2
3985 | D3DPTEXTURECAPS_NONPOW2CONDITIONAL | D3DPTEXTURECAPS_PERSPECTIVE);
3986 /* HAL devices have a HEL dcmColorModel of 0 */
3987 hel_desc.dcmColorModel = 0;
3989 hr = callback((GUID *)&IID_IDirect3DHALDevice, wined3d_description,
3990 device_name, &hal_desc, &hel_desc, context);
3991 if (hr != D3DENUMRET_OK)
3993 TRACE("Application cancelled the enumeration.\n");
3994 wined3d_mutex_unlock();
3995 return D3D_OK;
3998 TRACE("End of enumeration.\n");
4000 wined3d_mutex_unlock();
4002 return D3D_OK;
4005 static HRESULT WINAPI d3d2_EnumDevices(IDirect3D2 *iface, LPD3DENUMDEVICESCALLBACK callback, void *context)
4007 struct ddraw *ddraw = impl_from_IDirect3D2(iface);
4009 TRACE("iface %p, callback %p, context %p.\n", iface, callback, context);
4011 return d3d3_EnumDevices(&ddraw->IDirect3D3_iface, callback, context);
4014 static HRESULT WINAPI d3d1_EnumDevices(IDirect3D *iface, LPD3DENUMDEVICESCALLBACK callback, void *context)
4016 struct ddraw *ddraw = impl_from_IDirect3D(iface);
4018 TRACE("iface %p, callback %p, context %p.\n", iface, callback, context);
4020 return d3d3_EnumDevices(&ddraw->IDirect3D3_iface, callback, context);
4023 /*****************************************************************************
4024 * IDirect3D3::CreateLight
4026 * Creates an IDirect3DLight interface. This interface is used in
4027 * Direct3D3 or earlier for lighting. In Direct3D7 it has been replaced
4028 * by the DIRECT3DLIGHT7 structure. Wine's Direct3DLight implementation
4029 * uses the IDirect3DDevice7 interface with D3D7 lights.
4031 * Version 1, 2 and 3
4033 * Params:
4034 * light: Address to store the new interface pointer
4035 * outer_unknown: Basically for aggregation, but ddraw doesn't support it.
4036 * Must be NULL
4038 * Returns:
4039 * D3D_OK on success
4040 * DDERR_OUTOFMEMORY if memory allocation failed
4041 * CLASS_E_NOAGGREGATION if outer_unknown != NULL
4043 *****************************************************************************/
4044 static HRESULT WINAPI d3d3_CreateLight(IDirect3D3 *iface, IDirect3DLight **light,
4045 IUnknown *outer_unknown)
4047 struct ddraw *ddraw = impl_from_IDirect3D3(iface);
4048 struct d3d_light *object;
4050 TRACE("iface %p, light %p, outer_unknown %p.\n", iface, light, outer_unknown);
4052 if (outer_unknown) return CLASS_E_NOAGGREGATION;
4054 object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
4055 if (!object)
4057 ERR("Failed to allocate light memory.\n");
4058 return DDERR_OUTOFMEMORY;
4061 d3d_light_init(object, ddraw);
4063 TRACE("Created light %p.\n", object);
4064 *light = &object->IDirect3DLight_iface;
4066 return D3D_OK;
4069 static HRESULT WINAPI d3d2_CreateLight(IDirect3D2 *iface, IDirect3DLight **light, IUnknown *outer_unknown)
4071 struct ddraw *ddraw = impl_from_IDirect3D2(iface);
4073 TRACE("iface %p, light %p, outer_unknown %p.\n", iface, light, outer_unknown);
4075 return d3d3_CreateLight(&ddraw->IDirect3D3_iface, light, outer_unknown);
4078 static HRESULT WINAPI d3d1_CreateLight(IDirect3D *iface, IDirect3DLight **light, IUnknown *outer_unknown)
4080 struct ddraw *ddraw = impl_from_IDirect3D(iface);
4082 TRACE("iface %p, light %p, outer_unknown %p.\n", iface, light, outer_unknown);
4084 return d3d3_CreateLight(&ddraw->IDirect3D3_iface, light, outer_unknown);
4087 /*****************************************************************************
4088 * IDirect3D3::CreateMaterial
4090 * Creates an IDirect3DMaterial interface. This interface is used by Direct3D3
4091 * and older versions. The IDirect3DMaterial implementation wraps its
4092 * functionality to IDirect3DDevice7::SetMaterial and friends.
4094 * Version 1, 2 and 3
4096 * Params:
4097 * material: Address to store the new interface's pointer to
4098 * outer_unknown: Basically for aggregation, but ddraw doesn't support it.
4099 * Must be NULL
4101 * Returns:
4102 * D3D_OK on success
4103 * DDERR_OUTOFMEMORY if memory allocation failed
4104 * CLASS_E_NOAGGREGATION if outer_unknown != NULL
4106 *****************************************************************************/
4107 static HRESULT WINAPI d3d3_CreateMaterial(IDirect3D3 *iface, IDirect3DMaterial3 **material,
4108 IUnknown *outer_unknown)
4110 struct ddraw *ddraw = impl_from_IDirect3D3(iface);
4111 struct d3d_material *object;
4113 TRACE("iface %p, material %p, outer_unknown %p.\n", iface, material, outer_unknown);
4115 if (outer_unknown) return CLASS_E_NOAGGREGATION;
4117 object = d3d_material_create(ddraw);
4118 if (!object)
4120 ERR("Failed to allocate material memory.\n");
4121 return DDERR_OUTOFMEMORY;
4124 TRACE("Created material %p.\n", object);
4125 *material = &object->IDirect3DMaterial3_iface;
4127 return D3D_OK;
4130 static HRESULT WINAPI d3d2_CreateMaterial(IDirect3D2 *iface, IDirect3DMaterial2 **material,
4131 IUnknown *outer_unknown)
4133 struct ddraw *ddraw = impl_from_IDirect3D2(iface);
4134 struct d3d_material *object;
4136 TRACE("iface %p, material %p, outer_unknown %p.\n", iface, material, outer_unknown);
4138 object = d3d_material_create(ddraw);
4139 if (!object)
4141 ERR("Failed to allocate material memory.\n");
4142 return DDERR_OUTOFMEMORY;
4145 TRACE("Created material %p.\n", object);
4146 *material = &object->IDirect3DMaterial2_iface;
4148 return D3D_OK;
4151 static HRESULT WINAPI d3d1_CreateMaterial(IDirect3D *iface, IDirect3DMaterial **material,
4152 IUnknown *outer_unknown)
4154 struct ddraw *ddraw = impl_from_IDirect3D(iface);
4155 struct d3d_material *object;
4157 TRACE("iface %p, material %p, outer_unknown %p.\n", iface, material, outer_unknown);
4159 object = d3d_material_create(ddraw);
4160 if (!object)
4162 ERR("Failed to allocate material memory.\n");
4163 return DDERR_OUTOFMEMORY;
4166 TRACE("Created material %p.\n", object);
4167 *material = &object->IDirect3DMaterial_iface;
4169 return D3D_OK;
4172 /*****************************************************************************
4173 * IDirect3D3::CreateViewport
4175 * Creates an IDirect3DViewport interface. This interface is used
4176 * by Direct3D and earlier versions for Viewport management. In Direct3D7
4177 * it has been replaced by a viewport structure and
4178 * IDirect3DDevice7::*Viewport. Wine's IDirect3DViewport implementation
4179 * uses the IDirect3DDevice7 methods for its functionality
4181 * Params:
4182 * Viewport: Address to store the new interface pointer
4183 * outer_unknown: Basically for aggregation, but ddraw doesn't support it.
4184 * Must be NULL
4186 * Returns:
4187 * D3D_OK on success
4188 * DDERR_OUTOFMEMORY if memory allocation failed
4189 * CLASS_E_NOAGGREGATION if outer_unknown != NULL
4191 *****************************************************************************/
4192 static HRESULT WINAPI d3d3_CreateViewport(IDirect3D3 *iface, IDirect3DViewport3 **viewport,
4193 IUnknown *outer_unknown)
4195 struct ddraw *ddraw = impl_from_IDirect3D3(iface);
4196 struct d3d_viewport *object;
4198 TRACE("iface %p, viewport %p, outer_unknown %p.\n", iface, viewport, outer_unknown);
4200 if (outer_unknown) return CLASS_E_NOAGGREGATION;
4202 object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
4203 if (!object)
4205 ERR("Failed to allocate viewport memory.\n");
4206 return DDERR_OUTOFMEMORY;
4209 d3d_viewport_init(object, ddraw);
4211 TRACE("Created viewport %p.\n", object);
4212 *viewport = &object->IDirect3DViewport3_iface;
4214 return D3D_OK;
4217 static HRESULT WINAPI d3d2_CreateViewport(IDirect3D2 *iface, IDirect3DViewport2 **viewport, IUnknown *outer_unknown)
4219 struct ddraw *ddraw = impl_from_IDirect3D2(iface);
4221 TRACE("iface %p, viewport %p, outer_unknown %p.\n", iface, viewport, outer_unknown);
4223 return d3d3_CreateViewport(&ddraw->IDirect3D3_iface, (IDirect3DViewport3 **)viewport,
4224 outer_unknown);
4227 static HRESULT WINAPI d3d1_CreateViewport(IDirect3D *iface, IDirect3DViewport **viewport, IUnknown *outer_unknown)
4229 struct ddraw *ddraw = impl_from_IDirect3D(iface);
4231 TRACE("iface %p, viewport %p, outer_unknown %p.\n", iface, viewport, outer_unknown);
4233 return d3d3_CreateViewport(&ddraw->IDirect3D3_iface, (IDirect3DViewport3 **)viewport,
4234 outer_unknown);
4237 /*****************************************************************************
4238 * IDirect3D3::FindDevice
4240 * This method finds a device with the requested properties and returns a
4241 * device description
4243 * Verion 1, 2 and 3
4244 * Params:
4245 * fds: Describes the requested device characteristics
4246 * fdr: Returns the device description
4248 * Returns:
4249 * D3D_OK on success
4250 * DDERR_INVALIDPARAMS if no device was found
4252 *****************************************************************************/
4253 static HRESULT WINAPI d3d3_FindDevice(IDirect3D3 *iface, D3DFINDDEVICESEARCH *fds, D3DFINDDEVICERESULT *fdr)
4255 struct ddraw *ddraw = impl_from_IDirect3D3(iface);
4256 D3DDEVICEDESC7 desc7;
4257 D3DDEVICEDESC desc1;
4258 HRESULT hr;
4260 TRACE("iface %p, fds %p, fdr %p.\n", iface, fds, fdr);
4262 if (!fds || !fdr) return DDERR_INVALIDPARAMS;
4264 if (fds->dwSize != sizeof(D3DFINDDEVICESEARCH)
4265 || fdr->dwSize != sizeof(D3DFINDDEVICERESULT))
4266 return DDERR_INVALIDPARAMS;
4268 if ((fds->dwFlags & D3DFDS_COLORMODEL)
4269 && fds->dcmColorModel != D3DCOLOR_RGB)
4271 WARN("Trying to request a non-RGB D3D color model. Not supported.\n");
4272 return DDERR_INVALIDPARAMS; /* No real idea what to return here :-) */
4275 if (fds->dwFlags & D3DFDS_GUID)
4277 TRACE("Trying to match guid %s.\n", debugstr_guid(&(fds->guid)));
4278 if (!IsEqualGUID(&IID_D3DDEVICE_WineD3D, &fds->guid)
4279 && !IsEqualGUID(&IID_IDirect3DHALDevice, &fds->guid)
4280 && !IsEqualGUID(&IID_IDirect3DRGBDevice, &fds->guid))
4282 WARN("No match for this GUID.\n");
4283 return DDERR_NOTFOUND;
4287 /* Get the caps */
4288 hr = IDirect3DImpl_GetCaps(ddraw->wined3d, &desc1, &desc7);
4289 if (hr != D3D_OK) return hr;
4291 /* Now return our own GUID */
4292 fdr->guid = IID_D3DDEVICE_WineD3D;
4293 fdr->ddHwDesc = desc1;
4294 fdr->ddSwDesc = desc1;
4296 TRACE("Returning Wine's wined3d device with (undumped) capabilities.\n");
4298 return D3D_OK;
4301 static HRESULT WINAPI d3d2_FindDevice(IDirect3D2 *iface, D3DFINDDEVICESEARCH *fds, D3DFINDDEVICERESULT *fdr)
4303 struct ddraw *ddraw = impl_from_IDirect3D2(iface);
4305 TRACE("iface %p, fds %p, fdr %p.\n", iface, fds, fdr);
4307 return d3d3_FindDevice(&ddraw->IDirect3D3_iface, fds, fdr);
4310 static HRESULT WINAPI d3d1_FindDevice(IDirect3D *iface, D3DFINDDEVICESEARCH *fds, D3DFINDDEVICERESULT *fdr)
4312 struct ddraw *ddraw = impl_from_IDirect3D(iface);
4314 TRACE("iface %p, fds %p, fdr %p.\n", iface, fds, fdr);
4316 return d3d3_FindDevice(&ddraw->IDirect3D3_iface, fds, fdr);
4319 /*****************************************************************************
4320 * IDirect3D7::CreateDevice
4322 * Creates an IDirect3DDevice7 interface.
4324 * Version 2, 3 and 7. IDirect3DDevice 1 interfaces are interfaces to
4325 * DirectDraw surfaces and are created with
4326 * IDirectDrawSurface::QueryInterface. This method uses CreateDevice to
4327 * create the device object and QueryInterfaces for IDirect3DDevice
4329 * Params:
4330 * refiid: IID of the device to create
4331 * Surface: Initial rendertarget
4332 * Device: Address to return the interface pointer
4334 * Returns:
4335 * D3D_OK on success
4336 * DDERR_OUTOFMEMORY if memory allocation failed
4337 * DDERR_INVALIDPARAMS if a device exists already
4339 *****************************************************************************/
4340 static HRESULT WINAPI d3d7_CreateDevice(IDirect3D7 *iface, REFCLSID riid,
4341 IDirectDrawSurface7 *surface, IDirect3DDevice7 **device)
4343 struct ddraw_surface *target = unsafe_impl_from_IDirectDrawSurface7(surface);
4344 struct ddraw *ddraw = impl_from_IDirect3D7(iface);
4345 struct d3d_device *object;
4346 HRESULT hr;
4348 TRACE("iface %p, riid %s, surface %p, device %p.\n", iface, debugstr_guid(riid), surface, device);
4350 wined3d_mutex_lock();
4351 hr = d3d_device_create(ddraw, target, 7, &object, NULL);
4352 if (SUCCEEDED(hr))
4353 *device = &object->IDirect3DDevice7_iface;
4354 else
4356 WARN("Failed to create device, hr %#x.\n", hr);
4357 *device = NULL;
4359 wined3d_mutex_unlock();
4361 return hr;
4364 static HRESULT WINAPI d3d3_CreateDevice(IDirect3D3 *iface, REFCLSID riid,
4365 IDirectDrawSurface4 *surface, IDirect3DDevice3 **device, IUnknown *outer_unknown)
4367 struct ddraw_surface *surface_impl = unsafe_impl_from_IDirectDrawSurface4(surface);
4368 struct ddraw *ddraw = impl_from_IDirect3D3(iface);
4369 struct d3d_device *device_impl;
4370 HRESULT hr;
4372 TRACE("iface %p, riid %s, surface %p, device %p, outer_unknown %p.\n",
4373 iface, debugstr_guid(riid), surface, device, outer_unknown);
4375 if (outer_unknown)
4376 return CLASS_E_NOAGGREGATION;
4378 wined3d_mutex_lock();
4379 hr = d3d_device_create(ddraw, surface_impl, 3, &device_impl, NULL);
4380 if (SUCCEEDED(hr))
4381 *device = &device_impl->IDirect3DDevice3_iface;
4382 else
4384 WARN("Failed to create device, hr %#x.\n", hr);
4385 *device = NULL;
4387 wined3d_mutex_unlock();
4389 return hr;
4392 static HRESULT WINAPI d3d2_CreateDevice(IDirect3D2 *iface, REFCLSID riid,
4393 IDirectDrawSurface *surface, IDirect3DDevice2 **device)
4395 struct ddraw_surface *surface_impl = unsafe_impl_from_IDirectDrawSurface(surface);
4396 struct ddraw *ddraw = impl_from_IDirect3D2(iface);
4397 struct d3d_device *device_impl;
4398 HRESULT hr;
4400 TRACE("iface %p, riid %s, surface %p, device %p.\n",
4401 iface, debugstr_guid(riid), surface, device);
4403 wined3d_mutex_lock();
4404 hr = d3d_device_create(ddraw, surface_impl, 2, &device_impl, NULL);
4405 if (SUCCEEDED(hr))
4406 *device = &device_impl->IDirect3DDevice2_iface;
4407 else
4409 WARN("Failed to create device, hr %#x.\n", hr);
4410 *device = NULL;
4412 wined3d_mutex_unlock();
4414 return hr;
4417 /*****************************************************************************
4418 * IDirect3D7::CreateVertexBuffer
4420 * Creates a new vertex buffer object and returns a IDirect3DVertexBuffer7
4421 * interface.
4423 * Version 3 and 7
4425 * Params:
4426 * desc: Requested Vertex buffer properties
4427 * vertex_buffer: Address to return the interface pointer at
4428 * flags: Some flags, should be 0
4430 * Returns
4431 * D3D_OK on success
4432 * DDERR_OUTOFMEMORY if memory allocation failed
4433 * The return value of IWineD3DDevice::CreateVertexBuffer if this call fails
4434 * DDERR_INVALIDPARAMS if desc or vertex_buffer are NULL
4436 *****************************************************************************/
4437 static HRESULT WINAPI d3d7_CreateVertexBuffer(IDirect3D7 *iface, D3DVERTEXBUFFERDESC *desc,
4438 IDirect3DVertexBuffer7 **vertex_buffer, DWORD flags)
4440 struct ddraw *ddraw = impl_from_IDirect3D7(iface);
4441 struct d3d_vertex_buffer *object;
4442 HRESULT hr;
4444 TRACE("iface %p, desc %p, vertex_buffer %p, flags %#x.\n",
4445 iface, desc, vertex_buffer, flags);
4447 if (!vertex_buffer || !desc) return DDERR_INVALIDPARAMS;
4449 hr = d3d_vertex_buffer_create(&object, ddraw, desc);
4450 if (hr == D3D_OK)
4452 TRACE("Created vertex buffer %p.\n", object);
4453 *vertex_buffer = &object->IDirect3DVertexBuffer7_iface;
4455 else
4456 WARN("Failed to create vertex buffer, hr %#x.\n", hr);
4458 return hr;
4461 static HRESULT WINAPI d3d3_CreateVertexBuffer(IDirect3D3 *iface, D3DVERTEXBUFFERDESC *desc,
4462 IDirect3DVertexBuffer **vertex_buffer, DWORD flags, IUnknown *outer_unknown)
4464 struct ddraw *ddraw = impl_from_IDirect3D3(iface);
4465 struct d3d_vertex_buffer *object;
4466 HRESULT hr;
4468 TRACE("iface %p, desc %p, vertex_buffer %p, flags %#x, outer_unknown %p.\n",
4469 iface, desc, vertex_buffer, flags, outer_unknown);
4471 if (outer_unknown)
4472 return CLASS_E_NOAGGREGATION;
4473 if (!vertex_buffer || !desc)
4474 return DDERR_INVALIDPARAMS;
4476 hr = d3d_vertex_buffer_create(&object, ddraw, desc);
4477 if (hr == D3D_OK)
4479 TRACE("Created vertex buffer %p.\n", object);
4480 *vertex_buffer = &object->IDirect3DVertexBuffer_iface;
4482 else
4483 WARN("Failed to create vertex buffer, hr %#x.\n", hr);
4485 return hr;
4488 /*****************************************************************************
4489 * IDirect3D7::EnumZBufferFormats
4491 * Enumerates all supported Z buffer pixel formats
4493 * Version 3 and 7
4495 * Params:
4496 * device_iid:
4497 * callback: callback to call for each pixel format
4498 * context: Pointer to pass back to the callback
4500 * Returns:
4501 * D3D_OK on success
4502 * DDERR_INVALIDPARAMS if callback is NULL
4503 * For details, see IWineD3DDevice::EnumZBufferFormats
4505 *****************************************************************************/
4506 static HRESULT WINAPI d3d7_EnumZBufferFormats(IDirect3D7 *iface, REFCLSID device_iid,
4507 LPD3DENUMPIXELFORMATSCALLBACK callback, void *context)
4509 struct ddraw *ddraw = impl_from_IDirect3D7(iface);
4510 struct wined3d_display_mode mode;
4511 enum wined3d_device_type type;
4512 unsigned int i;
4513 HRESULT hr;
4515 /* Order matters. Specifically, BattleZone II (full version) expects the
4516 * 16-bit depth formats to be listed before the 24 and 32 ones. */
4517 static const enum wined3d_format_id formats[] =
4519 WINED3DFMT_S1_UINT_D15_UNORM,
4520 WINED3DFMT_D16_UNORM,
4521 WINED3DFMT_X8D24_UNORM,
4522 WINED3DFMT_S4X4_UINT_D24_UNORM,
4523 WINED3DFMT_D24_UNORM_S8_UINT,
4524 WINED3DFMT_D32_UNORM,
4527 TRACE("iface %p, device_iid %s, callback %p, context %p.\n",
4528 iface, debugstr_guid(device_iid), callback, context);
4530 if (!callback) return DDERR_INVALIDPARAMS;
4532 if (IsEqualGUID(device_iid, &IID_IDirect3DHALDevice)
4533 || IsEqualGUID(device_iid, &IID_IDirect3DTnLHalDevice)
4534 || IsEqualGUID(device_iid, &IID_D3DDEVICE_WineD3D))
4536 TRACE("Asked for HAL device.\n");
4537 type = WINED3D_DEVICE_TYPE_HAL;
4539 else if (IsEqualGUID(device_iid, &IID_IDirect3DRGBDevice)
4540 || IsEqualGUID(device_iid, &IID_IDirect3DMMXDevice))
4542 TRACE("Asked for SW device.\n");
4543 type = WINED3D_DEVICE_TYPE_SW;
4545 else if (IsEqualGUID(device_iid, &IID_IDirect3DRefDevice))
4547 TRACE("Asked for REF device.\n");
4548 type = WINED3D_DEVICE_TYPE_REF;
4550 else if (IsEqualGUID(device_iid, &IID_IDirect3DNullDevice))
4552 TRACE("Asked for NULLREF device.\n");
4553 type = WINED3D_DEVICE_TYPE_NULLREF;
4555 else
4557 FIXME("Unexpected device GUID %s.\n", debugstr_guid(device_iid));
4558 type = WINED3D_DEVICE_TYPE_HAL;
4561 wined3d_mutex_lock();
4562 /* We need an adapter format from somewhere to please wined3d and WGL.
4563 * Use the current display mode. So far all cards offer the same depth
4564 * stencil format for all modes, but if some do not and applications do
4565 * not like that we'll have to find some workaround, like iterating over
4566 * all imaginable formats and collecting all the depth stencil formats we
4567 * can get. */
4568 if (FAILED(hr = wined3d_get_adapter_display_mode(ddraw->wined3d, WINED3DADAPTER_DEFAULT, &mode, NULL)))
4570 ERR("Failed to get display mode, hr %#x.\n", hr);
4571 wined3d_mutex_unlock();
4572 return hr;
4575 for (i = 0; i < (sizeof(formats) / sizeof(*formats)); ++i)
4577 hr = wined3d_check_device_format(ddraw->wined3d, WINED3DADAPTER_DEFAULT, type, mode.format_id,
4578 WINED3DUSAGE_DEPTHSTENCIL, WINED3D_RTYPE_SURFACE, formats[i], WINED3D_SURFACE_TYPE_OPENGL);
4579 if (SUCCEEDED(hr))
4581 DDPIXELFORMAT pformat;
4583 memset(&pformat, 0, sizeof(pformat));
4584 pformat.dwSize = sizeof(pformat);
4585 PixelFormat_WineD3DtoDD(&pformat, formats[i]);
4587 TRACE("Enumerating wined3d format %#x.\n", formats[i]);
4588 hr = callback(&pformat, context);
4589 if (hr != DDENUMRET_OK)
4591 TRACE("Format enumeration cancelled by application.\n");
4592 wined3d_mutex_unlock();
4593 return D3D_OK;
4598 /* Historically some windows drivers used dwZBufferBitDepth=24 for WINED3DFMT_X8D24_UNORM,
4599 * while others used dwZBufferBitDepth=32. In either case the pitch matches a 32 bits per
4600 * pixel format, so we use dwZBufferBitDepth=32. Some games expect 24. Windows Vista and
4601 * newer enumerate both versions, so we do the same(bug 22434) */
4602 hr = wined3d_check_device_format(ddraw->wined3d, WINED3DADAPTER_DEFAULT, type, mode.format_id,
4603 WINED3DUSAGE_DEPTHSTENCIL, WINED3D_RTYPE_SURFACE, WINED3DFMT_X8D24_UNORM, WINED3D_SURFACE_TYPE_OPENGL);
4604 if (SUCCEEDED(hr))
4606 DDPIXELFORMAT x8d24 =
4608 sizeof(x8d24), DDPF_ZBUFFER, 0,
4609 {24}, {0x00000000}, {0x00ffffff}, {0x00000000}
4611 TRACE("Enumerating WINED3DFMT_X8D24_UNORM, dwZBufferBitDepth=24 version\n");
4612 callback(&x8d24, context);
4615 TRACE("End of enumeration.\n");
4617 wined3d_mutex_unlock();
4619 return D3D_OK;
4622 static HRESULT WINAPI d3d3_EnumZBufferFormats(IDirect3D3 *iface, REFCLSID device_iid,
4623 LPD3DENUMPIXELFORMATSCALLBACK callback, void *context)
4625 struct ddraw *ddraw = impl_from_IDirect3D3(iface);
4627 TRACE("iface %p, device_iid %s, callback %p, context %p.\n",
4628 iface, debugstr_guid(device_iid), callback, context);
4630 return d3d7_EnumZBufferFormats(&ddraw->IDirect3D7_iface, device_iid, callback, context);
4633 /*****************************************************************************
4634 * IDirect3D7::EvictManagedTextures
4636 * Removes all managed textures (=surfaces with DDSCAPS2_TEXTUREMANAGE or
4637 * DDSCAPS2_D3DTEXTUREMANAGE caps) to be removed from video memory.
4639 * Version 3 and 7
4641 * Returns:
4642 * D3D_OK, because it's a stub
4644 *****************************************************************************/
4645 static HRESULT WINAPI d3d7_EvictManagedTextures(IDirect3D7 *iface)
4647 struct ddraw *ddraw = impl_from_IDirect3D7(iface);
4649 TRACE("iface %p!\n", iface);
4651 wined3d_mutex_lock();
4652 if (ddraw->d3d_initialized)
4653 wined3d_device_evict_managed_resources(ddraw->wined3d_device);
4654 wined3d_mutex_unlock();
4656 return D3D_OK;
4659 static HRESULT WINAPI d3d3_EvictManagedTextures(IDirect3D3 *iface)
4661 struct ddraw *ddraw = impl_from_IDirect3D3(iface);
4663 TRACE("iface %p.\n", iface);
4665 return d3d7_EvictManagedTextures(&ddraw->IDirect3D7_iface);
4668 /*****************************************************************************
4669 * IDirect3DImpl_GetCaps
4671 * This function retrieves the device caps from wined3d
4672 * and converts it into a D3D7 and D3D - D3D3 structure
4673 * This is a helper function called from various places in ddraw
4675 * Params:
4676 * wined3d: The interface to get the caps from
4677 * desc1: Old D3D <3 structure to fill (needed)
4678 * desc7: D3D7 device desc structure to fill (needed)
4680 * Returns
4681 * D3D_OK on success, or the return value of IWineD3D::GetCaps
4683 *****************************************************************************/
4684 HRESULT IDirect3DImpl_GetCaps(const struct wined3d *wined3d, D3DDEVICEDESC *desc1, D3DDEVICEDESC7 *desc7)
4686 WINED3DCAPS wined3d_caps;
4687 HRESULT hr;
4689 TRACE("wined3d %p, desc1 %p, desc7 %p.\n", wined3d, desc1, desc7);
4691 memset(&wined3d_caps, 0, sizeof(wined3d_caps));
4693 wined3d_mutex_lock();
4694 hr = wined3d_get_device_caps(wined3d, 0, WINED3D_DEVICE_TYPE_HAL, &wined3d_caps);
4695 wined3d_mutex_unlock();
4696 if (FAILED(hr))
4698 WARN("Failed to get device caps, hr %#x.\n", hr);
4699 return hr;
4702 /* Copy the results into the d3d7 and d3d3 structures */
4703 desc7->dwDevCaps = wined3d_caps.DevCaps;
4704 desc7->dpcLineCaps.dwMiscCaps = wined3d_caps.PrimitiveMiscCaps;
4705 desc7->dpcLineCaps.dwRasterCaps = wined3d_caps.RasterCaps;
4706 desc7->dpcLineCaps.dwZCmpCaps = wined3d_caps.ZCmpCaps;
4707 desc7->dpcLineCaps.dwSrcBlendCaps = wined3d_caps.SrcBlendCaps;
4708 desc7->dpcLineCaps.dwDestBlendCaps = wined3d_caps.DestBlendCaps;
4709 desc7->dpcLineCaps.dwAlphaCmpCaps = wined3d_caps.AlphaCmpCaps;
4710 desc7->dpcLineCaps.dwShadeCaps = wined3d_caps.ShadeCaps;
4711 desc7->dpcLineCaps.dwTextureCaps = wined3d_caps.TextureCaps;
4712 desc7->dpcLineCaps.dwTextureFilterCaps = wined3d_caps.TextureFilterCaps;
4713 desc7->dpcLineCaps.dwTextureAddressCaps = wined3d_caps.TextureAddressCaps;
4715 desc7->dwMaxTextureWidth = wined3d_caps.MaxTextureWidth;
4716 desc7->dwMaxTextureHeight = wined3d_caps.MaxTextureHeight;
4718 desc7->dwMaxTextureRepeat = wined3d_caps.MaxTextureRepeat;
4719 desc7->dwMaxTextureAspectRatio = wined3d_caps.MaxTextureAspectRatio;
4720 desc7->dwMaxAnisotropy = wined3d_caps.MaxAnisotropy;
4721 desc7->dvMaxVertexW = wined3d_caps.MaxVertexW;
4723 desc7->dvGuardBandLeft = wined3d_caps.GuardBandLeft;
4724 desc7->dvGuardBandTop = wined3d_caps.GuardBandTop;
4725 desc7->dvGuardBandRight = wined3d_caps.GuardBandRight;
4726 desc7->dvGuardBandBottom = wined3d_caps.GuardBandBottom;
4728 desc7->dvExtentsAdjust = wined3d_caps.ExtentsAdjust;
4729 desc7->dwStencilCaps = wined3d_caps.StencilCaps;
4731 desc7->dwFVFCaps = wined3d_caps.FVFCaps;
4732 desc7->dwTextureOpCaps = wined3d_caps.TextureOpCaps;
4734 desc7->dwVertexProcessingCaps = wined3d_caps.VertexProcessingCaps;
4735 desc7->dwMaxActiveLights = wined3d_caps.MaxActiveLights;
4737 /* Remove all non-d3d7 caps */
4738 desc7->dwDevCaps &= (
4739 D3DDEVCAPS_FLOATTLVERTEX | D3DDEVCAPS_SORTINCREASINGZ | D3DDEVCAPS_SORTDECREASINGZ |
4740 D3DDEVCAPS_SORTEXACT | D3DDEVCAPS_EXECUTESYSTEMMEMORY | D3DDEVCAPS_EXECUTEVIDEOMEMORY |
4741 D3DDEVCAPS_TLVERTEXSYSTEMMEMORY | D3DDEVCAPS_TLVERTEXVIDEOMEMORY | D3DDEVCAPS_TEXTURESYSTEMMEMORY |
4742 D3DDEVCAPS_TEXTUREVIDEOMEMORY | D3DDEVCAPS_DRAWPRIMTLVERTEX | D3DDEVCAPS_CANRENDERAFTERFLIP |
4743 D3DDEVCAPS_TEXTURENONLOCALVIDMEM | D3DDEVCAPS_DRAWPRIMITIVES2 | D3DDEVCAPS_SEPARATETEXTUREMEMORIES |
4744 D3DDEVCAPS_DRAWPRIMITIVES2EX | D3DDEVCAPS_HWTRANSFORMANDLIGHT | D3DDEVCAPS_CANBLTSYSTONONLOCAL |
4745 D3DDEVCAPS_HWRASTERIZATION);
4747 desc7->dwStencilCaps &= (
4748 D3DSTENCILCAPS_KEEP | D3DSTENCILCAPS_ZERO | D3DSTENCILCAPS_REPLACE |
4749 D3DSTENCILCAPS_INCRSAT | D3DSTENCILCAPS_DECRSAT | D3DSTENCILCAPS_INVERT |
4750 D3DSTENCILCAPS_INCR | D3DSTENCILCAPS_DECR);
4752 /* FVF caps ?*/
4754 desc7->dwTextureOpCaps &= (
4755 D3DTEXOPCAPS_DISABLE | D3DTEXOPCAPS_SELECTARG1 | D3DTEXOPCAPS_SELECTARG2 |
4756 D3DTEXOPCAPS_MODULATE | D3DTEXOPCAPS_MODULATE2X | D3DTEXOPCAPS_MODULATE4X |
4757 D3DTEXOPCAPS_ADD | D3DTEXOPCAPS_ADDSIGNED | D3DTEXOPCAPS_ADDSIGNED2X |
4758 D3DTEXOPCAPS_SUBTRACT | D3DTEXOPCAPS_ADDSMOOTH | D3DTEXOPCAPS_BLENDTEXTUREALPHA |
4759 D3DTEXOPCAPS_BLENDFACTORALPHA | D3DTEXOPCAPS_BLENDTEXTUREALPHAPM | D3DTEXOPCAPS_BLENDCURRENTALPHA |
4760 D3DTEXOPCAPS_PREMODULATE | D3DTEXOPCAPS_MODULATEALPHA_ADDCOLOR | D3DTEXOPCAPS_MODULATECOLOR_ADDALPHA |
4761 D3DTEXOPCAPS_MODULATEINVALPHA_ADDCOLOR | D3DTEXOPCAPS_MODULATEINVCOLOR_ADDALPHA | D3DTEXOPCAPS_BUMPENVMAP |
4762 D3DTEXOPCAPS_BUMPENVMAPLUMINANCE | D3DTEXOPCAPS_DOTPRODUCT3);
4764 desc7->dwVertexProcessingCaps &= (
4765 D3DVTXPCAPS_TEXGEN | D3DVTXPCAPS_MATERIALSOURCE7 | D3DVTXPCAPS_VERTEXFOG |
4766 D3DVTXPCAPS_DIRECTIONALLIGHTS | D3DVTXPCAPS_POSITIONALLIGHTS | D3DVTXPCAPS_LOCALVIEWER);
4768 desc7->dpcLineCaps.dwMiscCaps &= (
4769 D3DPMISCCAPS_MASKPLANES | D3DPMISCCAPS_MASKZ | D3DPMISCCAPS_LINEPATTERNREP |
4770 D3DPMISCCAPS_CONFORMANT | D3DPMISCCAPS_CULLNONE | D3DPMISCCAPS_CULLCW |
4771 D3DPMISCCAPS_CULLCCW);
4773 desc7->dpcLineCaps.dwRasterCaps &= (
4774 D3DPRASTERCAPS_DITHER | D3DPRASTERCAPS_ROP2 | D3DPRASTERCAPS_XOR |
4775 D3DPRASTERCAPS_PAT | D3DPRASTERCAPS_ZTEST | D3DPRASTERCAPS_SUBPIXEL |
4776 D3DPRASTERCAPS_SUBPIXELX | D3DPRASTERCAPS_FOGVERTEX | D3DPRASTERCAPS_FOGTABLE |
4777 D3DPRASTERCAPS_STIPPLE | D3DPRASTERCAPS_ANTIALIASSORTDEPENDENT | D3DPRASTERCAPS_ANTIALIASSORTINDEPENDENT |
4778 D3DPRASTERCAPS_ANTIALIASEDGES | D3DPRASTERCAPS_MIPMAPLODBIAS | D3DPRASTERCAPS_ZBIAS |
4779 D3DPRASTERCAPS_ZBUFFERLESSHSR | D3DPRASTERCAPS_FOGRANGE | D3DPRASTERCAPS_ANISOTROPY |
4780 D3DPRASTERCAPS_WBUFFER | D3DPRASTERCAPS_TRANSLUCENTSORTINDEPENDENT | D3DPRASTERCAPS_WFOG |
4781 D3DPRASTERCAPS_ZFOG);
4783 desc7->dpcLineCaps.dwZCmpCaps &= (
4784 D3DPCMPCAPS_NEVER | D3DPCMPCAPS_LESS | D3DPCMPCAPS_EQUAL |
4785 D3DPCMPCAPS_LESSEQUAL | D3DPCMPCAPS_GREATER | D3DPCMPCAPS_NOTEQUAL |
4786 D3DPCMPCAPS_GREATEREQUAL | D3DPCMPCAPS_ALWAYS);
4788 desc7->dpcLineCaps.dwSrcBlendCaps &= (
4789 D3DPBLENDCAPS_ZERO | D3DPBLENDCAPS_ONE | D3DPBLENDCAPS_SRCCOLOR |
4790 D3DPBLENDCAPS_INVSRCCOLOR | D3DPBLENDCAPS_SRCALPHA | D3DPBLENDCAPS_INVSRCALPHA |
4791 D3DPBLENDCAPS_DESTALPHA | D3DPBLENDCAPS_INVDESTALPHA | D3DPBLENDCAPS_DESTCOLOR |
4792 D3DPBLENDCAPS_INVDESTCOLOR | D3DPBLENDCAPS_SRCALPHASAT | D3DPBLENDCAPS_BOTHSRCALPHA |
4793 D3DPBLENDCAPS_BOTHINVSRCALPHA);
4795 desc7->dpcLineCaps.dwDestBlendCaps &= (
4796 D3DPBLENDCAPS_ZERO | D3DPBLENDCAPS_ONE | D3DPBLENDCAPS_SRCCOLOR |
4797 D3DPBLENDCAPS_INVSRCCOLOR | D3DPBLENDCAPS_SRCALPHA | D3DPBLENDCAPS_INVSRCALPHA |
4798 D3DPBLENDCAPS_DESTALPHA | D3DPBLENDCAPS_INVDESTALPHA | D3DPBLENDCAPS_DESTCOLOR |
4799 D3DPBLENDCAPS_INVDESTCOLOR | D3DPBLENDCAPS_SRCALPHASAT | D3DPBLENDCAPS_BOTHSRCALPHA |
4800 D3DPBLENDCAPS_BOTHINVSRCALPHA);
4802 desc7->dpcLineCaps.dwAlphaCmpCaps &= (
4803 D3DPCMPCAPS_NEVER | D3DPCMPCAPS_LESS | D3DPCMPCAPS_EQUAL |
4804 D3DPCMPCAPS_LESSEQUAL | D3DPCMPCAPS_GREATER | D3DPCMPCAPS_NOTEQUAL |
4805 D3DPCMPCAPS_GREATEREQUAL | D3DPCMPCAPS_ALWAYS);
4807 desc7->dpcLineCaps.dwShadeCaps &= (
4808 D3DPSHADECAPS_COLORFLATMONO | D3DPSHADECAPS_COLORFLATRGB | D3DPSHADECAPS_COLORGOURAUDMONO |
4809 D3DPSHADECAPS_COLORGOURAUDRGB | D3DPSHADECAPS_COLORPHONGMONO | D3DPSHADECAPS_COLORPHONGRGB |
4810 D3DPSHADECAPS_SPECULARFLATMONO | D3DPSHADECAPS_SPECULARFLATRGB | D3DPSHADECAPS_SPECULARGOURAUDMONO |
4811 D3DPSHADECAPS_SPECULARGOURAUDRGB | D3DPSHADECAPS_SPECULARPHONGMONO | D3DPSHADECAPS_SPECULARPHONGRGB |
4812 D3DPSHADECAPS_ALPHAFLATBLEND | D3DPSHADECAPS_ALPHAFLATSTIPPLED | D3DPSHADECAPS_ALPHAGOURAUDBLEND |
4813 D3DPSHADECAPS_ALPHAGOURAUDSTIPPLED | D3DPSHADECAPS_ALPHAPHONGBLEND | D3DPSHADECAPS_ALPHAPHONGSTIPPLED |
4814 D3DPSHADECAPS_FOGFLAT | D3DPSHADECAPS_FOGGOURAUD | D3DPSHADECAPS_FOGPHONG);
4816 desc7->dpcLineCaps.dwTextureCaps &= (
4817 D3DPTEXTURECAPS_PERSPECTIVE | D3DPTEXTURECAPS_POW2 | D3DPTEXTURECAPS_ALPHA |
4818 D3DPTEXTURECAPS_TRANSPARENCY | D3DPTEXTURECAPS_BORDER | D3DPTEXTURECAPS_SQUAREONLY |
4819 D3DPTEXTURECAPS_TEXREPEATNOTSCALEDBYSIZE | D3DPTEXTURECAPS_ALPHAPALETTE| D3DPTEXTURECAPS_NONPOW2CONDITIONAL |
4820 D3DPTEXTURECAPS_PROJECTED | D3DPTEXTURECAPS_CUBEMAP | D3DPTEXTURECAPS_COLORKEYBLEND);
4822 desc7->dpcLineCaps.dwTextureFilterCaps &= (
4823 D3DPTFILTERCAPS_NEAREST | D3DPTFILTERCAPS_LINEAR | D3DPTFILTERCAPS_MIPNEAREST |
4824 D3DPTFILTERCAPS_MIPLINEAR | D3DPTFILTERCAPS_LINEARMIPNEAREST | D3DPTFILTERCAPS_LINEARMIPLINEAR |
4825 D3DPTFILTERCAPS_MINFPOINT | D3DPTFILTERCAPS_MINFLINEAR | D3DPTFILTERCAPS_MINFANISOTROPIC |
4826 D3DPTFILTERCAPS_MIPFPOINT | D3DPTFILTERCAPS_MIPFLINEAR | D3DPTFILTERCAPS_MAGFPOINT |
4827 D3DPTFILTERCAPS_MAGFLINEAR | D3DPTFILTERCAPS_MAGFANISOTROPIC | D3DPTFILTERCAPS_MAGFAFLATCUBIC |
4828 D3DPTFILTERCAPS_MAGFGAUSSIANCUBIC);
4830 desc7->dpcLineCaps.dwTextureBlendCaps &= (
4831 D3DPTBLENDCAPS_DECAL | D3DPTBLENDCAPS_MODULATE | D3DPTBLENDCAPS_DECALALPHA |
4832 D3DPTBLENDCAPS_MODULATEALPHA | D3DPTBLENDCAPS_DECALMASK | D3DPTBLENDCAPS_MODULATEMASK |
4833 D3DPTBLENDCAPS_COPY | D3DPTBLENDCAPS_ADD);
4835 desc7->dpcLineCaps.dwTextureAddressCaps &= (
4836 D3DPTADDRESSCAPS_WRAP | D3DPTADDRESSCAPS_MIRROR | D3DPTADDRESSCAPS_CLAMP |
4837 D3DPTADDRESSCAPS_BORDER | D3DPTADDRESSCAPS_INDEPENDENTUV);
4839 if (!(desc7->dpcLineCaps.dwTextureCaps & D3DPTEXTURECAPS_POW2))
4841 /* DirectX7 always has the np2 flag set, no matter what the card
4842 * supports. Some old games (Rollcage) check the caps incorrectly.
4843 * If wined3d supports nonpow2 textures it also has np2 conditional
4844 * support. */
4845 desc7->dpcLineCaps.dwTextureCaps |= D3DPTEXTURECAPS_POW2 | D3DPTEXTURECAPS_NONPOW2CONDITIONAL;
4848 /* Fill the missing members, and do some fixup */
4849 desc7->dpcLineCaps.dwSize = sizeof(desc7->dpcLineCaps);
4850 desc7->dpcLineCaps.dwTextureBlendCaps = D3DPTBLENDCAPS_ADD | D3DPTBLENDCAPS_MODULATEMASK |
4851 D3DPTBLENDCAPS_COPY | D3DPTBLENDCAPS_DECAL |
4852 D3DPTBLENDCAPS_DECALALPHA | D3DPTBLENDCAPS_DECALMASK |
4853 D3DPTBLENDCAPS_MODULATE | D3DPTBLENDCAPS_MODULATEALPHA;
4854 desc7->dpcLineCaps.dwStippleWidth = 32;
4855 desc7->dpcLineCaps.dwStippleHeight = 32;
4856 /* Use the same for the TriCaps */
4857 desc7->dpcTriCaps = desc7->dpcLineCaps;
4859 desc7->dwDeviceRenderBitDepth = DDBD_16 | DDBD_24 | DDBD_32;
4860 desc7->dwDeviceZBufferBitDepth = DDBD_16 | DDBD_24;
4861 desc7->dwMinTextureWidth = 1;
4862 desc7->dwMinTextureHeight = 1;
4864 /* Convert DWORDs safely to WORDs */
4865 if (wined3d_caps.MaxTextureBlendStages > 0xffff) desc7->wMaxTextureBlendStages = 0xffff;
4866 else desc7->wMaxTextureBlendStages = (WORD)wined3d_caps.MaxTextureBlendStages;
4867 if (wined3d_caps.MaxSimultaneousTextures > 0xffff) desc7->wMaxSimultaneousTextures = 0xffff;
4868 else desc7->wMaxSimultaneousTextures = (WORD)wined3d_caps.MaxSimultaneousTextures;
4870 if (wined3d_caps.MaxUserClipPlanes > 0xffff) desc7->wMaxUserClipPlanes = 0xffff;
4871 else desc7->wMaxUserClipPlanes = (WORD)wined3d_caps.MaxUserClipPlanes;
4872 if (wined3d_caps.MaxVertexBlendMatrices > 0xffff) desc7->wMaxVertexBlendMatrices = 0xffff;
4873 else desc7->wMaxVertexBlendMatrices = (WORD)wined3d_caps.MaxVertexBlendMatrices;
4875 desc7->deviceGUID = IID_IDirect3DTnLHalDevice;
4877 desc7->dwReserved1 = 0;
4878 desc7->dwReserved2 = 0;
4879 desc7->dwReserved3 = 0;
4880 desc7->dwReserved4 = 0;
4882 /* Fill the old structure */
4883 memset(desc1, 0, sizeof(*desc1));
4884 desc1->dwSize = sizeof(D3DDEVICEDESC);
4885 desc1->dwFlags = D3DDD_COLORMODEL
4886 | D3DDD_DEVCAPS
4887 | D3DDD_TRANSFORMCAPS
4888 | D3DDD_BCLIPPING
4889 | D3DDD_LIGHTINGCAPS
4890 | D3DDD_LINECAPS
4891 | D3DDD_TRICAPS
4892 | D3DDD_DEVICERENDERBITDEPTH
4893 | D3DDD_DEVICEZBUFFERBITDEPTH
4894 | D3DDD_MAXBUFFERSIZE
4895 | D3DDD_MAXVERTEXCOUNT;
4897 desc1->dcmColorModel = D3DCOLOR_RGB;
4898 desc1->dwDevCaps = desc7->dwDevCaps;
4899 desc1->dtcTransformCaps.dwSize = sizeof(D3DTRANSFORMCAPS);
4900 desc1->dtcTransformCaps.dwCaps = D3DTRANSFORMCAPS_CLIP;
4901 desc1->bClipping = TRUE;
4902 desc1->dlcLightingCaps.dwSize = sizeof(D3DLIGHTINGCAPS);
4903 desc1->dlcLightingCaps.dwCaps = D3DLIGHTCAPS_DIRECTIONAL
4904 | D3DLIGHTCAPS_PARALLELPOINT
4905 | D3DLIGHTCAPS_POINT
4906 | D3DLIGHTCAPS_SPOT;
4908 desc1->dlcLightingCaps.dwLightingModel = D3DLIGHTINGMODEL_RGB;
4909 desc1->dlcLightingCaps.dwNumLights = desc7->dwMaxActiveLights;
4911 desc1->dpcLineCaps.dwSize = sizeof(D3DPRIMCAPS);
4912 desc1->dpcLineCaps.dwMiscCaps = desc7->dpcLineCaps.dwMiscCaps;
4913 desc1->dpcLineCaps.dwRasterCaps = desc7->dpcLineCaps.dwRasterCaps;
4914 desc1->dpcLineCaps.dwZCmpCaps = desc7->dpcLineCaps.dwZCmpCaps;
4915 desc1->dpcLineCaps.dwSrcBlendCaps = desc7->dpcLineCaps.dwSrcBlendCaps;
4916 desc1->dpcLineCaps.dwDestBlendCaps = desc7->dpcLineCaps.dwDestBlendCaps;
4917 desc1->dpcLineCaps.dwShadeCaps = desc7->dpcLineCaps.dwShadeCaps;
4918 desc1->dpcLineCaps.dwTextureCaps = desc7->dpcLineCaps.dwTextureCaps;
4919 desc1->dpcLineCaps.dwTextureFilterCaps = desc7->dpcLineCaps.dwTextureFilterCaps;
4920 desc1->dpcLineCaps.dwTextureBlendCaps = desc7->dpcLineCaps.dwTextureBlendCaps;
4921 desc1->dpcLineCaps.dwTextureAddressCaps = desc7->dpcLineCaps.dwTextureAddressCaps;
4922 desc1->dpcLineCaps.dwStippleWidth = desc7->dpcLineCaps.dwStippleWidth;
4923 desc1->dpcLineCaps.dwAlphaCmpCaps = desc7->dpcLineCaps.dwAlphaCmpCaps;
4925 desc1->dpcTriCaps.dwSize = sizeof(D3DPRIMCAPS);
4926 desc1->dpcTriCaps.dwMiscCaps = desc7->dpcTriCaps.dwMiscCaps;
4927 desc1->dpcTriCaps.dwRasterCaps = desc7->dpcTriCaps.dwRasterCaps;
4928 desc1->dpcTriCaps.dwZCmpCaps = desc7->dpcTriCaps.dwZCmpCaps;
4929 desc1->dpcTriCaps.dwSrcBlendCaps = desc7->dpcTriCaps.dwSrcBlendCaps;
4930 desc1->dpcTriCaps.dwDestBlendCaps = desc7->dpcTriCaps.dwDestBlendCaps;
4931 desc1->dpcTriCaps.dwShadeCaps = desc7->dpcTriCaps.dwShadeCaps;
4932 desc1->dpcTriCaps.dwTextureCaps = desc7->dpcTriCaps.dwTextureCaps;
4933 desc1->dpcTriCaps.dwTextureFilterCaps = desc7->dpcTriCaps.dwTextureFilterCaps;
4934 desc1->dpcTriCaps.dwTextureBlendCaps = desc7->dpcTriCaps.dwTextureBlendCaps;
4935 desc1->dpcTriCaps.dwTextureAddressCaps = desc7->dpcTriCaps.dwTextureAddressCaps;
4936 desc1->dpcTriCaps.dwStippleWidth = desc7->dpcTriCaps.dwStippleWidth;
4937 desc1->dpcTriCaps.dwAlphaCmpCaps = desc7->dpcTriCaps.dwAlphaCmpCaps;
4939 desc1->dwDeviceRenderBitDepth = desc7->dwDeviceRenderBitDepth;
4940 desc1->dwDeviceZBufferBitDepth = desc7->dwDeviceZBufferBitDepth;
4941 desc1->dwMaxBufferSize = 0;
4942 desc1->dwMaxVertexCount = 65536;
4943 desc1->dwMinTextureWidth = desc7->dwMinTextureWidth;
4944 desc1->dwMinTextureHeight = desc7->dwMinTextureHeight;
4945 desc1->dwMaxTextureWidth = desc7->dwMaxTextureWidth;
4946 desc1->dwMaxTextureHeight = desc7->dwMaxTextureHeight;
4947 desc1->dwMinStippleWidth = 1;
4948 desc1->dwMinStippleHeight = 1;
4949 desc1->dwMaxStippleWidth = 32;
4950 desc1->dwMaxStippleHeight = 32;
4951 desc1->dwMaxTextureRepeat = desc7->dwMaxTextureRepeat;
4952 desc1->dwMaxTextureAspectRatio = desc7->dwMaxTextureAspectRatio;
4953 desc1->dwMaxAnisotropy = desc7->dwMaxAnisotropy;
4954 desc1->dvGuardBandLeft = desc7->dvGuardBandLeft;
4955 desc1->dvGuardBandRight = desc7->dvGuardBandRight;
4956 desc1->dvGuardBandTop = desc7->dvGuardBandTop;
4957 desc1->dvGuardBandBottom = desc7->dvGuardBandBottom;
4958 desc1->dvExtentsAdjust = desc7->dvExtentsAdjust;
4959 desc1->dwStencilCaps = desc7->dwStencilCaps;
4960 desc1->dwFVFCaps = desc7->dwFVFCaps;
4961 desc1->dwTextureOpCaps = desc7->dwTextureOpCaps;
4962 desc1->wMaxTextureBlendStages = desc7->wMaxTextureBlendStages;
4963 desc1->wMaxSimultaneousTextures = desc7->wMaxSimultaneousTextures;
4965 return DD_OK;
4968 /*****************************************************************************
4969 * IDirectDraw7 VTable
4970 *****************************************************************************/
4971 static const struct IDirectDraw7Vtbl ddraw7_vtbl =
4973 /* IUnknown */
4974 ddraw7_QueryInterface,
4975 ddraw7_AddRef,
4976 ddraw7_Release,
4977 /* IDirectDraw */
4978 ddraw7_Compact,
4979 ddraw7_CreateClipper,
4980 ddraw7_CreatePalette,
4981 ddraw7_CreateSurface,
4982 ddraw7_DuplicateSurface,
4983 ddraw7_EnumDisplayModes,
4984 ddraw7_EnumSurfaces,
4985 ddraw7_FlipToGDISurface,
4986 ddraw7_GetCaps,
4987 ddraw7_GetDisplayMode,
4988 ddraw7_GetFourCCCodes,
4989 ddraw7_GetGDISurface,
4990 ddraw7_GetMonitorFrequency,
4991 ddraw7_GetScanLine,
4992 ddraw7_GetVerticalBlankStatus,
4993 ddraw7_Initialize,
4994 ddraw7_RestoreDisplayMode,
4995 ddraw7_SetCooperativeLevel,
4996 ddraw7_SetDisplayMode,
4997 ddraw7_WaitForVerticalBlank,
4998 /* IDirectDraw2 */
4999 ddraw7_GetAvailableVidMem,
5000 /* IDirectDraw3 */
5001 ddraw7_GetSurfaceFromDC,
5002 /* IDirectDraw4 */
5003 ddraw7_RestoreAllSurfaces,
5004 ddraw7_TestCooperativeLevel,
5005 ddraw7_GetDeviceIdentifier,
5006 /* IDirectDraw7 */
5007 ddraw7_StartModeTest,
5008 ddraw7_EvaluateMode
5011 static const struct IDirectDraw4Vtbl ddraw4_vtbl =
5013 /* IUnknown */
5014 ddraw4_QueryInterface,
5015 ddraw4_AddRef,
5016 ddraw4_Release,
5017 /* IDirectDraw */
5018 ddraw4_Compact,
5019 ddraw4_CreateClipper,
5020 ddraw4_CreatePalette,
5021 ddraw4_CreateSurface,
5022 ddraw4_DuplicateSurface,
5023 ddraw4_EnumDisplayModes,
5024 ddraw4_EnumSurfaces,
5025 ddraw4_FlipToGDISurface,
5026 ddraw4_GetCaps,
5027 ddraw4_GetDisplayMode,
5028 ddraw4_GetFourCCCodes,
5029 ddraw4_GetGDISurface,
5030 ddraw4_GetMonitorFrequency,
5031 ddraw4_GetScanLine,
5032 ddraw4_GetVerticalBlankStatus,
5033 ddraw4_Initialize,
5034 ddraw4_RestoreDisplayMode,
5035 ddraw4_SetCooperativeLevel,
5036 ddraw4_SetDisplayMode,
5037 ddraw4_WaitForVerticalBlank,
5038 /* IDirectDraw2 */
5039 ddraw4_GetAvailableVidMem,
5040 /* IDirectDraw3 */
5041 ddraw4_GetSurfaceFromDC,
5042 /* IDirectDraw4 */
5043 ddraw4_RestoreAllSurfaces,
5044 ddraw4_TestCooperativeLevel,
5045 ddraw4_GetDeviceIdentifier,
5048 static const struct IDirectDraw2Vtbl ddraw2_vtbl =
5050 /* IUnknown */
5051 ddraw2_QueryInterface,
5052 ddraw2_AddRef,
5053 ddraw2_Release,
5054 /* IDirectDraw */
5055 ddraw2_Compact,
5056 ddraw2_CreateClipper,
5057 ddraw2_CreatePalette,
5058 ddraw2_CreateSurface,
5059 ddraw2_DuplicateSurface,
5060 ddraw2_EnumDisplayModes,
5061 ddraw2_EnumSurfaces,
5062 ddraw2_FlipToGDISurface,
5063 ddraw2_GetCaps,
5064 ddraw2_GetDisplayMode,
5065 ddraw2_GetFourCCCodes,
5066 ddraw2_GetGDISurface,
5067 ddraw2_GetMonitorFrequency,
5068 ddraw2_GetScanLine,
5069 ddraw2_GetVerticalBlankStatus,
5070 ddraw2_Initialize,
5071 ddraw2_RestoreDisplayMode,
5072 ddraw2_SetCooperativeLevel,
5073 ddraw2_SetDisplayMode,
5074 ddraw2_WaitForVerticalBlank,
5075 /* IDirectDraw2 */
5076 ddraw2_GetAvailableVidMem,
5079 static const struct IDirectDrawVtbl ddraw1_vtbl =
5081 /* IUnknown */
5082 ddraw1_QueryInterface,
5083 ddraw1_AddRef,
5084 ddraw1_Release,
5085 /* IDirectDraw */
5086 ddraw1_Compact,
5087 ddraw1_CreateClipper,
5088 ddraw1_CreatePalette,
5089 ddraw1_CreateSurface,
5090 ddraw1_DuplicateSurface,
5091 ddraw1_EnumDisplayModes,
5092 ddraw1_EnumSurfaces,
5093 ddraw1_FlipToGDISurface,
5094 ddraw1_GetCaps,
5095 ddraw1_GetDisplayMode,
5096 ddraw1_GetFourCCCodes,
5097 ddraw1_GetGDISurface,
5098 ddraw1_GetMonitorFrequency,
5099 ddraw1_GetScanLine,
5100 ddraw1_GetVerticalBlankStatus,
5101 ddraw1_Initialize,
5102 ddraw1_RestoreDisplayMode,
5103 ddraw1_SetCooperativeLevel,
5104 ddraw1_SetDisplayMode,
5105 ddraw1_WaitForVerticalBlank,
5108 static const struct IDirect3D7Vtbl d3d7_vtbl =
5110 /* IUnknown methods */
5111 d3d7_QueryInterface,
5112 d3d7_AddRef,
5113 d3d7_Release,
5114 /* IDirect3D7 methods */
5115 d3d7_EnumDevices,
5116 d3d7_CreateDevice,
5117 d3d7_CreateVertexBuffer,
5118 d3d7_EnumZBufferFormats,
5119 d3d7_EvictManagedTextures
5122 static const struct IDirect3D3Vtbl d3d3_vtbl =
5124 /* IUnknown methods */
5125 d3d3_QueryInterface,
5126 d3d3_AddRef,
5127 d3d3_Release,
5128 /* IDirect3D3 methods */
5129 d3d3_EnumDevices,
5130 d3d3_CreateLight,
5131 d3d3_CreateMaterial,
5132 d3d3_CreateViewport,
5133 d3d3_FindDevice,
5134 d3d3_CreateDevice,
5135 d3d3_CreateVertexBuffer,
5136 d3d3_EnumZBufferFormats,
5137 d3d3_EvictManagedTextures
5140 static const struct IDirect3D2Vtbl d3d2_vtbl =
5142 /* IUnknown methods */
5143 d3d2_QueryInterface,
5144 d3d2_AddRef,
5145 d3d2_Release,
5146 /* IDirect3D2 methods */
5147 d3d2_EnumDevices,
5148 d3d2_CreateLight,
5149 d3d2_CreateMaterial,
5150 d3d2_CreateViewport,
5151 d3d2_FindDevice,
5152 d3d2_CreateDevice
5155 static const struct IDirect3DVtbl d3d1_vtbl =
5157 /* IUnknown methods */
5158 d3d1_QueryInterface,
5159 d3d1_AddRef,
5160 d3d1_Release,
5161 /* IDirect3D methods */
5162 d3d1_Initialize,
5163 d3d1_EnumDevices,
5164 d3d1_CreateLight,
5165 d3d1_CreateMaterial,
5166 d3d1_CreateViewport,
5167 d3d1_FindDevice
5170 /*****************************************************************************
5171 * ddraw_find_decl
5173 * Finds the WineD3D vertex declaration for a specific fvf, and creates one
5174 * if none was found.
5176 * This function is in ddraw.c and the DDraw object space because D3D7
5177 * vertex buffers are created using the IDirect3D interface to the ddraw
5178 * object, so they can be valid across D3D devices(theoretically. The ddraw
5179 * object also owns the wined3d device
5181 * Parameters:
5182 * This: Device
5183 * fvf: Fvf to find the decl for
5185 * Returns:
5186 * NULL in case of an error, the vertex declaration for the FVF otherwise.
5188 *****************************************************************************/
5189 struct wined3d_vertex_declaration *ddraw_find_decl(struct ddraw *This, DWORD fvf)
5191 struct wined3d_vertex_declaration *pDecl = NULL;
5192 HRESULT hr;
5193 int p, low, high; /* deliberately signed */
5194 struct FvfToDecl *convertedDecls = This->decls;
5196 TRACE("Searching for declaration for fvf %08x... ", fvf);
5198 low = 0;
5199 high = This->numConvertedDecls - 1;
5200 while(low <= high) {
5201 p = (low + high) >> 1;
5202 TRACE("%d ", p);
5203 if(convertedDecls[p].fvf == fvf) {
5204 TRACE("found %p\n", convertedDecls[p].decl);
5205 return convertedDecls[p].decl;
5206 } else if(convertedDecls[p].fvf < fvf) {
5207 low = p + 1;
5208 } else {
5209 high = p - 1;
5212 TRACE("not found. Creating and inserting at position %d.\n", low);
5214 hr = wined3d_vertex_declaration_create_from_fvf(This->wined3d_device,
5215 fvf, This, &ddraw_null_wined3d_parent_ops, &pDecl);
5216 if (hr != S_OK) return NULL;
5218 if(This->declArraySize == This->numConvertedDecls) {
5219 int grow = max(This->declArraySize / 2, 8);
5220 convertedDecls = HeapReAlloc(GetProcessHeap(), 0, convertedDecls,
5221 sizeof(convertedDecls[0]) * (This->numConvertedDecls + grow));
5222 if (!convertedDecls)
5224 wined3d_vertex_declaration_decref(pDecl);
5225 return NULL;
5227 This->decls = convertedDecls;
5228 This->declArraySize += grow;
5231 memmove(convertedDecls + low + 1, convertedDecls + low, sizeof(convertedDecls[0]) * (This->numConvertedDecls - low));
5232 convertedDecls[low].decl = pDecl;
5233 convertedDecls[low].fvf = fvf;
5234 This->numConvertedDecls++;
5236 TRACE("Returning %p. %d decls in array\n", pDecl, This->numConvertedDecls);
5237 return pDecl;
5240 static inline struct ddraw *ddraw_from_device_parent(struct wined3d_device_parent *device_parent)
5242 return CONTAINING_RECORD(device_parent, struct ddraw, device_parent);
5245 static void CDECL device_parent_wined3d_device_created(struct wined3d_device_parent *device_parent,
5246 struct wined3d_device *device)
5248 TRACE("device_parent %p, device %p.\n", device_parent, device);
5251 /* This is run from device_process_message() in wined3d, we can't take the
5252 * wined3d mutex. */
5253 static void CDECL device_parent_mode_changed(struct wined3d_device_parent *device_parent)
5255 struct ddraw *ddraw = ddraw_from_device_parent(device_parent);
5256 MONITORINFO monitor_info;
5257 HMONITOR monitor;
5258 BOOL ret;
5259 RECT *r;
5261 TRACE("device_parent %p.\n", device_parent);
5263 if (!(ddraw->cooperative_level & DDSCL_EXCLUSIVE) || !ddraw->swapchain_window)
5265 TRACE("Nothing to resize.\n");
5266 return;
5269 monitor = MonitorFromWindow(ddraw->swapchain_window, MONITOR_DEFAULTTOPRIMARY);
5270 monitor_info.cbSize = sizeof(monitor_info);
5271 if (!(ret = GetMonitorInfoW(monitor, &monitor_info)))
5273 ERR("Failed to get monitor info.\n");
5274 return;
5277 r = &monitor_info.rcMonitor;
5278 TRACE("Resizing window %p to %s.\n", ddraw->swapchain_window, wine_dbgstr_rect(r));
5280 if (!(ret = SetWindowPos(ddraw->swapchain_window, HWND_TOP, r->left, r->top,
5281 r->right - r->left, r->bottom - r->top, SWP_SHOWWINDOW | SWP_NOACTIVATE)))
5282 ERR("Failed to resize window.\n");
5285 static HRESULT CDECL device_parent_create_texture_surface(struct wined3d_device_parent *device_parent,
5286 void *container_parent, UINT width, UINT height, enum wined3d_format_id format, DWORD usage,
5287 enum wined3d_pool pool, UINT level, enum wined3d_cubemap_face face, struct wined3d_surface **surface)
5289 struct ddraw *ddraw = ddraw_from_device_parent(device_parent);
5290 struct ddraw_surface *tex_root = container_parent;
5291 DDSURFACEDESC2 desc = tex_root->surface_desc;
5292 struct ddraw_surface *ddraw_surface;
5293 HRESULT hr;
5295 TRACE("device_parent %p, container_parent %p, width %u, height %u, format %#x, usage %#x,\n"
5296 "\tpool %#x, level %u, face %u, surface %p.\n",
5297 device_parent, container_parent, width, height, format, usage, pool, level, face, surface);
5299 /* The ddraw root surface is created before the wined3d texture. */
5300 if (!level && face == WINED3D_CUBEMAP_FACE_POSITIVE_X)
5302 ddraw_surface = tex_root;
5303 goto done;
5306 desc.dwWidth = width;
5307 desc.dwHeight = height;
5308 if (level)
5309 desc.ddsCaps.dwCaps2 |= DDSCAPS2_MIPMAPSUBLEVEL;
5310 else
5311 desc.ddsCaps.dwCaps2 &= ~DDSCAPS2_MIPMAPSUBLEVEL;
5313 if (desc.ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP)
5315 desc.ddsCaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_ALLFACES;
5317 switch (face)
5319 case WINED3D_CUBEMAP_FACE_POSITIVE_X:
5320 desc.ddsCaps.dwCaps2 |= DDSCAPS2_CUBEMAP_POSITIVEX;
5321 break;
5323 case WINED3D_CUBEMAP_FACE_NEGATIVE_X:
5324 desc.ddsCaps.dwCaps2 |= DDSCAPS2_CUBEMAP_NEGATIVEX;
5325 break;
5327 case WINED3D_CUBEMAP_FACE_POSITIVE_Y:
5328 desc.ddsCaps.dwCaps2 |= DDSCAPS2_CUBEMAP_POSITIVEY;
5329 break;
5331 case WINED3D_CUBEMAP_FACE_NEGATIVE_Y:
5332 desc.ddsCaps.dwCaps2 |= DDSCAPS2_CUBEMAP_NEGATIVEY;
5333 break;
5335 case WINED3D_CUBEMAP_FACE_POSITIVE_Z:
5336 desc.ddsCaps.dwCaps2 |= DDSCAPS2_CUBEMAP_POSITIVEZ;
5337 break;
5339 case WINED3D_CUBEMAP_FACE_NEGATIVE_Z:
5340 desc.ddsCaps.dwCaps2 |= DDSCAPS2_CUBEMAP_NEGATIVEZ;
5341 break;
5343 default:
5344 ERR("Unexpected cube face.\n");
5345 return DDERR_INVALIDPARAMS;
5350 /* FIXME: Validate that format, usage, pool, etc. really make sense. */
5351 if (FAILED(hr = ddraw_create_surface(ddraw, &desc, &ddraw_surface, level, tex_root->version)))
5352 return hr;
5354 done:
5355 *surface = ddraw_surface->wined3d_surface;
5356 wined3d_surface_incref(*surface);
5358 return DD_OK;
5361 static void STDMETHODCALLTYPE ddraw_frontbuffer_destroyed(void *parent)
5363 struct ddraw *ddraw = parent;
5364 ddraw->wined3d_frontbuffer = NULL;
5367 static const struct wined3d_parent_ops ddraw_frontbuffer_parent_ops =
5369 ddraw_frontbuffer_destroyed,
5372 static HRESULT CDECL device_parent_create_swapchain_surface(struct wined3d_device_parent *device_parent,
5373 void *container_parent, UINT width, UINT height, enum wined3d_format_id format_id, DWORD usage,
5374 enum wined3d_multisample_type multisample_type, DWORD multisample_quality, struct wined3d_surface **surface)
5376 struct ddraw *ddraw = ddraw_from_device_parent(device_parent);
5377 HRESULT hr;
5379 TRACE("device_parent %p, container_parent %p, width %u, height %u, format_id %#x, usage %#x,\n"
5380 "\tmultisample_type %#x, multisample_quality %u, surface %p.\n",
5381 device_parent, container_parent, width, height, format_id, usage,
5382 multisample_type, multisample_quality, surface);
5384 if (ddraw->wined3d_frontbuffer)
5386 ERR("Frontbuffer already created.\n");
5387 return E_FAIL;
5390 if (SUCCEEDED(hr = wined3d_surface_create(ddraw->wined3d_device, width, height, format_id, 0,
5391 usage, WINED3D_POOL_DEFAULT, multisample_type, multisample_quality, DefaultSurfaceType,
5392 WINED3D_SURFACE_MAPPABLE, ddraw, &ddraw_frontbuffer_parent_ops, surface)))
5393 ddraw->wined3d_frontbuffer = *surface;
5395 return hr;
5398 static HRESULT CDECL device_parent_create_volume(struct wined3d_device_parent *device_parent,
5399 void *container_parent, UINT width, UINT height, UINT depth, enum wined3d_format_id format,
5400 enum wined3d_pool pool, DWORD usage, struct wined3d_volume **volume)
5402 TRACE("device_parent %p, container_parent %p, width %u, height %u, depth %u, "
5403 "format %#x, pool %#x, usage %#x, volume %p.\n",
5404 device_parent, container_parent, width, height, depth,
5405 format, pool, usage, volume);
5407 ERR("Not implemented!\n");
5409 return E_NOTIMPL;
5412 static HRESULT CDECL device_parent_create_swapchain(struct wined3d_device_parent *device_parent,
5413 struct wined3d_swapchain_desc *desc, struct wined3d_swapchain **swapchain)
5415 struct ddraw *ddraw = ddraw_from_device_parent(device_parent);
5416 HRESULT hr;
5418 TRACE("device_parent %p, desc %p, swapchain %p.\n", device_parent, desc, swapchain);
5420 if (ddraw->wined3d_swapchain)
5422 ERR("Swapchain already created.\n");
5423 return E_FAIL;
5426 hr = wined3d_swapchain_create(ddraw->wined3d_device, desc,
5427 DefaultSurfaceType, NULL, &ddraw_null_wined3d_parent_ops, swapchain);
5428 if (FAILED(hr))
5429 WARN("Failed to create swapchain, hr %#x.\n", hr);
5431 return hr;
5434 static const struct wined3d_device_parent_ops ddraw_wined3d_device_parent_ops =
5436 device_parent_wined3d_device_created,
5437 device_parent_mode_changed,
5438 device_parent_create_swapchain_surface,
5439 device_parent_create_texture_surface,
5440 device_parent_create_volume,
5441 device_parent_create_swapchain,
5444 HRESULT ddraw_init(struct ddraw *ddraw, enum wined3d_device_type device_type)
5446 HRESULT hr;
5447 HDC hDC;
5449 ddraw->IDirectDraw7_iface.lpVtbl = &ddraw7_vtbl;
5450 ddraw->IDirectDraw_iface.lpVtbl = &ddraw1_vtbl;
5451 ddraw->IDirectDraw2_iface.lpVtbl = &ddraw2_vtbl;
5452 ddraw->IDirectDraw4_iface.lpVtbl = &ddraw4_vtbl;
5453 ddraw->IDirect3D_iface.lpVtbl = &d3d1_vtbl;
5454 ddraw->IDirect3D2_iface.lpVtbl = &d3d2_vtbl;
5455 ddraw->IDirect3D3_iface.lpVtbl = &d3d3_vtbl;
5456 ddraw->IDirect3D7_iface.lpVtbl = &d3d7_vtbl;
5457 ddraw->device_parent.ops = &ddraw_wined3d_device_parent_ops;
5458 ddraw->numIfaces = 1;
5459 ddraw->ref7 = 1;
5461 /* Get the current screen settings. */
5462 hDC = GetDC(0);
5463 ddraw->orig_bpp = GetDeviceCaps(hDC, BITSPIXEL) * GetDeviceCaps(hDC, PLANES);
5464 ReleaseDC(0, hDC);
5465 ddraw->orig_width = GetSystemMetrics(SM_CXSCREEN);
5466 ddraw->orig_height = GetSystemMetrics(SM_CYSCREEN);
5468 ddraw->wined3d = wined3d_create(7, WINED3D_LEGACY_DEPTH_BIAS);
5469 if (!ddraw->wined3d)
5471 WARN("Failed to create a wined3d object.\n");
5472 return E_OUTOFMEMORY;
5475 hr = wined3d_device_create(ddraw->wined3d, WINED3DADAPTER_DEFAULT, device_type,
5476 NULL, 0, 8, &ddraw->device_parent, &ddraw->wined3d_device);
5477 if (FAILED(hr))
5479 WARN("Failed to create a wined3d device, hr %#x.\n", hr);
5480 wined3d_decref(ddraw->wined3d);
5481 return hr;
5484 list_init(&ddraw->surface_list);
5486 return DD_OK;