mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 05:15:01 +00:00
7f593aa725
Signed-off-by: Józef Kucia <jkucia@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
586 lines
19 KiB
C
586 lines
19 KiB
C
/*
|
|
* Copyright 2008 Henri Verbeet for CodeWeavers
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include "wine/port.h"
|
|
|
|
#include "dxgi_private.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(dxgi);
|
|
|
|
static inline struct dxgi_factory *impl_from_IDXGIFactory4(IDXGIFactory4 *iface)
|
|
{
|
|
return CONTAINING_RECORD(iface, struct dxgi_factory, IDXGIFactory4_iface);
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_QueryInterface(IDXGIFactory4 *iface, REFIID iid, void **out)
|
|
{
|
|
struct dxgi_factory *factory = impl_from_IDXGIFactory4(iface);
|
|
|
|
TRACE("iface %p, iid %s, out %p.\n", iface, debugstr_guid(iid), out);
|
|
|
|
if (IsEqualGUID(iid, &IID_IWineDXGIFactory)
|
|
|| IsEqualGUID(iid, &IID_IDXGIFactory4)
|
|
|| IsEqualGUID(iid, &IID_IDXGIFactory3)
|
|
|| IsEqualGUID(iid, &IID_IDXGIFactory2)
|
|
|| (factory->extended && IsEqualGUID(iid, &IID_IDXGIFactory1))
|
|
|| IsEqualGUID(iid, &IID_IDXGIFactory)
|
|
|| IsEqualGUID(iid, &IID_IDXGIObject)
|
|
|| IsEqualGUID(iid, &IID_IUnknown))
|
|
{
|
|
IUnknown_AddRef(iface);
|
|
*out = iface;
|
|
return S_OK;
|
|
}
|
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(iid));
|
|
|
|
*out = NULL;
|
|
return E_NOINTERFACE;
|
|
}
|
|
|
|
static ULONG STDMETHODCALLTYPE dxgi_factory_AddRef(IDXGIFactory4 *iface)
|
|
{
|
|
struct dxgi_factory *factory = impl_from_IDXGIFactory4(iface);
|
|
ULONG refcount = InterlockedIncrement(&factory->refcount);
|
|
|
|
TRACE("%p increasing refcount to %u.\n", iface, refcount);
|
|
|
|
return refcount;
|
|
}
|
|
|
|
static ULONG STDMETHODCALLTYPE dxgi_factory_Release(IDXGIFactory4 *iface)
|
|
{
|
|
struct dxgi_factory *factory = impl_from_IDXGIFactory4(iface);
|
|
ULONG refcount = InterlockedDecrement(&factory->refcount);
|
|
|
|
TRACE("%p decreasing refcount to %u.\n", iface, refcount);
|
|
|
|
if (!refcount)
|
|
{
|
|
if (factory->device_window)
|
|
DestroyWindow(factory->device_window);
|
|
|
|
wined3d_mutex_lock();
|
|
wined3d_decref(factory->wined3d);
|
|
wined3d_mutex_unlock();
|
|
wined3d_private_store_cleanup(&factory->private_store);
|
|
HeapFree(GetProcessHeap(), 0, factory);
|
|
}
|
|
|
|
return refcount;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_SetPrivateData(IDXGIFactory4 *iface,
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
{
|
|
struct dxgi_factory *factory = impl_from_IDXGIFactory4(iface);
|
|
|
|
TRACE("iface %p, guid %s, data_size %u, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
return dxgi_set_private_data(&factory->private_store, guid, data_size, data);
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_SetPrivateDataInterface(IDXGIFactory4 *iface,
|
|
REFGUID guid, const IUnknown *object)
|
|
{
|
|
struct dxgi_factory *factory = impl_from_IDXGIFactory4(iface);
|
|
|
|
TRACE("iface %p, guid %s, object %p.\n", iface, debugstr_guid(guid), object);
|
|
|
|
return dxgi_set_private_data_interface(&factory->private_store, guid, object);
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_GetPrivateData(IDXGIFactory4 *iface,
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
{
|
|
struct dxgi_factory *factory = impl_from_IDXGIFactory4(iface);
|
|
|
|
TRACE("iface %p, guid %s, data_size %p, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
return dxgi_get_private_data(&factory->private_store, guid, data_size, data);
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_GetParent(IDXGIFactory4 *iface, REFIID iid, void **parent)
|
|
{
|
|
WARN("iface %p, iid %s, parent %p.\n", iface, debugstr_guid(iid), parent);
|
|
|
|
*parent = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_EnumAdapters1(IDXGIFactory4 *iface,
|
|
UINT adapter_idx, IDXGIAdapter1 **adapter)
|
|
{
|
|
struct dxgi_factory *factory = impl_from_IDXGIFactory4(iface);
|
|
struct dxgi_adapter *adapter_object;
|
|
UINT adapter_count;
|
|
HRESULT hr;
|
|
|
|
TRACE("iface %p, adapter_idx %u, adapter %p.\n", iface, adapter_idx, adapter);
|
|
|
|
if (!adapter)
|
|
return DXGI_ERROR_INVALID_CALL;
|
|
|
|
wined3d_mutex_lock();
|
|
adapter_count = wined3d_get_adapter_count(factory->wined3d);
|
|
wined3d_mutex_unlock();
|
|
|
|
if (adapter_idx >= adapter_count)
|
|
{
|
|
*adapter = NULL;
|
|
return DXGI_ERROR_NOT_FOUND;
|
|
}
|
|
|
|
if (FAILED(hr = dxgi_adapter_create(factory, adapter_idx, &adapter_object)))
|
|
{
|
|
*adapter = NULL;
|
|
return hr;
|
|
}
|
|
|
|
*adapter = (IDXGIAdapter1 *)&adapter_object->IWineDXGIAdapter_iface;
|
|
|
|
TRACE("Returning adapter %p.\n", *adapter);
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_EnumAdapters(IDXGIFactory4 *iface,
|
|
UINT adapter_idx, IDXGIAdapter **adapter)
|
|
{
|
|
TRACE("iface %p, adapter_idx %u, adapter %p.\n", iface, adapter_idx, adapter);
|
|
|
|
return dxgi_factory_EnumAdapters1(iface, adapter_idx, (IDXGIAdapter1 **)adapter);
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_MakeWindowAssociation(IDXGIFactory4 *iface, HWND window, UINT flags)
|
|
{
|
|
FIXME("iface %p, window %p, flags %#x stub!\n", iface, window, flags);
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_GetWindowAssociation(IDXGIFactory4 *iface, HWND *window)
|
|
{
|
|
FIXME("iface %p, window %p stub!\n", iface, window);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_CreateSwapChain(IDXGIFactory4 *iface,
|
|
IUnknown *device, DXGI_SWAP_CHAIN_DESC *desc, IDXGISwapChain **swapchain)
|
|
{
|
|
struct dxgi_factory *factory = impl_from_IDXGIFactory4(iface);
|
|
DXGI_SWAP_CHAIN_FULLSCREEN_DESC fullscreen_desc;
|
|
DXGI_SWAP_CHAIN_DESC1 swapchain_desc;
|
|
|
|
TRACE("iface %p, device %p, desc %p, swapchain %p.\n", iface, device, desc, swapchain);
|
|
|
|
if (!desc)
|
|
{
|
|
WARN("Invalid pointer.\n");
|
|
return DXGI_ERROR_INVALID_CALL;
|
|
}
|
|
|
|
swapchain_desc.Width = desc->BufferDesc.Width;
|
|
swapchain_desc.Height = desc->BufferDesc.Height;
|
|
swapchain_desc.Format = desc->BufferDesc.Format;
|
|
swapchain_desc.Stereo = FALSE;
|
|
swapchain_desc.SampleDesc = desc->SampleDesc;
|
|
swapchain_desc.BufferUsage = desc->BufferUsage;
|
|
swapchain_desc.BufferCount = desc->BufferCount;
|
|
swapchain_desc.Scaling = DXGI_SCALING_STRETCH;
|
|
swapchain_desc.SwapEffect = desc->SwapEffect;
|
|
swapchain_desc.AlphaMode = DXGI_ALPHA_MODE_IGNORE;
|
|
swapchain_desc.Flags = desc->Flags;
|
|
|
|
fullscreen_desc.RefreshRate = desc->BufferDesc.RefreshRate;
|
|
fullscreen_desc.ScanlineOrdering = desc->BufferDesc.ScanlineOrdering;
|
|
fullscreen_desc.Scaling = desc->BufferDesc.Scaling;
|
|
fullscreen_desc.Windowed = desc->Windowed;
|
|
|
|
return IDXGIFactory4_CreateSwapChainForHwnd(&factory->IDXGIFactory4_iface,
|
|
device, desc->OutputWindow, &swapchain_desc, &fullscreen_desc, NULL,
|
|
(IDXGISwapChain1 **)swapchain);
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_CreateSoftwareAdapter(IDXGIFactory4 *iface,
|
|
HMODULE swrast, IDXGIAdapter **adapter)
|
|
{
|
|
FIXME("iface %p, swrast %p, adapter %p stub!\n", iface, swrast, adapter);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static BOOL STDMETHODCALLTYPE dxgi_factory_IsCurrent(IDXGIFactory4 *iface)
|
|
{
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static BOOL STDMETHODCALLTYPE dxgi_factory_IsWindowedStereoEnabled(IDXGIFactory4 *iface)
|
|
{
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_CreateSwapChainForHwnd(IDXGIFactory4 *iface,
|
|
IUnknown *device, HWND window, const DXGI_SWAP_CHAIN_DESC1 *swapchain_desc,
|
|
const DXGI_SWAP_CHAIN_FULLSCREEN_DESC *fullscreen_desc,
|
|
IDXGIOutput *output, IDXGISwapChain1 **swapchain)
|
|
{
|
|
struct wined3d_swapchain *wined3d_swapchain;
|
|
struct wined3d_swapchain_desc wined3d_desc;
|
|
unsigned int min_buffer_count;
|
|
IWineDXGIDevice *dxgi_device;
|
|
HRESULT hr;
|
|
|
|
TRACE("iface %p, device %p, window %p, swapchain_desc %p, fullscreen_desc %p, "
|
|
"output %p, swapchain %p.\n",
|
|
iface, device, window, swapchain_desc, fullscreen_desc, output, swapchain);
|
|
|
|
if (!device || !window || !swapchain_desc || !swapchain)
|
|
{
|
|
WARN("Invalid pointer.\n");
|
|
return DXGI_ERROR_INVALID_CALL;
|
|
}
|
|
|
|
if (swapchain_desc->Stereo)
|
|
{
|
|
FIXME("Stereo swapchains are not supported.\n");
|
|
return DXGI_ERROR_UNSUPPORTED;
|
|
}
|
|
|
|
switch (swapchain_desc->SwapEffect)
|
|
{
|
|
case DXGI_SWAP_EFFECT_DISCARD:
|
|
case DXGI_SWAP_EFFECT_SEQUENTIAL:
|
|
min_buffer_count = 1;
|
|
break;
|
|
|
|
case DXGI_SWAP_EFFECT_FLIP_DISCARD:
|
|
case DXGI_SWAP_EFFECT_FLIP_SEQUENTIAL:
|
|
min_buffer_count = 2;
|
|
break;
|
|
|
|
default:
|
|
WARN("Invalid swap effect %u used.\n", swapchain_desc->SwapEffect);
|
|
return DXGI_ERROR_INVALID_CALL;
|
|
}
|
|
|
|
if (swapchain_desc->BufferCount < min_buffer_count || swapchain_desc->BufferCount > 16)
|
|
{
|
|
WARN("BufferCount is %u.\n", swapchain_desc->BufferCount);
|
|
return DXGI_ERROR_INVALID_CALL;
|
|
}
|
|
|
|
if (FAILED(hr = IUnknown_QueryInterface(device, &IID_IWineDXGIDevice, (void **)&dxgi_device)))
|
|
{
|
|
ERR("This is not the device we're looking for\n");
|
|
return hr;
|
|
}
|
|
|
|
if (swapchain_desc->Scaling != DXGI_SCALING_STRETCH)
|
|
FIXME("Ignoring scaling %#x.\n", swapchain_desc->Scaling);
|
|
if (swapchain_desc->SwapEffect)
|
|
FIXME("Ignoring swap effect %#x.\n", swapchain_desc->SwapEffect);
|
|
if (swapchain_desc->AlphaMode != DXGI_ALPHA_MODE_IGNORE)
|
|
FIXME("Ignoring alpha mode %#x.\n", swapchain_desc->AlphaMode);
|
|
if (fullscreen_desc && fullscreen_desc->ScanlineOrdering)
|
|
FIXME("Unhandled scanline ordering %#x.\n", fullscreen_desc->ScanlineOrdering);
|
|
if (fullscreen_desc && fullscreen_desc->Scaling)
|
|
FIXME("Unhandled mode scaling %#x.\n", fullscreen_desc->Scaling);
|
|
|
|
wined3d_desc.backbuffer_width = swapchain_desc->Width;
|
|
wined3d_desc.backbuffer_height = swapchain_desc->Height;
|
|
wined3d_desc.backbuffer_format = wined3dformat_from_dxgi_format(swapchain_desc->Format);
|
|
wined3d_desc.backbuffer_count = swapchain_desc->BufferCount;
|
|
wined3d_desc.backbuffer_usage = wined3d_usage_from_dxgi_usage(swapchain_desc->BufferUsage);
|
|
wined3d_sample_desc_from_dxgi(&wined3d_desc.multisample_type,
|
|
&wined3d_desc.multisample_quality, &swapchain_desc->SampleDesc);
|
|
wined3d_desc.swap_effect = WINED3D_SWAP_EFFECT_DISCARD;
|
|
wined3d_desc.device_window = window;
|
|
wined3d_desc.windowed = fullscreen_desc ? fullscreen_desc->Windowed : TRUE;
|
|
wined3d_desc.enable_auto_depth_stencil = FALSE;
|
|
wined3d_desc.auto_depth_stencil_format = 0;
|
|
wined3d_desc.flags = wined3d_swapchain_flags_from_dxgi(swapchain_desc->Flags);
|
|
wined3d_desc.refresh_rate = fullscreen_desc ? dxgi_rational_to_uint(&fullscreen_desc->RefreshRate) : 0;
|
|
wined3d_desc.swap_interval = WINED3DPRESENT_INTERVAL_DEFAULT;
|
|
wined3d_desc.auto_restore_display_mode = TRUE;
|
|
|
|
hr = IWineDXGIDevice_create_swapchain(dxgi_device, &wined3d_desc, FALSE, &wined3d_swapchain);
|
|
IWineDXGIDevice_Release(dxgi_device);
|
|
if (FAILED(hr))
|
|
{
|
|
WARN("Failed to create swapchain, hr %#x.\n", hr);
|
|
return hr;
|
|
}
|
|
|
|
wined3d_mutex_lock();
|
|
*swapchain = wined3d_swapchain_get_parent(wined3d_swapchain);
|
|
wined3d_mutex_unlock();
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_CreateSwapChainForCoreWindow(IDXGIFactory4 *iface,
|
|
IUnknown *device, IUnknown *window, const DXGI_SWAP_CHAIN_DESC1 *desc,
|
|
IDXGIOutput *output, IDXGISwapChain1 **swapchain)
|
|
{
|
|
FIXME("iface %p, device %p, window %p, desc %p, output %p, swapchain %p stub!\n",
|
|
iface, device, window, desc, output, swapchain);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_GetSharedResourceAdapterLuid(IDXGIFactory4 *iface,
|
|
HANDLE resource, LUID *luid)
|
|
{
|
|
FIXME("iface %p, resource %p, luid %p stub!\n", iface, resource, luid);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_RegisterOcclusionStatusWindow(IDXGIFactory4 *iface,
|
|
HWND window, UINT message, DWORD *cookie)
|
|
{
|
|
FIXME("iface %p, window %p, message %#x, cookie %p stub!\n",
|
|
iface, window, message, cookie);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_RegisterStereoStatusEvent(IDXGIFactory4 *iface,
|
|
HANDLE event, DWORD *cookie)
|
|
{
|
|
FIXME("iface %p, event %p, cookie %p stub!\n", iface, event, cookie);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static void STDMETHODCALLTYPE dxgi_factory_UnregisterStereoStatus(IDXGIFactory4 *iface, DWORD cookie)
|
|
{
|
|
FIXME("iface %p, cookie %#x stub!n", iface, cookie);
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_RegisterStereoStatusWindow(IDXGIFactory4 *iface,
|
|
HWND window, UINT message, DWORD *cookie)
|
|
{
|
|
FIXME("iface %p, window %p, message %#x, cookie %p stub!\n",
|
|
iface, window, message, cookie);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_RegisterOcclusionStatusEvent(IDXGIFactory4 *iface,
|
|
HANDLE event, DWORD *cookie)
|
|
{
|
|
FIXME("iface %p, event %p, cookie %p stub!\n", iface, event, cookie);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static void STDMETHODCALLTYPE dxgi_factory_UnregisterOcclusionStatus(IDXGIFactory4 *iface, DWORD cookie)
|
|
{
|
|
FIXME("iface %p, cookie %#x stub!\n", iface, cookie);
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_CreateSwapChainForComposition(IDXGIFactory4 *iface,
|
|
IUnknown *device, const DXGI_SWAP_CHAIN_DESC1 *desc, IDXGIOutput *output, IDXGISwapChain1 **swapchain)
|
|
{
|
|
FIXME("iface %p, device %p, desc %p, output %p, swapchain %p stub!\n",
|
|
iface, device, desc, output, swapchain);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static UINT STDMETHODCALLTYPE dxgi_factory_GetCreationFlags(IDXGIFactory4 *iface)
|
|
{
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_EnumAdapterByLuid(IDXGIFactory4 *iface,
|
|
LUID luid, REFIID iid, void **adapter)
|
|
{
|
|
unsigned int adapter_index;
|
|
DXGI_ADAPTER_DESC1 desc;
|
|
IDXGIAdapter1 *adapter1;
|
|
HRESULT hr;
|
|
|
|
TRACE("iface %p, luid %08x:%08x, iid %s, adapter %p.\n",
|
|
iface, luid.HighPart, luid.LowPart, debugstr_guid(iid), adapter);
|
|
|
|
adapter_index = 0;
|
|
while ((hr = dxgi_factory_EnumAdapters1(iface, adapter_index, &adapter1)) == S_OK)
|
|
{
|
|
if (FAILED(hr = IDXGIAdapter1_GetDesc1(adapter1, &desc)))
|
|
{
|
|
WARN("Failed to get adapter %u desc, hr %#x.\n", adapter_index, hr);
|
|
++adapter_index;
|
|
continue;
|
|
}
|
|
|
|
if (desc.AdapterLuid.LowPart == luid.LowPart
|
|
&& desc.AdapterLuid.HighPart == luid.HighPart)
|
|
{
|
|
hr = IDXGIAdapter1_QueryInterface(adapter1, iid, adapter);
|
|
IDXGIAdapter1_Release(adapter1);
|
|
return hr;
|
|
}
|
|
|
|
IDXGIAdapter1_Release(adapter1);
|
|
++adapter_index;
|
|
}
|
|
if (hr != DXGI_ERROR_NOT_FOUND)
|
|
WARN("Failed to enumerate adapters, hr %#x.\n", hr);
|
|
|
|
WARN("Adapter could not be found.\n");
|
|
return DXGI_ERROR_NOT_FOUND;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE dxgi_factory_EnumWarpAdapter(IDXGIFactory4 *iface,
|
|
REFIID iid, void **adapter)
|
|
{
|
|
FIXME("iface %p, iid %s, adapter %p stub!\n", iface, debugstr_guid(iid), adapter);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static const struct IDXGIFactory4Vtbl dxgi_factory_vtbl =
|
|
{
|
|
dxgi_factory_QueryInterface,
|
|
dxgi_factory_AddRef,
|
|
dxgi_factory_Release,
|
|
dxgi_factory_SetPrivateData,
|
|
dxgi_factory_SetPrivateDataInterface,
|
|
dxgi_factory_GetPrivateData,
|
|
dxgi_factory_GetParent,
|
|
dxgi_factory_EnumAdapters,
|
|
dxgi_factory_MakeWindowAssociation,
|
|
dxgi_factory_GetWindowAssociation,
|
|
dxgi_factory_CreateSwapChain,
|
|
dxgi_factory_CreateSoftwareAdapter,
|
|
/* IDXGIFactory1 methods */
|
|
dxgi_factory_EnumAdapters1,
|
|
dxgi_factory_IsCurrent,
|
|
/* IDXGIFactory2 methods */
|
|
dxgi_factory_IsWindowedStereoEnabled,
|
|
dxgi_factory_CreateSwapChainForHwnd,
|
|
dxgi_factory_CreateSwapChainForCoreWindow,
|
|
dxgi_factory_GetSharedResourceAdapterLuid,
|
|
dxgi_factory_RegisterOcclusionStatusWindow,
|
|
dxgi_factory_RegisterStereoStatusEvent,
|
|
dxgi_factory_UnregisterStereoStatus,
|
|
dxgi_factory_RegisterStereoStatusWindow,
|
|
dxgi_factory_RegisterOcclusionStatusEvent,
|
|
dxgi_factory_UnregisterOcclusionStatus,
|
|
dxgi_factory_CreateSwapChainForComposition,
|
|
/* IDXGIFactory3 methods */
|
|
dxgi_factory_GetCreationFlags,
|
|
/* IDXGIFactory4 methods */
|
|
dxgi_factory_EnumAdapterByLuid,
|
|
dxgi_factory_EnumWarpAdapter,
|
|
};
|
|
|
|
struct dxgi_factory *unsafe_impl_from_IDXGIFactory4(IDXGIFactory4 *iface)
|
|
{
|
|
IWineDXGIFactory *wine_factory;
|
|
struct dxgi_factory *factory;
|
|
HRESULT hr;
|
|
|
|
if (!iface)
|
|
return NULL;
|
|
if (FAILED(hr = IDXGIFactory4_QueryInterface(iface, &IID_IWineDXGIFactory, (void **)&wine_factory)))
|
|
{
|
|
ERR("Failed to get IWineDXGIFactory interface, hr %#x.\n", hr);
|
|
return NULL;
|
|
}
|
|
assert(wine_factory->lpVtbl == (void *)&dxgi_factory_vtbl);
|
|
factory = CONTAINING_RECORD(wine_factory, struct dxgi_factory, IDXGIFactory4_iface);
|
|
IWineDXGIFactory_Release(wine_factory);
|
|
return factory;
|
|
}
|
|
|
|
static HRESULT dxgi_factory_init(struct dxgi_factory *factory, BOOL extended)
|
|
{
|
|
factory->IDXGIFactory4_iface.lpVtbl = &dxgi_factory_vtbl;
|
|
factory->refcount = 1;
|
|
wined3d_private_store_init(&factory->private_store);
|
|
|
|
wined3d_mutex_lock();
|
|
factory->wined3d = wined3d_create(0);
|
|
wined3d_mutex_unlock();
|
|
if (!factory->wined3d)
|
|
{
|
|
wined3d_private_store_cleanup(&factory->private_store);
|
|
return DXGI_ERROR_UNSUPPORTED;
|
|
}
|
|
|
|
factory->extended = extended;
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
HRESULT dxgi_factory_create(REFIID riid, void **factory, BOOL extended)
|
|
{
|
|
struct dxgi_factory *object;
|
|
HRESULT hr;
|
|
|
|
if (!(object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object))))
|
|
return E_OUTOFMEMORY;
|
|
|
|
if (FAILED(hr = dxgi_factory_init(object, extended)))
|
|
{
|
|
WARN("Failed to initialize factory, hr %#x.\n", hr);
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
return hr;
|
|
}
|
|
|
|
TRACE("Created factory %p.\n", object);
|
|
|
|
hr = IDXGIFactory4_QueryInterface(&object->IDXGIFactory4_iface, riid, factory);
|
|
IDXGIFactory4_Release(&object->IDXGIFactory4_iface);
|
|
return hr;
|
|
}
|
|
|
|
HWND dxgi_factory_get_device_window(struct dxgi_factory *factory)
|
|
{
|
|
wined3d_mutex_lock();
|
|
|
|
if (!factory->device_window)
|
|
{
|
|
if (!(factory->device_window = CreateWindowA("static", "DXGI device window",
|
|
WS_DISABLED, 0, 0, 0, 0, NULL, NULL, NULL, NULL)))
|
|
{
|
|
wined3d_mutex_unlock();
|
|
ERR("Failed to create a window.\n");
|
|
return NULL;
|
|
}
|
|
TRACE("Created device window %p for factory %p.\n", factory->device_window, factory);
|
|
}
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
return factory->device_window;
|
|
}
|