2003-07-01 01:09:17 +00:00
|
|
|
/*
|
|
|
|
* IDirect3DSwapChain9 implementation
|
|
|
|
*
|
|
|
|
* Copyright 2002-2003 Jason Edmeades
|
|
|
|
* Raphael Junqueira
|
2005-06-23 11:05:24 +00:00
|
|
|
* Copyright 2005 Oliver Stieber
|
2003-07-01 01:09:17 +00:00
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-07-01 01:09:17 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "d3d9_private.h"
|
|
|
|
|
2005-06-23 11:05:24 +00:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
|
2003-07-01 01:09:17 +00:00
|
|
|
|
2018-03-22 07:48:32 +00:00
|
|
|
static DWORD d3dpresentationinterval_from_wined3dswapinterval(enum wined3d_swap_interval interval)
|
|
|
|
{
|
|
|
|
switch (interval)
|
|
|
|
{
|
|
|
|
case WINED3D_SWAP_INTERVAL_IMMEDIATE:
|
|
|
|
return D3DPRESENT_INTERVAL_IMMEDIATE;
|
|
|
|
case WINED3D_SWAP_INTERVAL_ONE:
|
|
|
|
return D3DPRESENT_INTERVAL_ONE;
|
|
|
|
case WINED3D_SWAP_INTERVAL_TWO:
|
|
|
|
return D3DPRESENT_INTERVAL_TWO;
|
|
|
|
case WINED3D_SWAP_INTERVAL_THREE:
|
|
|
|
return D3DPRESENT_INTERVAL_THREE;
|
|
|
|
case WINED3D_SWAP_INTERVAL_FOUR:
|
|
|
|
return D3DPRESENT_INTERVAL_FOUR;
|
|
|
|
default:
|
|
|
|
ERR("Invalid swap interval %#x.\n", interval);
|
|
|
|
case WINED3D_SWAP_INTERVAL_DEFAULT:
|
|
|
|
return D3DPRESENT_INTERVAL_DEFAULT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-09 13:43:00 +00:00
|
|
|
static inline struct d3d9_swapchain *impl_from_IDirect3DSwapChain9Ex(IDirect3DSwapChain9Ex *iface)
|
2003-07-01 01:09:17 +00:00
|
|
|
{
|
2013-09-09 13:43:00 +00:00
|
|
|
return CONTAINING_RECORD(iface, struct d3d9_swapchain, IDirect3DSwapChain9Ex_iface);
|
2012-04-10 20:06:20 +00:00
|
|
|
}
|
|
|
|
|
2013-09-09 13:43:00 +00:00
|
|
|
static HRESULT WINAPI d3d9_swapchain_QueryInterface(IDirect3DSwapChain9Ex *iface, REFIID riid, void **out)
|
2012-04-10 20:06:20 +00:00
|
|
|
{
|
|
|
|
TRACE("iface %p, riid %s, out %p.\n", iface, debugstr_guid(riid), out);
|
2009-10-20 09:05:02 +00:00
|
|
|
|
2012-03-29 23:08:37 +00:00
|
|
|
if (IsEqualGUID(riid, &IID_IDirect3DSwapChain9)
|
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
2013-09-09 13:43:00 +00:00
|
|
|
IDirect3DSwapChain9Ex_AddRef(iface);
|
|
|
|
*out = iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_IDirect3DSwapChain9Ex))
|
|
|
|
{
|
|
|
|
struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
|
|
|
|
struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(swapchain->parent_device);
|
|
|
|
|
|
|
|
/* Find out if the creating d3d9 interface was created with Direct3DCreate9Ex.
|
|
|
|
* It doesn't matter with which function the device was created. */
|
|
|
|
if (!device->d3d_parent->extended)
|
|
|
|
{
|
|
|
|
WARN("IDirect3D9 instance wasn't created with CreateDirect3D9Ex, returning E_NOINTERFACE.\n");
|
|
|
|
*out = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
IDirect3DSwapChain9Ex_AddRef(iface);
|
2012-04-10 20:06:20 +00:00
|
|
|
*out = iface;
|
2006-06-07 13:13:29 +00:00
|
|
|
return S_OK;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2012-03-29 23:08:37 +00:00
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
|
|
|
|
2012-04-10 20:06:20 +00:00
|
|
|
*out = NULL;
|
2003-07-01 01:09:17 +00:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2013-09-09 13:43:00 +00:00
|
|
|
static ULONG WINAPI d3d9_swapchain_AddRef(IDirect3DSwapChain9Ex *iface)
|
2012-04-10 20:06:20 +00:00
|
|
|
{
|
2013-09-09 13:43:00 +00:00
|
|
|
struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
|
2012-05-30 14:14:59 +00:00
|
|
|
ULONG refcount = InterlockedIncrement(&swapchain->refcount);
|
2005-01-24 11:31:45 +00:00
|
|
|
|
2022-09-19 03:57:13 +00:00
|
|
|
TRACE("%p increasing refcount to %lu.\n", iface, refcount);
|
2005-01-24 11:31:45 +00:00
|
|
|
|
2012-05-30 14:14:59 +00:00
|
|
|
if (refcount == 1)
|
2011-04-07 16:46:01 +00:00
|
|
|
{
|
2012-05-30 14:14:59 +00:00
|
|
|
if (swapchain->parent_device)
|
|
|
|
IDirect3DDevice9Ex_AddRef(swapchain->parent_device);
|
2011-04-07 16:46:01 +00:00
|
|
|
|
2012-04-10 20:06:20 +00:00
|
|
|
wined3d_swapchain_incref(swapchain->wined3d_swapchain);
|
2011-04-07 16:46:01 +00:00
|
|
|
}
|
2006-12-17 23:17:31 +00:00
|
|
|
|
2012-05-30 14:14:59 +00:00
|
|
|
return refcount;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2013-09-09 13:43:00 +00:00
|
|
|
static ULONG WINAPI d3d9_swapchain_Release(IDirect3DSwapChain9Ex *iface)
|
2012-04-10 20:06:20 +00:00
|
|
|
{
|
2013-09-09 13:43:00 +00:00
|
|
|
struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
|
2017-02-13 12:07:35 +00:00
|
|
|
ULONG refcount;
|
2005-01-24 11:31:45 +00:00
|
|
|
|
2017-02-13 12:07:35 +00:00
|
|
|
if (!swapchain->refcount)
|
|
|
|
{
|
|
|
|
WARN("Swapchain does not have any references.\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
refcount = InterlockedDecrement(&swapchain->refcount);
|
2022-09-19 03:57:13 +00:00
|
|
|
TRACE("%p decreasing refcount to %lu.\n", iface, refcount);
|
2005-01-24 11:31:45 +00:00
|
|
|
|
2012-05-30 14:14:59 +00:00
|
|
|
if (!refcount)
|
|
|
|
{
|
|
|
|
IDirect3DDevice9Ex *parent_device = swapchain->parent_device;
|
2009-09-26 13:56:16 +00:00
|
|
|
|
2012-04-10 20:06:20 +00:00
|
|
|
wined3d_swapchain_decref(swapchain->wined3d_swapchain);
|
2009-09-26 13:56:16 +00:00
|
|
|
|
|
|
|
/* Release the device last, as it may cause the device to be destroyed. */
|
2012-05-30 14:14:59 +00:00
|
|
|
if (parent_device)
|
|
|
|
IDirect3DDevice9Ex_Release(parent_device);
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
2012-05-30 14:14:59 +00:00
|
|
|
|
|
|
|
return refcount;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2013-09-09 13:43:00 +00:00
|
|
|
static HRESULT WINAPI DECLSPEC_HOTPATCH d3d9_swapchain_Present(IDirect3DSwapChain9Ex *iface,
|
2012-04-10 20:06:20 +00:00
|
|
|
const RECT *src_rect, const RECT *dst_rect, HWND dst_window_override,
|
|
|
|
const RGNDATA *dirty_region, DWORD flags)
|
|
|
|
{
|
2013-09-09 13:43:00 +00:00
|
|
|
struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
|
2014-06-27 06:27:00 +00:00
|
|
|
struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(swapchain->parent_device);
|
2009-03-23 07:30:16 +00:00
|
|
|
|
2022-09-19 03:57:13 +00:00
|
|
|
TRACE("iface %p, src_rect %s, dst_rect %s, dst_window_override %p, dirty_region %p, flags %#lx.\n",
|
2012-04-10 20:06:20 +00:00
|
|
|
iface, wine_dbgstr_rect(src_rect), wine_dbgstr_rect(dst_rect),
|
|
|
|
dst_window_override, dirty_region, flags);
|
2009-03-23 07:30:16 +00:00
|
|
|
|
2014-06-27 06:27:00 +00:00
|
|
|
if (device->device_state != D3D9_DEVICE_STATE_OK)
|
|
|
|
return device->d3d_parent->extended ? S_PRESENT_OCCLUDED : D3DERR_DEVICELOST;
|
|
|
|
|
2016-03-17 15:30:03 +00:00
|
|
|
if (dirty_region)
|
|
|
|
FIXME("Ignoring dirty_region %p.\n", dirty_region);
|
|
|
|
|
2018-12-03 13:41:05 +00:00
|
|
|
return wined3d_swapchain_present(swapchain->wined3d_swapchain,
|
2018-03-22 07:48:31 +00:00
|
|
|
src_rect, dst_rect, dst_window_override, swapchain->swap_interval, flags);
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2013-09-09 13:43:00 +00:00
|
|
|
static HRESULT WINAPI d3d9_swapchain_GetFrontBufferData(IDirect3DSwapChain9Ex *iface, IDirect3DSurface9 *surface)
|
2011-07-07 08:54:02 +00:00
|
|
|
{
|
2013-09-09 13:43:00 +00:00
|
|
|
struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
|
2012-05-30 14:15:00 +00:00
|
|
|
struct d3d9_surface *dst = unsafe_impl_from_IDirect3DSurface9(surface);
|
2007-06-14 09:48:59 +00:00
|
|
|
HRESULT hr;
|
2009-10-20 09:05:02 +00:00
|
|
|
|
2012-05-30 14:14:59 +00:00
|
|
|
TRACE("iface %p, surface %p.\n", iface, surface);
|
2007-06-14 09:48:59 +00:00
|
|
|
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_lock();
|
2015-10-16 11:59:17 +00:00
|
|
|
hr = wined3d_swapchain_get_front_buffer_data(swapchain->wined3d_swapchain, dst->wined3d_texture, dst->sub_resource_idx);
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-14 09:48:59 +00:00
|
|
|
return hr;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2013-09-09 13:43:00 +00:00
|
|
|
static HRESULT WINAPI d3d9_swapchain_GetBackBuffer(IDirect3DSwapChain9Ex *iface,
|
2012-05-30 14:14:59 +00:00
|
|
|
UINT backbuffer_idx, D3DBACKBUFFER_TYPE backbuffer_type, IDirect3DSurface9 **backbuffer)
|
2010-08-31 16:41:40 +00:00
|
|
|
{
|
2013-09-09 13:43:00 +00:00
|
|
|
struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
|
2015-09-03 10:52:52 +00:00
|
|
|
struct wined3d_texture *wined3d_texture;
|
2012-05-30 14:15:00 +00:00
|
|
|
struct d3d9_surface *surface_impl;
|
2012-10-04 11:53:27 +00:00
|
|
|
HRESULT hr = D3D_OK;
|
2005-06-23 11:05:24 +00:00
|
|
|
|
2009-10-20 09:05:02 +00:00
|
|
|
TRACE("iface %p, backbuffer_idx %u, backbuffer_type %#x, backbuffer %p.\n",
|
2012-05-30 14:14:59 +00:00
|
|
|
iface, backbuffer_idx, backbuffer_type, backbuffer);
|
2005-06-23 11:05:24 +00:00
|
|
|
|
2015-09-07 21:50:34 +00:00
|
|
|
/* backbuffer_type is ignored by native. */
|
|
|
|
|
2015-09-03 10:52:52 +00:00
|
|
|
if (!backbuffer)
|
|
|
|
{
|
|
|
|
WARN("The output pointer is NULL, returning D3DERR_INVALIDCALL.\n");
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_lock();
|
2015-09-07 21:50:34 +00:00
|
|
|
if ((wined3d_texture = wined3d_swapchain_get_back_buffer(swapchain->wined3d_swapchain, backbuffer_idx)))
|
2010-08-31 16:41:40 +00:00
|
|
|
{
|
2016-02-23 17:21:58 +00:00
|
|
|
surface_impl = wined3d_texture_get_sub_resource_parent(wined3d_texture, 0);
|
2015-09-03 10:52:52 +00:00
|
|
|
*backbuffer = &surface_impl->IDirect3DSurface9_iface;
|
|
|
|
IDirect3DSurface9_AddRef(*backbuffer);
|
2012-10-04 11:53:27 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-09-03 10:52:52 +00:00
|
|
|
/* Do not set *backbuffer = NULL, see tests/device.c, test_swapchain(). */
|
2012-10-04 11:53:27 +00:00
|
|
|
hr = D3DERR_INVALIDCALL;
|
2005-06-23 11:05:24 +00:00
|
|
|
}
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2010-08-31 16:41:40 +00:00
|
|
|
return hr;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2013-09-09 13:43:00 +00:00
|
|
|
static HRESULT WINAPI d3d9_swapchain_GetRasterStatus(IDirect3DSwapChain9Ex *iface, D3DRASTER_STATUS *raster_status)
|
2012-04-10 20:06:20 +00:00
|
|
|
{
|
2013-09-09 13:43:00 +00:00
|
|
|
struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
|
2007-06-14 09:48:59 +00:00
|
|
|
HRESULT hr;
|
2009-10-20 09:05:02 +00:00
|
|
|
|
2012-04-10 20:06:20 +00:00
|
|
|
TRACE("iface %p, raster_status %p.\n", iface, raster_status);
|
2007-06-14 09:48:59 +00:00
|
|
|
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_lock();
|
2012-04-10 20:06:20 +00:00
|
|
|
hr = wined3d_swapchain_get_raster_status(swapchain->wined3d_swapchain,
|
|
|
|
(struct wined3d_raster_status *)raster_status);
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-14 09:48:59 +00:00
|
|
|
return hr;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2013-09-09 13:43:00 +00:00
|
|
|
static HRESULT WINAPI d3d9_swapchain_GetDisplayMode(IDirect3DSwapChain9Ex *iface, D3DDISPLAYMODE *mode)
|
2012-04-10 20:06:20 +00:00
|
|
|
{
|
2013-09-09 13:43:00 +00:00
|
|
|
struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
|
2012-06-27 17:02:27 +00:00
|
|
|
struct wined3d_display_mode wined3d_mode;
|
2007-06-14 09:48:59 +00:00
|
|
|
HRESULT hr;
|
2009-10-20 09:05:02 +00:00
|
|
|
|
2012-04-10 20:06:20 +00:00
|
|
|
TRACE("iface %p, mode %p.\n", iface, mode);
|
2007-06-14 09:48:59 +00:00
|
|
|
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_lock();
|
2012-06-27 17:02:29 +00:00
|
|
|
hr = wined3d_swapchain_get_display_mode(swapchain->wined3d_swapchain, &wined3d_mode, NULL);
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_unlock();
|
2009-02-19 15:59:42 +00:00
|
|
|
|
2012-04-10 20:06:20 +00:00
|
|
|
if (SUCCEEDED(hr))
|
2012-06-27 17:02:27 +00:00
|
|
|
{
|
|
|
|
mode->Width = wined3d_mode.width;
|
|
|
|
mode->Height = wined3d_mode.height;
|
|
|
|
mode->RefreshRate = wined3d_mode.refresh_rate;
|
|
|
|
mode->Format = d3dformat_from_wined3dformat(wined3d_mode.format_id);
|
|
|
|
}
|
2009-02-19 15:59:42 +00:00
|
|
|
|
2007-06-14 09:48:59 +00:00
|
|
|
return hr;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2013-09-09 13:43:00 +00:00
|
|
|
static HRESULT WINAPI d3d9_swapchain_GetDevice(IDirect3DSwapChain9Ex *iface, IDirect3DDevice9 **device)
|
2009-12-04 10:50:47 +00:00
|
|
|
{
|
2013-09-09 13:43:00 +00:00
|
|
|
struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
|
2003-07-01 01:09:17 +00:00
|
|
|
|
2009-12-04 10:50:47 +00:00
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
2005-06-23 11:05:24 +00:00
|
|
|
|
2012-05-30 14:14:59 +00:00
|
|
|
*device = (IDirect3DDevice9 *)swapchain->parent_device;
|
2009-12-04 10:50:47 +00:00
|
|
|
IDirect3DDevice9_AddRef(*device);
|
2009-08-26 08:18:09 +00:00
|
|
|
|
2009-12-04 10:50:47 +00:00
|
|
|
TRACE("Returning device %p.\n", *device);
|
|
|
|
|
|
|
|
return D3D_OK;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2013-09-09 13:43:00 +00:00
|
|
|
static HRESULT WINAPI d3d9_swapchain_GetPresentParameters(IDirect3DSwapChain9Ex *iface,
|
2012-05-30 14:14:59 +00:00
|
|
|
D3DPRESENT_PARAMETERS *parameters)
|
2011-12-02 07:15:52 +00:00
|
|
|
{
|
2013-09-09 13:43:00 +00:00
|
|
|
struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
|
2011-12-02 07:15:52 +00:00
|
|
|
struct wined3d_swapchain_desc desc;
|
2018-03-22 07:48:32 +00:00
|
|
|
DWORD presentation_interval;
|
2007-02-15 21:36:50 +00:00
|
|
|
|
2012-05-30 14:14:59 +00:00
|
|
|
TRACE("iface %p, parameters %p.\n", iface, parameters);
|
2007-02-15 21:36:50 +00:00
|
|
|
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_lock();
|
2012-10-04 11:53:28 +00:00
|
|
|
wined3d_swapchain_get_desc(swapchain->wined3d_swapchain, &desc);
|
2018-03-22 07:48:32 +00:00
|
|
|
presentation_interval = d3dpresentationinterval_from_wined3dswapinterval(swapchain->swap_interval);
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_unlock();
|
2018-03-22 07:48:32 +00:00
|
|
|
present_parameters_from_wined3d_swapchain_desc(parameters, &desc, presentation_interval);
|
2007-02-15 21:36:50 +00:00
|
|
|
|
2012-10-04 11:53:28 +00:00
|
|
|
return D3D_OK;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2013-09-09 13:43:00 +00:00
|
|
|
static HRESULT WINAPI d3d9_swapchain_GetLastPresentCount(IDirect3DSwapChain9Ex *iface,
|
|
|
|
UINT *last_present_count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, last_present_count %p, stub!\n", iface, last_present_count);
|
|
|
|
|
|
|
|
if (last_present_count)
|
|
|
|
*last_present_count = 0;
|
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI d3d9_swapchain_GetPresentStatistics(IDirect3DSwapChain9Ex *iface,
|
|
|
|
D3DPRESENTSTATS *present_stats)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, present_stats %p, stub!\n", iface, present_stats);
|
|
|
|
|
|
|
|
if (present_stats)
|
|
|
|
memset(present_stats, 0, sizeof(*present_stats));
|
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI d3d9_swapchain_GetDisplayModeEx(IDirect3DSwapChain9Ex *iface,
|
|
|
|
D3DDISPLAYMODEEX *mode, D3DDISPLAYROTATION *rotation)
|
|
|
|
{
|
|
|
|
struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
|
|
|
|
struct wined3d_display_mode wined3d_mode;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
TRACE("iface %p, mode %p, rotation %p.\n", iface, mode, rotation);
|
|
|
|
|
|
|
|
if (mode->Size != sizeof(*mode))
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
|
|
|
|
wined3d_mutex_lock();
|
|
|
|
hr = wined3d_swapchain_get_display_mode(swapchain->wined3d_swapchain, &wined3d_mode,
|
|
|
|
(enum wined3d_display_rotation *)rotation);
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
mode->Width = wined3d_mode.width;
|
|
|
|
mode->Height = wined3d_mode.height;
|
|
|
|
mode->RefreshRate = wined3d_mode.refresh_rate;
|
|
|
|
mode->Format = d3dformat_from_wined3dformat(wined3d_mode.format_id);
|
2020-04-02 10:34:55 +00:00
|
|
|
mode->ScanLineOrdering = d3dscanlineordering_from_wined3d(wined3d_mode.scanline_ordering);
|
2013-09-09 13:43:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
2003-07-01 01:09:17 +00:00
|
|
|
|
2013-09-09 13:43:00 +00:00
|
|
|
static const struct IDirect3DSwapChain9ExVtbl d3d9_swapchain_vtbl =
|
2003-07-01 01:09:17 +00:00
|
|
|
{
|
2013-09-09 13:43:00 +00:00
|
|
|
/* IUnknown */
|
2012-05-30 14:14:59 +00:00
|
|
|
d3d9_swapchain_QueryInterface,
|
|
|
|
d3d9_swapchain_AddRef,
|
|
|
|
d3d9_swapchain_Release,
|
2013-09-09 13:43:00 +00:00
|
|
|
/* IDirect3DSwapChain9 */
|
2012-05-30 14:14:59 +00:00
|
|
|
d3d9_swapchain_Present,
|
|
|
|
d3d9_swapchain_GetFrontBufferData,
|
|
|
|
d3d9_swapchain_GetBackBuffer,
|
|
|
|
d3d9_swapchain_GetRasterStatus,
|
|
|
|
d3d9_swapchain_GetDisplayMode,
|
|
|
|
d3d9_swapchain_GetDevice,
|
|
|
|
d3d9_swapchain_GetPresentParameters,
|
2013-09-09 13:43:00 +00:00
|
|
|
/* IDirect3DSwapChain9Ex */
|
|
|
|
d3d9_swapchain_GetLastPresentCount,
|
|
|
|
d3d9_swapchain_GetPresentStatistics,
|
|
|
|
d3d9_swapchain_GetDisplayModeEx
|
2003-07-01 01:09:17 +00:00
|
|
|
};
|
|
|
|
|
2011-04-07 16:46:01 +00:00
|
|
|
static void STDMETHODCALLTYPE d3d9_swapchain_wined3d_object_released(void *parent)
|
|
|
|
{
|
2018-02-06 22:41:32 +00:00
|
|
|
heap_free(parent);
|
2011-04-07 16:46:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wined3d_parent_ops d3d9_swapchain_wined3d_parent_ops =
|
|
|
|
{
|
|
|
|
d3d9_swapchain_wined3d_object_released,
|
|
|
|
};
|
|
|
|
|
2020-10-09 09:56:53 +00:00
|
|
|
static void CDECL d3d9_swapchain_windowed_state_changed(struct wined3d_swapchain_state_parent *parent,
|
|
|
|
BOOL windowed)
|
|
|
|
{
|
|
|
|
TRACE("parent %p, windowed %d.\n", parent, windowed);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wined3d_swapchain_state_parent_ops d3d9_swapchain_state_parent_ops =
|
|
|
|
{
|
|
|
|
d3d9_swapchain_windowed_state_changed,
|
|
|
|
};
|
|
|
|
|
2012-05-30 14:14:59 +00:00
|
|
|
static HRESULT swapchain_init(struct d3d9_swapchain *swapchain, struct d3d9_device *device,
|
2018-03-22 07:48:32 +00:00
|
|
|
struct wined3d_swapchain_desc *desc, unsigned int swap_interval)
|
2009-12-20 19:41:36 +00:00
|
|
|
{
|
|
|
|
HRESULT hr;
|
2003-07-01 01:09:17 +00:00
|
|
|
|
2012-05-30 14:14:59 +00:00
|
|
|
swapchain->refcount = 1;
|
2013-09-09 13:43:00 +00:00
|
|
|
swapchain->IDirect3DSwapChain9Ex_iface.lpVtbl = &d3d9_swapchain_vtbl;
|
2020-10-09 09:56:53 +00:00
|
|
|
swapchain->state_parent.ops = &d3d9_swapchain_state_parent_ops;
|
2018-03-22 07:48:32 +00:00
|
|
|
swapchain->swap_interval = swap_interval;
|
2009-12-20 19:41:36 +00:00
|
|
|
|
2020-10-09 09:56:53 +00:00
|
|
|
if (FAILED(hr = wined3d_swapchain_create(device->wined3d_device, desc, &swapchain->state_parent,
|
|
|
|
swapchain, &d3d9_swapchain_wined3d_parent_ops, &swapchain->wined3d_swapchain)))
|
2009-12-20 19:41:36 +00:00
|
|
|
{
|
2022-09-19 03:57:13 +00:00
|
|
|
WARN("Failed to create wined3d swapchain, hr %#lx.\n", hr);
|
2009-12-20 19:41:36 +00:00
|
|
|
return hr;
|
2005-06-23 11:05:24 +00:00
|
|
|
}
|
2009-12-20 19:41:36 +00:00
|
|
|
|
2012-05-30 14:14:59 +00:00
|
|
|
swapchain->parent_device = &device->IDirect3DDevice9Ex_iface;
|
|
|
|
IDirect3DDevice9Ex_AddRef(swapchain->parent_device);
|
2009-12-20 19:41:36 +00:00
|
|
|
|
|
|
|
return D3D_OK;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
2012-04-10 20:06:19 +00:00
|
|
|
|
2012-07-02 12:45:57 +00:00
|
|
|
HRESULT d3d9_swapchain_create(struct d3d9_device *device, struct wined3d_swapchain_desc *desc,
|
2018-03-22 07:48:32 +00:00
|
|
|
unsigned int swap_interval, struct d3d9_swapchain **swapchain)
|
2012-04-10 20:06:19 +00:00
|
|
|
{
|
2012-05-30 14:14:59 +00:00
|
|
|
struct d3d9_swapchain *object;
|
2012-04-10 20:06:19 +00:00
|
|
|
HRESULT hr;
|
|
|
|
|
2018-02-06 22:41:32 +00:00
|
|
|
if (!(object = heap_alloc_zero(sizeof(*object))))
|
2012-04-10 20:06:19 +00:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
2018-03-22 07:48:32 +00:00
|
|
|
if (FAILED(hr = swapchain_init(object, device, desc, swap_interval)))
|
2012-04-10 20:06:19 +00:00
|
|
|
{
|
2022-09-19 03:57:13 +00:00
|
|
|
WARN("Failed to initialize swapchain, hr %#lx.\n", hr);
|
2018-02-06 22:41:32 +00:00
|
|
|
heap_free(object);
|
2012-04-10 20:06:19 +00:00
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Created swapchain %p.\n", object);
|
|
|
|
*swapchain = object;
|
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
}
|