1345 lines
43 KiB
C
1345 lines
43 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 d3d11_swapchain *d3d11_swapchain_from_IDXGISwapChain1(IDXGISwapChain1 *iface)
|
|
{
|
|
return CONTAINING_RECORD(iface, struct d3d11_swapchain, IDXGISwapChain1_iface);
|
|
}
|
|
|
|
/* IUnknown methods */
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_QueryInterface(IDXGISwapChain1 *iface, REFIID riid, void **object)
|
|
{
|
|
TRACE("iface %p, riid %s, object %p\n", iface, debugstr_guid(riid), object);
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
|
|| IsEqualGUID(riid, &IID_IDXGIObject)
|
|
|| IsEqualGUID(riid, &IID_IDXGIDeviceSubObject)
|
|
|| IsEqualGUID(riid, &IID_IDXGISwapChain)
|
|
|| IsEqualGUID(riid, &IID_IDXGISwapChain1))
|
|
{
|
|
IUnknown_AddRef(iface);
|
|
*object = iface;
|
|
return S_OK;
|
|
}
|
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE\n", debugstr_guid(riid));
|
|
|
|
*object = NULL;
|
|
return E_NOINTERFACE;
|
|
}
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d11_swapchain_AddRef(IDXGISwapChain1 *iface)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
ULONG refcount = InterlockedIncrement(&swapchain->refcount);
|
|
|
|
TRACE("%p increasing refcount to %u\n", swapchain, refcount);
|
|
|
|
if (refcount == 1)
|
|
{
|
|
wined3d_mutex_lock();
|
|
wined3d_swapchain_incref(swapchain->wined3d_swapchain);
|
|
wined3d_mutex_unlock();
|
|
}
|
|
|
|
return refcount;
|
|
}
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d11_swapchain_Release(IDXGISwapChain1 *iface)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
ULONG refcount = InterlockedDecrement(&swapchain->refcount);
|
|
|
|
TRACE("%p decreasing refcount to %u.\n", swapchain, refcount);
|
|
|
|
if (!refcount)
|
|
{
|
|
IWineDXGIDevice *device = swapchain->device;
|
|
if (swapchain->target)
|
|
{
|
|
WARN("Releasing fullscreen swapchain.\n");
|
|
IDXGIOutput_Release(swapchain->target);
|
|
}
|
|
if (swapchain->factory)
|
|
IDXGIFactory_Release(swapchain->factory);
|
|
wined3d_mutex_lock();
|
|
wined3d_swapchain_decref(swapchain->wined3d_swapchain);
|
|
wined3d_mutex_unlock();
|
|
if (device)
|
|
IWineDXGIDevice_Release(device);
|
|
}
|
|
|
|
return refcount;
|
|
}
|
|
|
|
/* IDXGIObject methods */
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_SetPrivateData(IDXGISwapChain1 *iface,
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
|
|
TRACE("iface %p, guid %s, data_size %u, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
return dxgi_set_private_data(&swapchain->private_store, guid, data_size, data);
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_SetPrivateDataInterface(IDXGISwapChain1 *iface,
|
|
REFGUID guid, const IUnknown *object)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
|
|
TRACE("iface %p, guid %s, object %p.\n", iface, debugstr_guid(guid), object);
|
|
|
|
return dxgi_set_private_data_interface(&swapchain->private_store, guid, object);
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_GetPrivateData(IDXGISwapChain1 *iface,
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
|
|
TRACE("iface %p, guid %s, data_size %p, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
return dxgi_get_private_data(&swapchain->private_store, guid, data_size, data);
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_GetParent(IDXGISwapChain1 *iface, REFIID riid, void **parent)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
|
|
TRACE("iface %p, riid %s, parent %p.\n", iface, debugstr_guid(riid), parent);
|
|
|
|
if (!swapchain->factory)
|
|
{
|
|
ERR("Implicit swapchain does not store reference to parent.\n");
|
|
*parent = NULL;
|
|
return E_NOINTERFACE;
|
|
}
|
|
|
|
return IDXGIFactory_QueryInterface(swapchain->factory, riid, parent);
|
|
}
|
|
|
|
/* IDXGIDeviceSubObject methods */
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_GetDevice(IDXGISwapChain1 *iface, REFIID riid, void **device)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
|
|
TRACE("iface %p, riid %s, device %p.\n", iface, debugstr_guid(riid), device);
|
|
|
|
if (!swapchain->device)
|
|
{
|
|
ERR("Implicit swapchain does not store reference to device.\n");
|
|
*device = NULL;
|
|
return E_NOINTERFACE;
|
|
}
|
|
|
|
return IWineDXGIDevice_QueryInterface(swapchain->device, riid, device);
|
|
}
|
|
|
|
/* IDXGISwapChain1 methods */
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_Present(IDXGISwapChain1 *iface, UINT sync_interval, UINT flags)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
|
|
TRACE("iface %p, sync_interval %u, flags %#x.\n", iface, sync_interval, flags);
|
|
|
|
return IDXGISwapChain1_Present1(&swapchain->IDXGISwapChain1_iface, sync_interval, flags, NULL);
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_GetBuffer(IDXGISwapChain1 *iface,
|
|
UINT buffer_idx, REFIID riid, void **surface)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
struct wined3d_texture *texture;
|
|
IUnknown *parent;
|
|
HRESULT hr;
|
|
|
|
TRACE("iface %p, buffer_idx %u, riid %s, surface %p\n",
|
|
iface, buffer_idx, debugstr_guid(riid), surface);
|
|
|
|
wined3d_mutex_lock();
|
|
|
|
if (!(texture = wined3d_swapchain_get_back_buffer(swapchain->wined3d_swapchain, buffer_idx)))
|
|
{
|
|
wined3d_mutex_unlock();
|
|
return DXGI_ERROR_INVALID_CALL;
|
|
}
|
|
|
|
parent = wined3d_texture_get_parent(texture);
|
|
hr = IUnknown_QueryInterface(parent, riid, surface);
|
|
wined3d_mutex_unlock();
|
|
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE DECLSPEC_HOTPATCH d3d11_swapchain_SetFullscreenState(IDXGISwapChain1 *iface,
|
|
BOOL fullscreen, IDXGIOutput *target)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
struct wined3d_swapchain_desc swapchain_desc;
|
|
HRESULT hr;
|
|
|
|
TRACE("iface %p, fullscreen %#x, target %p.\n", iface, fullscreen, target);
|
|
|
|
if (!fullscreen && target)
|
|
{
|
|
WARN("Invalid call.\n");
|
|
return DXGI_ERROR_INVALID_CALL;
|
|
}
|
|
|
|
if (fullscreen)
|
|
{
|
|
if (target)
|
|
{
|
|
IDXGIOutput_AddRef(target);
|
|
}
|
|
else if (FAILED(hr = IDXGISwapChain1_GetContainingOutput(iface, &target)))
|
|
{
|
|
WARN("Failed to get default target output for swapchain, hr %#x.\n", hr);
|
|
return hr;
|
|
}
|
|
}
|
|
|
|
wined3d_mutex_lock();
|
|
wined3d_swapchain_get_desc(swapchain->wined3d_swapchain, &swapchain_desc);
|
|
swapchain_desc.windowed = !fullscreen;
|
|
hr = wined3d_swapchain_set_fullscreen(swapchain->wined3d_swapchain, &swapchain_desc, NULL);
|
|
wined3d_mutex_unlock();
|
|
|
|
if (SUCCEEDED(hr))
|
|
{
|
|
swapchain->fullscreen = fullscreen;
|
|
if (swapchain->target)
|
|
IDXGIOutput_Release(swapchain->target);
|
|
swapchain->target = target;
|
|
}
|
|
else
|
|
{
|
|
IDXGIOutput_Release(target);
|
|
}
|
|
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_GetFullscreenState(IDXGISwapChain1 *iface,
|
|
BOOL *fullscreen, IDXGIOutput **target)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
|
|
TRACE("iface %p, fullscreen %p, target %p.\n", iface, fullscreen, target);
|
|
|
|
if (fullscreen)
|
|
*fullscreen = swapchain->fullscreen;
|
|
|
|
if (target)
|
|
{
|
|
*target = swapchain->target;
|
|
if (*target)
|
|
IDXGIOutput_AddRef(*target);
|
|
}
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_GetDesc(IDXGISwapChain1 *iface, DXGI_SWAP_CHAIN_DESC *desc)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
struct wined3d_swapchain_desc wined3d_desc;
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
if (!desc)
|
|
{
|
|
WARN("Invalid pointer.\n");
|
|
return E_INVALIDARG;
|
|
}
|
|
|
|
wined3d_mutex_lock();
|
|
wined3d_swapchain_get_desc(swapchain->wined3d_swapchain, &wined3d_desc);
|
|
wined3d_mutex_unlock();
|
|
|
|
FIXME("Ignoring ScanlineOrdering, Scaling and SwapEffect.\n");
|
|
|
|
desc->BufferDesc.Width = wined3d_desc.backbuffer_width;
|
|
desc->BufferDesc.Height = wined3d_desc.backbuffer_height;
|
|
desc->BufferDesc.RefreshRate.Numerator = wined3d_desc.refresh_rate;
|
|
desc->BufferDesc.RefreshRate.Denominator = 1;
|
|
desc->BufferDesc.Format = dxgi_format_from_wined3dformat(wined3d_desc.backbuffer_format);
|
|
desc->BufferDesc.ScanlineOrdering = DXGI_MODE_SCANLINE_ORDER_UNSPECIFIED;
|
|
desc->BufferDesc.Scaling = DXGI_MODE_SCALING_UNSPECIFIED;
|
|
dxgi_sample_desc_from_wined3d(&desc->SampleDesc,
|
|
wined3d_desc.multisample_type, wined3d_desc.multisample_quality);
|
|
desc->BufferUsage = dxgi_usage_from_wined3d_usage(wined3d_desc.backbuffer_usage);
|
|
desc->BufferCount = wined3d_desc.backbuffer_count;
|
|
desc->OutputWindow = wined3d_desc.device_window;
|
|
desc->Windowed = wined3d_desc.windowed;
|
|
desc->SwapEffect = DXGI_SWAP_EFFECT_DISCARD;
|
|
desc->Flags = dxgi_swapchain_flags_from_wined3d(wined3d_desc.flags);
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_ResizeBuffers(IDXGISwapChain1 *iface,
|
|
UINT buffer_count, UINT width, UINT height, DXGI_FORMAT format, UINT flags)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
struct wined3d_swapchain_desc wined3d_desc;
|
|
struct wined3d_texture *texture;
|
|
IUnknown *parent;
|
|
unsigned int i;
|
|
HRESULT hr;
|
|
|
|
TRACE("iface %p, buffer_count %u, width %u, height %u, format %s, flags %#x.\n",
|
|
iface, buffer_count, width, height, debug_dxgi_format(format), flags);
|
|
|
|
if (flags)
|
|
FIXME("Ignoring flags %#x.\n", flags);
|
|
|
|
wined3d_mutex_lock();
|
|
wined3d_swapchain_get_desc(swapchain->wined3d_swapchain, &wined3d_desc);
|
|
for (i = 0; i < wined3d_desc.backbuffer_count; ++i)
|
|
{
|
|
texture = wined3d_swapchain_get_back_buffer(swapchain->wined3d_swapchain, i);
|
|
parent = wined3d_texture_get_parent(texture);
|
|
IUnknown_AddRef(parent);
|
|
if (IUnknown_Release(parent))
|
|
{
|
|
wined3d_mutex_unlock();
|
|
return DXGI_ERROR_INVALID_CALL;
|
|
}
|
|
}
|
|
if (format != DXGI_FORMAT_UNKNOWN)
|
|
wined3d_desc.backbuffer_format = wined3dformat_from_dxgi_format(format);
|
|
hr = wined3d_swapchain_resize_buffers(swapchain->wined3d_swapchain, buffer_count, width, height,
|
|
wined3d_desc.backbuffer_format, wined3d_desc.multisample_type, wined3d_desc.multisample_quality);
|
|
wined3d_mutex_unlock();
|
|
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_ResizeTarget(IDXGISwapChain1 *iface,
|
|
const DXGI_MODE_DESC *target_mode_desc)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
struct wined3d_display_mode mode;
|
|
HRESULT hr;
|
|
|
|
TRACE("iface %p, target_mode_desc %p.\n", iface, target_mode_desc);
|
|
|
|
if (!target_mode_desc)
|
|
{
|
|
WARN("Invalid pointer.\n");
|
|
return DXGI_ERROR_INVALID_CALL;
|
|
}
|
|
|
|
TRACE("Mode: %s.\n", debug_dxgi_mode(target_mode_desc));
|
|
|
|
if (target_mode_desc->Scaling)
|
|
FIXME("Ignoring scaling %#x.\n", target_mode_desc->Scaling);
|
|
|
|
wined3d_display_mode_from_dxgi(&mode, target_mode_desc);
|
|
|
|
wined3d_mutex_lock();
|
|
hr = wined3d_swapchain_resize_target(swapchain->wined3d_swapchain, &mode);
|
|
wined3d_mutex_unlock();
|
|
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_GetContainingOutput(IDXGISwapChain1 *iface, IDXGIOutput **output)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
IDXGIAdapter *adapter;
|
|
IDXGIDevice *device;
|
|
HRESULT hr;
|
|
|
|
TRACE("iface %p, output %p.\n", iface, output);
|
|
|
|
if (swapchain->target)
|
|
{
|
|
IDXGIOutput_AddRef(*output = swapchain->target);
|
|
return S_OK;
|
|
}
|
|
|
|
if (FAILED(hr = d3d11_swapchain_GetDevice(iface, &IID_IDXGIDevice, (void **)&device)))
|
|
return hr;
|
|
|
|
hr = IDXGIDevice_GetAdapter(device, &adapter);
|
|
IDXGIDevice_Release(device);
|
|
if (FAILED(hr))
|
|
{
|
|
WARN("GetAdapter failed, hr %#x.\n", hr);
|
|
return hr;
|
|
}
|
|
|
|
if (SUCCEEDED(IDXGIAdapter_EnumOutputs(adapter, 1, output)))
|
|
{
|
|
FIXME("Adapter has got multiple outputs, returning the first one.\n");
|
|
IDXGIOutput_Release(*output);
|
|
}
|
|
|
|
hr = IDXGIAdapter_EnumOutputs(adapter, 0, output);
|
|
IDXGIAdapter_Release(adapter);
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_GetFrameStatistics(IDXGISwapChain1 *iface,
|
|
DXGI_FRAME_STATISTICS *stats)
|
|
{
|
|
FIXME("iface %p, stats %p stub!\n", iface, stats);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_GetLastPresentCount(IDXGISwapChain1 *iface,
|
|
UINT *last_present_count)
|
|
{
|
|
FIXME("iface %p, last_present_count %p stub!\n", iface, last_present_count);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
/* IDXGISwapChain1 methods */
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_GetDesc1(IDXGISwapChain1 *iface, DXGI_SWAP_CHAIN_DESC1 *desc)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
struct wined3d_swapchain_desc wined3d_desc;
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
if (!desc)
|
|
{
|
|
WARN("Invalid pointer.\n");
|
|
return E_INVALIDARG;
|
|
}
|
|
|
|
wined3d_mutex_lock();
|
|
wined3d_swapchain_get_desc(swapchain->wined3d_swapchain, &wined3d_desc);
|
|
wined3d_mutex_unlock();
|
|
|
|
FIXME("Ignoring Stereo, Scaling, SwapEffect and AlphaMode.\n");
|
|
|
|
desc->Width = wined3d_desc.backbuffer_width;
|
|
desc->Height = wined3d_desc.backbuffer_height;
|
|
desc->Format = dxgi_format_from_wined3dformat(wined3d_desc.backbuffer_format);
|
|
desc->Stereo = FALSE;
|
|
dxgi_sample_desc_from_wined3d(&desc->SampleDesc,
|
|
wined3d_desc.multisample_type, wined3d_desc.multisample_quality);
|
|
desc->BufferUsage = dxgi_usage_from_wined3d_usage(wined3d_desc.backbuffer_usage);
|
|
desc->BufferCount = wined3d_desc.backbuffer_count;
|
|
desc->Scaling = DXGI_SCALING_STRETCH;
|
|
desc->SwapEffect = DXGI_SWAP_EFFECT_DISCARD;
|
|
desc->AlphaMode = DXGI_ALPHA_MODE_IGNORE;
|
|
desc->Flags = dxgi_swapchain_flags_from_wined3d(wined3d_desc.flags);
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_GetFullscreenDesc(IDXGISwapChain1 *iface,
|
|
DXGI_SWAP_CHAIN_FULLSCREEN_DESC *desc)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
struct wined3d_swapchain_desc wined3d_desc;
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
if (!desc)
|
|
{
|
|
WARN("Invalid pointer.\n");
|
|
return E_INVALIDARG;
|
|
}
|
|
|
|
wined3d_mutex_lock();
|
|
wined3d_swapchain_get_desc(swapchain->wined3d_swapchain, &wined3d_desc);
|
|
wined3d_mutex_unlock();
|
|
|
|
FIXME("Ignoring ScanlineOrdering and Scaling.\n");
|
|
|
|
desc->RefreshRate.Numerator = wined3d_desc.refresh_rate;
|
|
desc->RefreshRate.Denominator = 1;
|
|
desc->ScanlineOrdering = DXGI_MODE_SCANLINE_ORDER_UNSPECIFIED;
|
|
desc->Scaling = DXGI_MODE_SCALING_UNSPECIFIED;
|
|
desc->Windowed = wined3d_desc.windowed;
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_GetHwnd(IDXGISwapChain1 *iface, HWND *hwnd)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
struct wined3d_swapchain_desc wined3d_desc;
|
|
|
|
TRACE("iface %p, hwnd %p.\n", iface, hwnd);
|
|
|
|
if (!hwnd)
|
|
{
|
|
WARN("Invalid pointer.\n");
|
|
return DXGI_ERROR_INVALID_CALL;
|
|
}
|
|
|
|
wined3d_mutex_lock();
|
|
wined3d_swapchain_get_desc(swapchain->wined3d_swapchain, &wined3d_desc);
|
|
wined3d_mutex_unlock();
|
|
|
|
*hwnd = wined3d_desc.device_window;
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_GetCoreWindow(IDXGISwapChain1 *iface,
|
|
REFIID iid, void **core_window)
|
|
{
|
|
FIXME("iface %p, iid %s, core_window %p stub!\n", iface, debugstr_guid(iid), core_window);
|
|
|
|
if (core_window)
|
|
*core_window = NULL;
|
|
|
|
return DXGI_ERROR_INVALID_CALL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_Present1(IDXGISwapChain1 *iface,
|
|
UINT sync_interval, UINT flags, const DXGI_PRESENT_PARAMETERS *present_parameters)
|
|
{
|
|
struct d3d11_swapchain *swapchain = d3d11_swapchain_from_IDXGISwapChain1(iface);
|
|
HRESULT hr;
|
|
|
|
TRACE("iface %p, sync_interval %u, flags %#x, present_parameters %p.\n",
|
|
iface, sync_interval, flags, present_parameters);
|
|
|
|
if (sync_interval > 4)
|
|
{
|
|
WARN("Invalid sync interval %u.\n", sync_interval);
|
|
return DXGI_ERROR_INVALID_CALL;
|
|
}
|
|
|
|
if (flags & ~DXGI_PRESENT_TEST)
|
|
FIXME("Unimplemented flags %#x.\n", flags);
|
|
if (flags & DXGI_PRESENT_TEST)
|
|
{
|
|
WARN("Returning S_OK for DXGI_PRESENT_TEST.\n");
|
|
return S_OK;
|
|
}
|
|
|
|
if (present_parameters)
|
|
FIXME("Ignored present parameters %p.\n", present_parameters);
|
|
|
|
wined3d_mutex_lock();
|
|
hr = wined3d_swapchain_present(swapchain->wined3d_swapchain, NULL, NULL, NULL, sync_interval, 0);
|
|
wined3d_mutex_unlock();
|
|
|
|
return hr;
|
|
}
|
|
|
|
static BOOL STDMETHODCALLTYPE d3d11_swapchain_IsTemporaryMonoSupported(IDXGISwapChain1 *iface)
|
|
{
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_GetRestrictToOutput(IDXGISwapChain1 *iface, IDXGIOutput **output)
|
|
{
|
|
FIXME("iface %p, output %p stub!\n", iface, output);
|
|
|
|
if (!output)
|
|
{
|
|
WARN("Invalid pointer.\n");
|
|
return E_INVALIDARG;
|
|
}
|
|
|
|
*output = NULL;
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_SetBackgroundColor(IDXGISwapChain1 *iface, const DXGI_RGBA *color)
|
|
{
|
|
FIXME("iface %p, color %p stub!\n", iface, color);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_GetBackgroundColor(IDXGISwapChain1 *iface, DXGI_RGBA *color)
|
|
{
|
|
FIXME("iface %p, color %p stub!\n", iface, color);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_SetRotation(IDXGISwapChain1 *iface, DXGI_MODE_ROTATION rotation)
|
|
{
|
|
FIXME("iface %p, rotation %#x stub!\n", iface, rotation);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_swapchain_GetRotation(IDXGISwapChain1 *iface, DXGI_MODE_ROTATION *rotation)
|
|
{
|
|
FIXME("iface %p, rotation %p stub!\n", iface, rotation);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static const struct IDXGISwapChain1Vtbl d3d11_swapchain_vtbl =
|
|
{
|
|
/* IUnknown methods */
|
|
d3d11_swapchain_QueryInterface,
|
|
d3d11_swapchain_AddRef,
|
|
d3d11_swapchain_Release,
|
|
/* IDXGIObject methods */
|
|
d3d11_swapchain_SetPrivateData,
|
|
d3d11_swapchain_SetPrivateDataInterface,
|
|
d3d11_swapchain_GetPrivateData,
|
|
d3d11_swapchain_GetParent,
|
|
/* IDXGIDeviceSubObject methods */
|
|
d3d11_swapchain_GetDevice,
|
|
/* IDXGISwapChain methods */
|
|
d3d11_swapchain_Present,
|
|
d3d11_swapchain_GetBuffer,
|
|
d3d11_swapchain_SetFullscreenState,
|
|
d3d11_swapchain_GetFullscreenState,
|
|
d3d11_swapchain_GetDesc,
|
|
d3d11_swapchain_ResizeBuffers,
|
|
d3d11_swapchain_ResizeTarget,
|
|
d3d11_swapchain_GetContainingOutput,
|
|
d3d11_swapchain_GetFrameStatistics,
|
|
d3d11_swapchain_GetLastPresentCount,
|
|
/* IDXGISwapChain1 methods */
|
|
d3d11_swapchain_GetDesc1,
|
|
d3d11_swapchain_GetFullscreenDesc,
|
|
d3d11_swapchain_GetHwnd,
|
|
d3d11_swapchain_GetCoreWindow,
|
|
d3d11_swapchain_Present1,
|
|
d3d11_swapchain_IsTemporaryMonoSupported,
|
|
d3d11_swapchain_GetRestrictToOutput,
|
|
d3d11_swapchain_SetBackgroundColor,
|
|
d3d11_swapchain_GetBackgroundColor,
|
|
d3d11_swapchain_SetRotation,
|
|
d3d11_swapchain_GetRotation,
|
|
};
|
|
|
|
static void STDMETHODCALLTYPE d3d11_swapchain_wined3d_object_released(void *parent)
|
|
{
|
|
struct d3d11_swapchain *swapchain = parent;
|
|
|
|
wined3d_private_store_cleanup(&swapchain->private_store);
|
|
heap_free(parent);
|
|
}
|
|
|
|
static const struct wined3d_parent_ops d3d11_swapchain_wined3d_parent_ops =
|
|
{
|
|
d3d11_swapchain_wined3d_object_released,
|
|
};
|
|
|
|
HRESULT d3d11_swapchain_init(struct d3d11_swapchain *swapchain, struct dxgi_device *device,
|
|
struct wined3d_swapchain_desc *desc, BOOL implicit)
|
|
{
|
|
HRESULT hr;
|
|
|
|
/*
|
|
* A reference to the implicit swapchain is held by the wined3d device.
|
|
* In order to avoid circular references we do not keep a reference
|
|
* to the device in the implicit swapchain.
|
|
*/
|
|
if (!implicit)
|
|
{
|
|
if (FAILED(hr = IWineDXGIAdapter_GetParent(device->adapter, &IID_IDXGIFactory,
|
|
(void **)&swapchain->factory)))
|
|
{
|
|
WARN("Failed to get adapter parent, hr %#x.\n", hr);
|
|
return hr;
|
|
}
|
|
IWineDXGIDevice_AddRef(swapchain->device = &device->IWineDXGIDevice_iface);
|
|
}
|
|
else
|
|
{
|
|
swapchain->device = NULL;
|
|
swapchain->factory = NULL;
|
|
}
|
|
|
|
swapchain->IDXGISwapChain1_iface.lpVtbl = &d3d11_swapchain_vtbl;
|
|
swapchain->refcount = 1;
|
|
wined3d_mutex_lock();
|
|
wined3d_private_store_init(&swapchain->private_store);
|
|
|
|
if (!desc->windowed && (!desc->backbuffer_width || !desc->backbuffer_height))
|
|
FIXME("Fullscreen swapchain with back buffer width/height equal to 0 not supported properly.\n");
|
|
|
|
swapchain->fullscreen = !desc->windowed;
|
|
desc->windowed = TRUE;
|
|
if (FAILED(hr = wined3d_swapchain_create(device->wined3d_device, desc, swapchain,
|
|
&d3d11_swapchain_wined3d_parent_ops, &swapchain->wined3d_swapchain)))
|
|
{
|
|
WARN("Failed to create wined3d swapchain, hr %#x.\n", hr);
|
|
goto cleanup;
|
|
}
|
|
|
|
swapchain->target = NULL;
|
|
if (swapchain->fullscreen)
|
|
{
|
|
desc->windowed = FALSE;
|
|
if (FAILED(hr = wined3d_swapchain_set_fullscreen(swapchain->wined3d_swapchain,
|
|
desc, NULL)))
|
|
{
|
|
WARN("Failed to set fullscreen state, hr %#x.\n", hr);
|
|
wined3d_swapchain_decref(swapchain->wined3d_swapchain);
|
|
goto cleanup;
|
|
}
|
|
|
|
if (FAILED(hr = IDXGISwapChain1_GetContainingOutput(&swapchain->IDXGISwapChain1_iface,
|
|
&swapchain->target)))
|
|
{
|
|
WARN("Failed to get target output for fullscreen swapchain, hr %#x.\n", hr);
|
|
wined3d_swapchain_decref(swapchain->wined3d_swapchain);
|
|
goto cleanup;
|
|
}
|
|
}
|
|
wined3d_mutex_unlock();
|
|
|
|
return S_OK;
|
|
|
|
cleanup:
|
|
wined3d_private_store_cleanup(&swapchain->private_store);
|
|
wined3d_mutex_unlock();
|
|
if (swapchain->factory)
|
|
IDXGIFactory_Release(swapchain->factory);
|
|
if (swapchain->device)
|
|
IWineDXGIDevice_Release(swapchain->device);
|
|
return hr;
|
|
}
|
|
|
|
HRESULT d3d11_swapchain_create(IWineDXGIDevice *device, HWND window, const DXGI_SWAP_CHAIN_DESC1 *swapchain_desc,
|
|
const DXGI_SWAP_CHAIN_FULLSCREEN_DESC *fullscreen_desc, IDXGISwapChain1 **swapchain)
|
|
{
|
|
struct wined3d_swapchain *wined3d_swapchain;
|
|
struct wined3d_swapchain_desc wined3d_desc;
|
|
HRESULT hr;
|
|
|
|
if (swapchain_desc->Scaling != DXGI_SCALING_STRETCH)
|
|
FIXME("Ignoring scaling %#x.\n", swapchain_desc->Scaling);
|
|
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);
|
|
|
|
switch (swapchain_desc->SwapEffect)
|
|
{
|
|
case DXGI_SWAP_EFFECT_DISCARD:
|
|
wined3d_desc.swap_effect = WINED3D_SWAP_EFFECT_DISCARD;
|
|
break;
|
|
case DXGI_SWAP_EFFECT_SEQUENTIAL:
|
|
wined3d_desc.swap_effect = WINED3D_SWAP_EFFECT_SEQUENTIAL;
|
|
break;
|
|
case DXGI_SWAP_EFFECT_FLIP_DISCARD:
|
|
wined3d_desc.swap_effect = WINED3D_SWAP_EFFECT_FLIP_DISCARD;
|
|
break;
|
|
case DXGI_SWAP_EFFECT_FLIP_SEQUENTIAL:
|
|
wined3d_desc.swap_effect = WINED3D_SWAP_EFFECT_FLIP_SEQUENTIAL;
|
|
break;
|
|
default:
|
|
WARN("Invalid swap effect %#x.\n", swapchain_desc->SwapEffect);
|
|
return DXGI_ERROR_INVALID_CALL;
|
|
}
|
|
|
|
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.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.auto_restore_display_mode = TRUE;
|
|
|
|
if (FAILED(hr = IWineDXGIDevice_create_swapchain(device, &wined3d_desc, FALSE, &wined3d_swapchain)))
|
|
{
|
|
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;
|
|
}
|
|
|
|
struct d3d12_swapchain
|
|
{
|
|
IDXGISwapChain3 IDXGISwapChain3_iface;
|
|
LONG refcount;
|
|
struct wined3d_private_store private_store;
|
|
|
|
ID3D12CommandQueue *command_queue;
|
|
ID3D12Device *device;
|
|
IWineDXGIFactory *factory;
|
|
|
|
HWND window;
|
|
DXGI_SWAP_CHAIN_DESC1 desc;
|
|
DXGI_SWAP_CHAIN_FULLSCREEN_DESC fullscreen_desc;
|
|
};
|
|
|
|
static inline struct d3d12_swapchain *d3d12_swapchain_from_IDXGISwapChain3(IDXGISwapChain3 *iface)
|
|
{
|
|
return CONTAINING_RECORD(iface, struct d3d12_swapchain, IDXGISwapChain3_iface);
|
|
}
|
|
|
|
/* IUnknown methods */
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_QueryInterface(IDXGISwapChain3 *iface, REFIID iid, void **object)
|
|
{
|
|
TRACE("iface %p, iid %s, object %p.\n", iface, debugstr_guid(iid), object);
|
|
|
|
if (IsEqualGUID(iid, &IID_IUnknown)
|
|
|| IsEqualGUID(iid, &IID_IDXGIObject)
|
|
|| IsEqualGUID(iid, &IID_IDXGIDeviceSubObject)
|
|
|| IsEqualGUID(iid, &IID_IDXGISwapChain)
|
|
|| IsEqualGUID(iid, &IID_IDXGISwapChain1)
|
|
|| IsEqualGUID(iid, &IID_IDXGISwapChain2)
|
|
|| IsEqualGUID(iid, &IID_IDXGISwapChain3))
|
|
{
|
|
IUnknown_AddRef(iface);
|
|
*object = iface;
|
|
return S_OK;
|
|
}
|
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(iid));
|
|
|
|
*object = NULL;
|
|
return E_NOINTERFACE;
|
|
}
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d12_swapchain_AddRef(IDXGISwapChain3 *iface)
|
|
{
|
|
struct d3d12_swapchain *swapchain = d3d12_swapchain_from_IDXGISwapChain3(iface);
|
|
ULONG refcount = InterlockedIncrement(&swapchain->refcount);
|
|
|
|
TRACE("%p increasing refcount to %u.\n", swapchain, refcount);
|
|
|
|
return refcount;
|
|
}
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d12_swapchain_Release(IDXGISwapChain3 *iface)
|
|
{
|
|
struct d3d12_swapchain *swapchain = d3d12_swapchain_from_IDXGISwapChain3(iface);
|
|
ULONG refcount = InterlockedDecrement(&swapchain->refcount);
|
|
|
|
TRACE("%p decreasing refcount to %u.\n", swapchain, refcount);
|
|
|
|
if (!refcount)
|
|
{
|
|
ID3D12CommandQueue_Release(swapchain->command_queue);
|
|
IWineDXGIFactory_Release(swapchain->factory);
|
|
|
|
wined3d_private_store_cleanup(&swapchain->private_store);
|
|
|
|
ID3D12Device_Release(swapchain->device);
|
|
|
|
heap_free(swapchain);
|
|
}
|
|
|
|
return refcount;
|
|
}
|
|
|
|
/* IDXGIObject methods */
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_SetPrivateData(IDXGISwapChain3 *iface,
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
{
|
|
struct d3d12_swapchain *swapchain = d3d12_swapchain_from_IDXGISwapChain3(iface);
|
|
|
|
TRACE("iface %p, guid %s, data_size %u, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
return dxgi_set_private_data(&swapchain->private_store, guid, data_size, data);
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_SetPrivateDataInterface(IDXGISwapChain3 *iface,
|
|
REFGUID guid, const IUnknown *object)
|
|
{
|
|
struct d3d12_swapchain *swapchain = d3d12_swapchain_from_IDXGISwapChain3(iface);
|
|
|
|
TRACE("iface %p, guid %s, object %p.\n", iface, debugstr_guid(guid), object);
|
|
|
|
return dxgi_set_private_data_interface(&swapchain->private_store, guid, object);
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetPrivateData(IDXGISwapChain3 *iface,
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
{
|
|
struct d3d12_swapchain *swapchain = d3d12_swapchain_from_IDXGISwapChain3(iface);
|
|
|
|
TRACE("iface %p, guid %s, data_size %p, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
return dxgi_get_private_data(&swapchain->private_store, guid, data_size, data);
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetParent(IDXGISwapChain3 *iface, REFIID iid, void **parent)
|
|
{
|
|
struct d3d12_swapchain *swapchain = d3d12_swapchain_from_IDXGISwapChain3(iface);
|
|
|
|
TRACE("iface %p, iid %s, parent %p.\n", iface, debugstr_guid(iid), parent);
|
|
|
|
return IWineDXGIFactory_QueryInterface(swapchain->factory, iid, parent);
|
|
}
|
|
|
|
/* IDXGIDeviceSubObject methods */
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetDevice(IDXGISwapChain3 *iface, REFIID iid, void **device)
|
|
{
|
|
struct d3d12_swapchain *swapchain = d3d12_swapchain_from_IDXGISwapChain3(iface);
|
|
|
|
TRACE("iface %p, iid %s, device %p.\n", iface, debugstr_guid(iid), device);
|
|
|
|
return ID3D12Device_QueryInterface(swapchain->device, iid, device);
|
|
}
|
|
|
|
/* IDXGISwapChain methods */
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_Present(IDXGISwapChain3 *iface, UINT sync_interval, UINT flags)
|
|
{
|
|
struct d3d12_swapchain *swapchain = d3d12_swapchain_from_IDXGISwapChain3(iface);
|
|
|
|
TRACE("iface %p, sync_interval %u, flags %#x.\n", iface, sync_interval, flags);
|
|
|
|
return IDXGISwapChain3_Present1(&swapchain->IDXGISwapChain3_iface, sync_interval, flags, NULL);
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetBuffer(IDXGISwapChain3 *iface,
|
|
UINT buffer_idx, REFIID iid, void **surface)
|
|
{
|
|
FIXME("iface %p, buffer_idx %u, iid %s, surface %p stub!\n",
|
|
iface, buffer_idx, debugstr_guid(iid), surface);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE DECLSPEC_HOTPATCH d3d12_swapchain_SetFullscreenState(IDXGISwapChain3 *iface,
|
|
BOOL fullscreen, IDXGIOutput *target)
|
|
{
|
|
FIXME("iface %p, fullscreen %#x, target %p stub!\n", iface, fullscreen, target);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetFullscreenState(IDXGISwapChain3 *iface,
|
|
BOOL *fullscreen, IDXGIOutput **target)
|
|
{
|
|
FIXME("iface %p, fullscreen %p, target %p stub!n", iface, fullscreen, target);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetDesc(IDXGISwapChain3 *iface, DXGI_SWAP_CHAIN_DESC *desc)
|
|
{
|
|
struct d3d12_swapchain *swapchain = d3d12_swapchain_from_IDXGISwapChain3(iface);
|
|
const DXGI_SWAP_CHAIN_FULLSCREEN_DESC *fullscreen_desc = &swapchain->fullscreen_desc;
|
|
const DXGI_SWAP_CHAIN_DESC1 *swapchain_desc = &swapchain->desc;
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
if (!desc)
|
|
{
|
|
WARN("Invalid pointer.\n");
|
|
return E_INVALIDARG;
|
|
}
|
|
|
|
desc->BufferDesc.Width = swapchain_desc->Width;
|
|
desc->BufferDesc.Height = swapchain_desc->Height;
|
|
desc->BufferDesc.RefreshRate = fullscreen_desc->RefreshRate;
|
|
desc->BufferDesc.Format = swapchain_desc->Format;
|
|
desc->BufferDesc.ScanlineOrdering = fullscreen_desc->ScanlineOrdering;
|
|
desc->BufferDesc.Scaling = fullscreen_desc->Scaling;
|
|
desc->SampleDesc = swapchain_desc->SampleDesc;
|
|
desc->BufferUsage = swapchain_desc->BufferUsage;
|
|
desc->BufferCount = swapchain_desc->BufferCount;
|
|
desc->OutputWindow = swapchain->window;
|
|
desc->Windowed = fullscreen_desc->Windowed;
|
|
desc->SwapEffect = swapchain_desc->SwapEffect;
|
|
desc->Flags = swapchain_desc->Flags;
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_ResizeBuffers(IDXGISwapChain3 *iface,
|
|
UINT buffer_count, UINT width, UINT height, DXGI_FORMAT format, UINT flags)
|
|
{
|
|
FIXME("iface %p, buffer_count %u, width %u, height %u, format %s, flags %#x stub!\n",
|
|
iface, buffer_count, width, height, debug_dxgi_format(format), flags);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_ResizeTarget(IDXGISwapChain3 *iface,
|
|
const DXGI_MODE_DESC *target_mode_desc)
|
|
{
|
|
FIXME("iface %p, target_mode_desc %p stub!\n", iface, target_mode_desc);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetContainingOutput(IDXGISwapChain3 *iface,
|
|
IDXGIOutput **output)
|
|
{
|
|
FIXME("iface %p, output %p stub!\n", iface, output);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetFrameStatistics(IDXGISwapChain3 *iface,
|
|
DXGI_FRAME_STATISTICS *stats)
|
|
{
|
|
FIXME("iface %p, stats %p stub!\n", iface, stats);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetLastPresentCount(IDXGISwapChain3 *iface,
|
|
UINT *last_present_count)
|
|
{
|
|
FIXME("iface %p, last_present_count %p stub!\n", iface, last_present_count);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
/* IDXGISwapChain1 methods */
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetDesc1(IDXGISwapChain3 *iface, DXGI_SWAP_CHAIN_DESC1 *desc)
|
|
{
|
|
struct d3d12_swapchain *swapchain = d3d12_swapchain_from_IDXGISwapChain3(iface);
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
if (!desc)
|
|
{
|
|
WARN("Invalid pointer.\n");
|
|
return E_INVALIDARG;
|
|
}
|
|
|
|
*desc = swapchain->desc;
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetFullscreenDesc(IDXGISwapChain3 *iface,
|
|
DXGI_SWAP_CHAIN_FULLSCREEN_DESC *desc)
|
|
{
|
|
struct d3d12_swapchain *swapchain = d3d12_swapchain_from_IDXGISwapChain3(iface);
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
if (!desc)
|
|
{
|
|
WARN("Invalid pointer.\n");
|
|
return E_INVALIDARG;
|
|
}
|
|
|
|
*desc = swapchain->fullscreen_desc;
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetHwnd(IDXGISwapChain3 *iface, HWND *hwnd)
|
|
{
|
|
struct d3d12_swapchain *swapchain = d3d12_swapchain_from_IDXGISwapChain3(iface);
|
|
|
|
TRACE("iface %p, hwnd %p.\n", iface, hwnd);
|
|
|
|
if (!hwnd)
|
|
{
|
|
WARN("Invalid pointer.\n");
|
|
return DXGI_ERROR_INVALID_CALL;
|
|
}
|
|
|
|
*hwnd = swapchain->window;
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetCoreWindow(IDXGISwapChain3 *iface,
|
|
REFIID iid, void **core_window)
|
|
{
|
|
FIXME("iface %p, iid %s, core_window %p stub!\n", iface, debugstr_guid(iid), core_window);
|
|
|
|
if (core_window)
|
|
*core_window = NULL;
|
|
|
|
return DXGI_ERROR_INVALID_CALL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_Present1(IDXGISwapChain3 *iface,
|
|
UINT sync_interval, UINT flags, const DXGI_PRESENT_PARAMETERS *present_parameters)
|
|
{
|
|
FIXME("iface %p, sync_interval %u, flags %#x, present_parameters %p stub!\n",
|
|
iface, sync_interval, flags, present_parameters);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static BOOL STDMETHODCALLTYPE d3d12_swapchain_IsTemporaryMonoSupported(IDXGISwapChain3 *iface)
|
|
{
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetRestrictToOutput(IDXGISwapChain3 *iface, IDXGIOutput **output)
|
|
{
|
|
FIXME("iface %p, output %p stub!\n", iface, output);
|
|
|
|
if (!output)
|
|
{
|
|
WARN("Invalid pointer.\n");
|
|
return E_INVALIDARG;
|
|
}
|
|
|
|
*output = NULL;
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_SetBackgroundColor(IDXGISwapChain3 *iface, const DXGI_RGBA *color)
|
|
{
|
|
FIXME("iface %p, color %p stub!\n", iface, color);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetBackgroundColor(IDXGISwapChain3 *iface, DXGI_RGBA *color)
|
|
{
|
|
FIXME("iface %p, color %p stub!\n", iface, color);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_SetRotation(IDXGISwapChain3 *iface, DXGI_MODE_ROTATION rotation)
|
|
{
|
|
FIXME("iface %p, rotation %#x stub!\n", iface, rotation);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetRotation(IDXGISwapChain3 *iface, DXGI_MODE_ROTATION *rotation)
|
|
{
|
|
FIXME("iface %p, rotation %p stub!\n", iface, rotation);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
/* IDXGISwapChain2 methods */
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_SetSourceSize(IDXGISwapChain3 *iface, UINT width, UINT height)
|
|
{
|
|
FIXME("iface %p, width %u, height %u stub!\n", iface, width, height);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetSourceSize(IDXGISwapChain3 *iface, UINT *width, UINT *height)
|
|
{
|
|
FIXME("iface %p, width %p, height %p stub!\n", iface, width, height);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_SetMaximumFrameLatency(IDXGISwapChain3 *iface, UINT max_latency)
|
|
{
|
|
FIXME("iface %p, max_latency %u stub!\n", iface, max_latency);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetMaximumFrameLatency(IDXGISwapChain3 *iface, UINT *max_latency)
|
|
{
|
|
FIXME("iface %p, max_latency %p stub!\n", iface, max_latency);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HANDLE STDMETHODCALLTYPE d3d12_swapchain_GetFrameLatencyWaitableObject(IDXGISwapChain3 *iface)
|
|
{
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_SetMatrixTransform(IDXGISwapChain3 *iface,
|
|
const DXGI_MATRIX_3X2_F *matrix)
|
|
{
|
|
FIXME("iface %p, matrix %p stub!\n", iface, matrix);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetMatrixTransform(IDXGISwapChain3 *iface,
|
|
DXGI_MATRIX_3X2_F *matrix)
|
|
{
|
|
FIXME("iface %p, matrix %p stub!\n", iface, matrix);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
/* IDXGISwapChain3 methods */
|
|
|
|
static UINT STDMETHODCALLTYPE d3d12_swapchain_GetCurrentBackBufferIndex(IDXGISwapChain3 *iface)
|
|
{
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_CheckColorSpaceSupport(IDXGISwapChain3 *iface,
|
|
DXGI_COLOR_SPACE_TYPE colour_space, UINT *colour_space_support)
|
|
{
|
|
FIXME("iface %p, colour_space %#x, colour_space_support %p stub!\n",
|
|
iface, colour_space, colour_space_support);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_SetColorSpace1(IDXGISwapChain3 *iface,
|
|
DXGI_COLOR_SPACE_TYPE colour_space)
|
|
{
|
|
FIXME("iface %p, colour_space %#x stub!\n", iface, colour_space);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_swapchain_ResizeBuffers1(IDXGISwapChain3 *iface,
|
|
UINT buffer_count, UINT width, UINT height, DXGI_FORMAT format, UINT flags,
|
|
const UINT *node_mask, IUnknown * const *present_queue)
|
|
{
|
|
FIXME("iface %p, buffer_count %u, width %u, height %u, format %s, flags %#x, "
|
|
"node_mask %p, present_queue %p stub!\n",
|
|
iface, buffer_count, width, height, debug_dxgi_format(format), flags, node_mask, present_queue);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static const struct IDXGISwapChain3Vtbl d3d12_swapchain_vtbl =
|
|
{
|
|
/* IUnknown methods */
|
|
d3d12_swapchain_QueryInterface,
|
|
d3d12_swapchain_AddRef,
|
|
d3d12_swapchain_Release,
|
|
/* IDXGIObject methods */
|
|
d3d12_swapchain_SetPrivateData,
|
|
d3d12_swapchain_SetPrivateDataInterface,
|
|
d3d12_swapchain_GetPrivateData,
|
|
d3d12_swapchain_GetParent,
|
|
/* IDXGIDeviceSubObject methods */
|
|
d3d12_swapchain_GetDevice,
|
|
/* IDXGISwapChain methods */
|
|
d3d12_swapchain_Present,
|
|
d3d12_swapchain_GetBuffer,
|
|
d3d12_swapchain_SetFullscreenState,
|
|
d3d12_swapchain_GetFullscreenState,
|
|
d3d12_swapchain_GetDesc,
|
|
d3d12_swapchain_ResizeBuffers,
|
|
d3d12_swapchain_ResizeTarget,
|
|
d3d12_swapchain_GetContainingOutput,
|
|
d3d12_swapchain_GetFrameStatistics,
|
|
d3d12_swapchain_GetLastPresentCount,
|
|
/* IDXGISwapChain1 methods */
|
|
d3d12_swapchain_GetDesc1,
|
|
d3d12_swapchain_GetFullscreenDesc,
|
|
d3d12_swapchain_GetHwnd,
|
|
d3d12_swapchain_GetCoreWindow,
|
|
d3d12_swapchain_Present1,
|
|
d3d12_swapchain_IsTemporaryMonoSupported,
|
|
d3d12_swapchain_GetRestrictToOutput,
|
|
d3d12_swapchain_SetBackgroundColor,
|
|
d3d12_swapchain_GetBackgroundColor,
|
|
d3d12_swapchain_SetRotation,
|
|
d3d12_swapchain_GetRotation,
|
|
/* IDXGISwapChain2 methods */
|
|
d3d12_swapchain_SetSourceSize,
|
|
d3d12_swapchain_GetSourceSize,
|
|
d3d12_swapchain_SetMaximumFrameLatency,
|
|
d3d12_swapchain_GetMaximumFrameLatency,
|
|
d3d12_swapchain_GetFrameLatencyWaitableObject,
|
|
d3d12_swapchain_SetMatrixTransform,
|
|
d3d12_swapchain_GetMatrixTransform,
|
|
/* IDXGISwapChain3 methods */
|
|
d3d12_swapchain_GetCurrentBackBufferIndex,
|
|
d3d12_swapchain_CheckColorSpaceSupport,
|
|
d3d12_swapchain_SetColorSpace1,
|
|
d3d12_swapchain_ResizeBuffers1,
|
|
};
|
|
|
|
HRESULT d3d12_swapchain_create(IWineDXGIFactory *factory, ID3D12CommandQueue *queue, HWND window,
|
|
const DXGI_SWAP_CHAIN_DESC1 *swapchain_desc, const DXGI_SWAP_CHAIN_FULLSCREEN_DESC *fullscreen_desc,
|
|
IDXGISwapChain1 **swapchain)
|
|
{
|
|
struct d3d12_swapchain *object;
|
|
ID3D12Device *device;
|
|
HRESULT hr;
|
|
|
|
if (FAILED(hr = ID3D12CommandQueue_GetDevice(queue, &IID_ID3D12Device, (void **)&device)))
|
|
{
|
|
ERR("Failed to get D3D12 device, hr %#x.\n", hr);
|
|
return hr;
|
|
}
|
|
|
|
if (!(object = heap_alloc_zero(sizeof(*object))))
|
|
{
|
|
ID3D12Device_Release(device);
|
|
return E_OUTOFMEMORY;
|
|
}
|
|
|
|
object->IDXGISwapChain3_iface.lpVtbl = &d3d12_swapchain_vtbl;
|
|
object->refcount = 1;
|
|
|
|
wined3d_private_store_init(&object->private_store);
|
|
|
|
ID3D12CommandQueue_AddRef(object->command_queue = queue);
|
|
object->device = device;
|
|
IWineDXGIFactory_AddRef(object->factory = factory);
|
|
|
|
object->window = window;
|
|
object->desc = *swapchain_desc;
|
|
if (fullscreen_desc)
|
|
{
|
|
object->fullscreen_desc = *fullscreen_desc;
|
|
}
|
|
else
|
|
{
|
|
memset(&object->fullscreen_desc, 0, sizeof(object->fullscreen_desc));
|
|
object->fullscreen_desc.Windowed = TRUE;
|
|
}
|
|
|
|
TRACE("Created swapchain %p.\n", object);
|
|
|
|
*swapchain = (IDXGISwapChain1 *)&object->IDXGISwapChain3_iface;
|
|
|
|
return S_OK;
|
|
}
|