2 * Copyright 2008 Henri Verbeet for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "wine/port.h"
23 #include "dxgi_private.h"
25 WINE_DEFAULT_DEBUG_CHANNEL(dxgi
);
27 static inline struct dxgi_device
*impl_from_IWineDXGIDevice(IWineDXGIDevice
*iface
)
29 return CONTAINING_RECORD(iface
, struct dxgi_device
, IWineDXGIDevice_iface
);
32 /* IUnknown methods */
34 static HRESULT STDMETHODCALLTYPE
dxgi_device_QueryInterface(IWineDXGIDevice
*iface
, REFIID riid
, void **object
)
36 struct dxgi_device
*This
= impl_from_IWineDXGIDevice(iface
);
38 TRACE("iface %p, riid %s, object %p\n", iface
, debugstr_guid(riid
), object
);
40 if (IsEqualGUID(riid
, &IID_IUnknown
)
41 || IsEqualGUID(riid
, &IID_IDXGIObject
)
42 || IsEqualGUID(riid
, &IID_IDXGIDevice
)
43 || IsEqualGUID(riid
, &IID_IWineDXGIDevice
))
45 IUnknown_AddRef(iface
);
50 if (This
->child_layer
)
52 TRACE("forwarding to child layer %p\n", This
->child_layer
);
53 return IUnknown_QueryInterface(This
->child_layer
, riid
, object
);
56 WARN("%s not implemented, returning E_NOINTERFACE\n", debugstr_guid(riid
));
62 static ULONG STDMETHODCALLTYPE
dxgi_device_AddRef(IWineDXGIDevice
*iface
)
64 struct dxgi_device
*This
= impl_from_IWineDXGIDevice(iface
);
65 ULONG refcount
= InterlockedIncrement(&This
->refcount
);
67 TRACE("%p increasing refcount to %u\n", This
, refcount
);
72 static ULONG STDMETHODCALLTYPE
dxgi_device_Release(IWineDXGIDevice
*iface
)
74 struct dxgi_device
*This
= impl_from_IWineDXGIDevice(iface
);
75 ULONG refcount
= InterlockedDecrement(&This
->refcount
);
77 TRACE("%p decreasing refcount to %u\n", This
, refcount
);
81 if (This
->child_layer
) IUnknown_Release(This
->child_layer
);
82 EnterCriticalSection(&dxgi_cs
);
83 wined3d_device_decref(This
->wined3d_device
);
84 LeaveCriticalSection(&dxgi_cs
);
85 IWineDXGIFactory_Release(This
->factory
);
86 HeapFree(GetProcessHeap(), 0, This
);
92 /* IDXGIObject methods */
94 static HRESULT STDMETHODCALLTYPE
dxgi_device_SetPrivateData(IWineDXGIDevice
*iface
,
95 REFGUID guid
, UINT data_size
, const void *data
)
97 FIXME("iface %p, guid %s, data_size %u, data %p stub!\n", iface
, debugstr_guid(guid
), data_size
, data
);
102 static HRESULT STDMETHODCALLTYPE
dxgi_device_SetPrivateDataInterface(IWineDXGIDevice
*iface
,
103 REFGUID guid
, const IUnknown
*object
)
105 FIXME("iface %p, guid %s, object %p stub!\n", iface
, debugstr_guid(guid
), object
);
110 static HRESULT STDMETHODCALLTYPE
dxgi_device_GetPrivateData(IWineDXGIDevice
*iface
,
111 REFGUID guid
, UINT
*data_size
, void *data
)
113 FIXME("iface %p, guid %s, data_size %p, data %p stub!\n", iface
, debugstr_guid(guid
), data_size
, data
);
118 static HRESULT STDMETHODCALLTYPE
dxgi_device_GetParent(IWineDXGIDevice
*iface
, REFIID riid
, void **parent
)
120 IDXGIAdapter
*adapter
;
123 TRACE("iface %p, riid %s, parent %p.\n", iface
, debugstr_guid(riid
), parent
);
125 hr
= IDXGIDevice_GetAdapter(iface
, &adapter
);
128 ERR("Failed to get adapter, hr %#x.\n", hr
);
132 hr
= IDXGIAdapter_QueryInterface(adapter
, riid
, parent
);
133 IDXGIAdapter_Release(adapter
);
138 /* IDXGIDevice methods */
140 static HRESULT STDMETHODCALLTYPE
dxgi_device_GetAdapter(IWineDXGIDevice
*iface
, IDXGIAdapter
**adapter
)
142 struct dxgi_device
*This
= impl_from_IWineDXGIDevice(iface
);
143 struct wined3d_device_creation_parameters create_parameters
;
146 TRACE("iface %p, adapter %p\n", iface
, adapter
);
148 EnterCriticalSection(&dxgi_cs
);
150 hr
= wined3d_device_get_creation_parameters(This
->wined3d_device
, &create_parameters
);
153 LeaveCriticalSection(&dxgi_cs
);
157 LeaveCriticalSection(&dxgi_cs
);
159 return IWineDXGIFactory_EnumAdapters(This
->factory
, create_parameters
.adapter_idx
, adapter
);
162 static HRESULT STDMETHODCALLTYPE
dxgi_device_CreateSurface(IWineDXGIDevice
*iface
,
163 const DXGI_SURFACE_DESC
*desc
, UINT surface_count
, DXGI_USAGE usage
,
164 const DXGI_SHARED_RESOURCE
*shared_resource
, IDXGISurface
**surface
)
166 struct wined3d_device_parent
*device_parent
;
167 IWineDXGIDeviceParent
*dxgi_device_parent
;
172 TRACE("iface %p, desc %p, surface_count %u, usage %#x, shared_resource %p, surface %p\n",
173 iface
, desc
, surface_count
, usage
, shared_resource
, surface
);
175 hr
= IWineDXGIDevice_QueryInterface(iface
, &IID_IWineDXGIDeviceParent
, (void **)&dxgi_device_parent
);
178 ERR("Device should implement IWineD3DDeviceParent\n");
182 device_parent
= IWineDXGIDeviceParent_get_wined3d_device_parent(dxgi_device_parent
);
184 FIXME("Implement DXGI<->wined3d usage conversion\n");
186 memset(surface
, 0, surface_count
* sizeof(*surface
));
187 for (i
= 0; i
< surface_count
; ++i
)
189 struct wined3d_surface
*wined3d_surface
;
192 hr
= device_parent
->ops
->create_surface(device_parent
, NULL
, desc
->Width
, desc
->Height
,
193 wined3dformat_from_dxgi_format(desc
->Format
), usage
, WINED3D_POOL_DEFAULT
, 0,
194 WINED3D_CUBEMAP_FACE_POSITIVE_X
, &wined3d_surface
);
197 ERR("CreateSurface failed, returning %#x\n", hr
);
201 parent
= wined3d_surface_get_parent(wined3d_surface
);
202 hr
= IUnknown_QueryInterface(parent
, &IID_IDXGISurface
, (void **)&surface
[i
]);
203 wined3d_surface_decref(wined3d_surface
);
206 ERR("Surface should implement IDXGISurface\n");
210 TRACE("Created IDXGISurface %p (%u/%u)\n", surface
[i
], i
+ 1, surface_count
);
212 IWineDXGIDeviceParent_Release(dxgi_device_parent
);
217 for (j
= 0; j
< i
; ++j
)
219 IDXGISurface_Release(surface
[i
]);
221 IWineDXGIDeviceParent_Release(dxgi_device_parent
);
225 static HRESULT STDMETHODCALLTYPE
dxgi_device_QueryResourceResidency(IWineDXGIDevice
*iface
,
226 IUnknown
*const *resources
, DXGI_RESIDENCY
*residency
, UINT resource_count
)
228 FIXME("iface %p, resources %p, residency %p, resource_count %u stub!\n",
229 iface
, resources
, residency
, resource_count
);
234 static HRESULT STDMETHODCALLTYPE
dxgi_device_SetGPUThreadPriority(IWineDXGIDevice
*iface
, INT priority
)
236 FIXME("iface %p, priority %d stub!\n", iface
, priority
);
241 static HRESULT STDMETHODCALLTYPE
dxgi_device_GetGPUThreadPriority(IWineDXGIDevice
*iface
, INT
*priority
)
243 FIXME("iface %p, priority %p stub!\n", iface
, priority
);
248 /* IWineDXGIDevice methods */
250 static struct wined3d_device
* STDMETHODCALLTYPE
dxgi_device_get_wined3d_device(IWineDXGIDevice
*iface
)
252 struct dxgi_device
*This
= impl_from_IWineDXGIDevice(iface
);
254 TRACE("iface %p\n", iface
);
256 EnterCriticalSection(&dxgi_cs
);
257 wined3d_device_incref(This
->wined3d_device
);
258 LeaveCriticalSection(&dxgi_cs
);
259 return This
->wined3d_device
;
262 static HRESULT STDMETHODCALLTYPE
dxgi_device_create_surface(IWineDXGIDevice
*iface
, const DXGI_SURFACE_DESC
*desc
,
263 DXGI_USAGE usage
, const DXGI_SHARED_RESOURCE
*shared_resource
, IUnknown
*outer
, void **surface
)
265 struct dxgi_surface
*object
;
268 FIXME("iface %p, desc %p, usage %#x, shared_resource %p, outer %p, surface %p partial stub!\n",
269 iface
, desc
, usage
, shared_resource
, outer
, surface
);
271 object
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*object
));
274 ERR("Failed to allocate DXGI surface object memory\n");
275 return E_OUTOFMEMORY
;
278 hr
= dxgi_surface_init(object
, (IDXGIDevice
*)iface
, outer
);
281 WARN("Failed to initialize surface, hr %#x.\n", hr
);
282 HeapFree(GetProcessHeap(), 0, object
);
286 TRACE("Created IDXGISurface %p\n", object
);
287 *surface
= outer
? (void *)&object
->inner_unknown_vtbl
: object
;
292 static HRESULT STDMETHODCALLTYPE
dxgi_device_create_swapchain(IWineDXGIDevice
*iface
,
293 struct wined3d_swapchain_desc
*desc
, struct wined3d_swapchain
**wined3d_swapchain
)
295 struct dxgi_device
*This
= impl_from_IWineDXGIDevice(iface
);
296 struct dxgi_swapchain
*object
;
299 TRACE("iface %p, desc %p, wined3d_swapchain %p.\n",
300 iface
, desc
, wined3d_swapchain
);
302 object
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*object
));
305 ERR("Failed to allocate DXGI swapchain object memory\n");
306 return E_OUTOFMEMORY
;
309 hr
= dxgi_swapchain_init(object
, This
, desc
);
312 WARN("Failed to initialize swapchain, hr %#x.\n", hr
);
313 HeapFree(GetProcessHeap(), 0, object
);
317 TRACE("Created IDXGISwapChain %p\n", object
);
318 *wined3d_swapchain
= object
->wined3d_swapchain
;
323 static const struct IWineDXGIDeviceVtbl dxgi_device_vtbl
=
325 /* IUnknown methods */
326 dxgi_device_QueryInterface
,
329 /* IDXGIObject methods */
330 dxgi_device_SetPrivateData
,
331 dxgi_device_SetPrivateDataInterface
,
332 dxgi_device_GetPrivateData
,
333 dxgi_device_GetParent
,
334 /* IDXGIDevice methods */
335 dxgi_device_GetAdapter
,
336 dxgi_device_CreateSurface
,
337 dxgi_device_QueryResourceResidency
,
338 dxgi_device_SetGPUThreadPriority
,
339 dxgi_device_GetGPUThreadPriority
,
340 /* IWineDXGIAdapter methods */
341 dxgi_device_get_wined3d_device
,
342 dxgi_device_create_surface
,
343 dxgi_device_create_swapchain
,
346 HRESULT
dxgi_device_init(struct dxgi_device
*device
, struct dxgi_device_layer
*layer
,
347 IDXGIFactory
*factory
, IDXGIAdapter
*adapter
)
349 struct wined3d_device_parent
*wined3d_device_parent
;
350 IWineDXGIDeviceParent
*dxgi_device_parent
;
351 IWineDXGIAdapter
*wine_adapter
;
352 UINT adapter_ordinal
;
353 struct wined3d
*wined3d
;
358 device
->IWineDXGIDevice_iface
.lpVtbl
= &dxgi_device_vtbl
;
359 device
->refcount
= 1;
361 layer_base
= device
+ 1;
363 hr
= layer
->create(layer
->id
, &layer_base
, 0,
364 device
, &IID_IUnknown
, (void **)&device
->child_layer
);
367 WARN("Failed to create device, returning %#x.\n", hr
);
371 hr
= IDXGIFactory_QueryInterface(factory
, &IID_IWineDXGIFactory
, (void **)&device
->factory
);
374 WARN("This is not the factory we're looking for, returning %#x.\n", hr
);
377 wined3d
= IWineDXGIFactory_get_wined3d(device
->factory
);
379 hr
= IDXGIAdapter_QueryInterface(adapter
, &IID_IWineDXGIAdapter
, (void **)&wine_adapter
);
382 WARN("This is not the adapter we're looking for, returning %#x.\n", hr
);
383 EnterCriticalSection(&dxgi_cs
);
384 wined3d_decref(wined3d
);
385 LeaveCriticalSection(&dxgi_cs
);
388 adapter_ordinal
= IWineDXGIAdapter_get_ordinal(wine_adapter
);
389 IWineDXGIAdapter_Release(wine_adapter
);
391 hr
= IWineDXGIDevice_QueryInterface(&device
->IWineDXGIDevice_iface
, &IID_IWineDXGIDeviceParent
,
392 (void **)&dxgi_device_parent
);
395 ERR("DXGI device should implement IWineD3DDeviceParent.\n");
399 wined3d_device_parent
= IWineDXGIDeviceParent_get_wined3d_device_parent(dxgi_device_parent
);
401 FIXME("Ignoring adapter type.\n");
403 hr
= wined3d_get_device_caps(wined3d
, adapter_ordinal
, WINED3D_DEVICE_TYPE_HAL
, &caps
);
404 if (FAILED(hr
) || caps
.VertexShaderVersion
< 4 || caps
.PixelShaderVersion
< 4)
406 WARN("Direct3D 10 is not supported on this GPU with the current shader backend.\n");
412 EnterCriticalSection(&dxgi_cs
);
413 hr
= wined3d_device_create(wined3d
, adapter_ordinal
, WINED3D_DEVICE_TYPE_HAL
, NULL
, 0, 4,
414 wined3d_device_parent
, &device
->wined3d_device
);
415 IWineDXGIDeviceParent_Release(dxgi_device_parent
);
416 wined3d_decref(wined3d
);
417 LeaveCriticalSection(&dxgi_cs
);
420 WARN("Failed to create a wined3d device, returning %#x.\n", hr
);
427 if (device
->wined3d_device
)
429 EnterCriticalSection(&dxgi_cs
);
430 wined3d_device_decref(device
->wined3d_device
);
431 LeaveCriticalSection(&dxgi_cs
);
433 if (device
->factory
) IWineDXGIFactory_Release(device
->factory
);
434 if (device
->child_layer
) IUnknown_Release(device
->child_layer
);