2002-09-28 00:46:16 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DSwapChain8 implementation
|
|
|
|
*
|
2006-02-25 13:15:08 +01:00
|
|
|
* Copyright 2005 Oliver Stieber
|
2002-09-28 00:46:16 +02: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 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-09-28 00:46:16 +02:00
|
|
|
*/
|
|
|
|
|
2003-04-12 02:06:42 +02:00
|
|
|
#include "config.h"
|
2002-09-28 00:46:16 +02:00
|
|
|
#include "d3d8_private.h"
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d8);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2011-01-31 01:40:25 +01:00
|
|
|
static inline IDirect3DSwapChain8Impl *impl_from_IDirect3DSwapChain8(IDirect3DSwapChain8 *iface)
|
2002-09-28 00:46:16 +02:00
|
|
|
{
|
2011-01-31 01:40:25 +01:00
|
|
|
return CONTAINING_RECORD(iface, IDirect3DSwapChain8Impl, IDirect3DSwapChain8_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDirect3DSwapChain8Impl_QueryInterface(IDirect3DSwapChain8 *iface,
|
|
|
|
REFIID riid, void **ppobj)
|
|
|
|
{
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), ppobj);
|
|
|
|
|
2012-03-14 22:04:31 +01:00
|
|
|
if (IsEqualGUID(riid, &IID_IDirect3DSwapChain8)
|
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
2006-02-25 13:15:08 +01:00
|
|
|
IUnknown_AddRef(iface);
|
2012-03-14 22:04:31 +01:00
|
|
|
*ppobj = iface;
|
2006-06-07 15:13:29 +02:00
|
|
|
return S_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2012-03-14 22:04:31 +01:00
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
|
|
|
|
2006-06-07 15:13:29 +02:00
|
|
|
*ppobj = NULL;
|
2002-09-28 00:46:16 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2011-01-31 01:40:25 +01:00
|
|
|
static ULONG WINAPI IDirect3DSwapChain8Impl_AddRef(IDirect3DSwapChain8 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DSwapChain8Impl *This = impl_from_IDirect3DSwapChain8(iface);
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("%p increasing refcount to %u.\n", iface, ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2011-04-07 18:46:01 +02:00
|
|
|
if (ref == 1)
|
|
|
|
{
|
|
|
|
if (This->parentDevice)
|
|
|
|
IDirect3DDevice8_AddRef(This->parentDevice);
|
|
|
|
wined3d_mutex_lock();
|
2011-04-13 19:14:31 +02:00
|
|
|
wined3d_swapchain_incref(This->wined3d_swapchain);
|
2011-04-07 18:46:01 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
}
|
|
|
|
|
2005-01-24 12:31:45 +01:00
|
|
|
return ref;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-31 01:40:25 +01:00
|
|
|
static ULONG WINAPI IDirect3DSwapChain8Impl_Release(IDirect3DSwapChain8 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DSwapChain8Impl *This = impl_from_IDirect3DSwapChain8(iface);
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("%p decreasing refcount to %u.\n", iface, ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2011-04-07 18:46:01 +02:00
|
|
|
if (!ref)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8 *parentDevice = This->parentDevice;
|
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-04-13 19:14:31 +02:00
|
|
|
wined3d_swapchain_decref(This->wined3d_swapchain);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2011-04-07 18:46:01 +02:00
|
|
|
if (parentDevice)
|
|
|
|
IDirect3DDevice8_Release(parentDevice);
|
2003-06-05 00:55:19 +02:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2011-01-31 01:40:25 +01:00
|
|
|
static HRESULT WINAPI IDirect3DSwapChain8Impl_Present(IDirect3DSwapChain8 *iface,
|
|
|
|
const RECT *pSourceRect, const RECT *pDestRect, HWND hDestWindowOverride,
|
|
|
|
const RGNDATA *pDirtyRegion)
|
|
|
|
{
|
|
|
|
IDirect3DSwapChain8Impl *This = impl_from_IDirect3DSwapChain8(iface);
|
2007-05-26 22:57:43 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, src_rect %p, dst_rect %p, dst_window_override %p, dirty_region %p.\n",
|
|
|
|
iface, pSourceRect, pDestRect, hDestWindowOverride, pDirtyRegion);
|
2007-05-26 22:57:43 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-04-13 19:14:31 +02:00
|
|
|
hr = wined3d_swapchain_present(This->wined3d_swapchain, pSourceRect,
|
|
|
|
pDestRect, hDestWindowOverride, pDirtyRegion, 0);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 22:57:43 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-06-05 00:55:19 +02:00
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSwapChain8Impl_GetBackBuffer(IDirect3DSwapChain8 *iface,
|
|
|
|
UINT iBackBuffer, D3DBACKBUFFER_TYPE Type, IDirect3DSurface8 **ppBackBuffer)
|
|
|
|
{
|
2011-01-31 01:40:25 +01:00
|
|
|
IDirect3DSwapChain8Impl *This = impl_from_IDirect3DSwapChain8(iface);
|
2011-04-29 13:03:41 +02:00
|
|
|
struct wined3d_surface *wined3d_surface = NULL;
|
2010-08-31 18:41:40 +02:00
|
|
|
HRESULT hr;
|
2003-06-05 00:55:19 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, backbuffer_idx %u, backbuffer_type %#x, backbuffer %p.\n",
|
|
|
|
iface, iBackBuffer, Type, ppBackBuffer);
|
2003-06-05 00:55:19 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-04-13 19:14:31 +02:00
|
|
|
hr = wined3d_swapchain_get_back_buffer(This->wined3d_swapchain,
|
2012-01-06 11:20:06 +01:00
|
|
|
iBackBuffer, (enum wined3d_backbuffer_type)Type, &wined3d_surface);
|
2011-04-29 13:03:41 +02:00
|
|
|
if (SUCCEEDED(hr) && wined3d_surface)
|
2010-08-31 18:41:40 +02:00
|
|
|
{
|
2011-04-29 13:03:41 +02:00
|
|
|
*ppBackBuffer = wined3d_surface_get_parent(wined3d_surface);
|
2010-08-31 18:41:40 +02:00
|
|
|
IDirect3DSurface8_AddRef(*ppBackBuffer);
|
2011-04-29 13:03:41 +02:00
|
|
|
wined3d_surface_decref(wined3d_surface);
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2009-12-20 20:41:35 +01:00
|
|
|
static const IDirect3DSwapChain8Vtbl Direct3DSwapChain8_Vtbl =
|
2002-09-28 00:46:16 +02:00
|
|
|
{
|
|
|
|
IDirect3DSwapChain8Impl_QueryInterface,
|
|
|
|
IDirect3DSwapChain8Impl_AddRef,
|
|
|
|
IDirect3DSwapChain8Impl_Release,
|
|
|
|
IDirect3DSwapChain8Impl_Present,
|
|
|
|
IDirect3DSwapChain8Impl_GetBackBuffer
|
|
|
|
};
|
2009-12-20 20:41:35 +01:00
|
|
|
|
2011-04-07 18:46:01 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d8_swapchain_wined3d_object_released(void *parent)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wined3d_parent_ops d3d8_swapchain_wined3d_parent_ops =
|
|
|
|
{
|
|
|
|
d3d8_swapchain_wined3d_object_released,
|
|
|
|
};
|
|
|
|
|
2009-12-20 20:41:35 +01:00
|
|
|
HRESULT swapchain_init(IDirect3DSwapChain8Impl *swapchain, IDirect3DDevice8Impl *device,
|
|
|
|
D3DPRESENT_PARAMETERS *present_parameters)
|
|
|
|
{
|
2011-12-02 08:15:52 +01:00
|
|
|
struct wined3d_swapchain_desc desc;
|
2009-12-20 20:41:35 +01:00
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
swapchain->ref = 1;
|
2011-01-31 01:40:25 +01:00
|
|
|
swapchain->IDirect3DSwapChain8_iface.lpVtbl = &Direct3DSwapChain8_Vtbl;
|
2009-12-20 20:41:35 +01:00
|
|
|
|
2011-12-02 08:15:52 +01:00
|
|
|
desc.backbuffer_width = present_parameters->BackBufferWidth;
|
|
|
|
desc.backbuffer_height = present_parameters->BackBufferHeight;
|
|
|
|
desc.backbuffer_format = wined3dformat_from_d3dformat(present_parameters->BackBufferFormat);
|
|
|
|
desc.backbuffer_count = max(1, present_parameters->BackBufferCount);
|
|
|
|
desc.multisample_type = present_parameters->MultiSampleType;
|
|
|
|
desc.multisample_quality = 0; /* d3d9 only */
|
|
|
|
desc.swap_effect = present_parameters->SwapEffect;
|
|
|
|
desc.device_window = present_parameters->hDeviceWindow;
|
|
|
|
desc.windowed = present_parameters->Windowed;
|
|
|
|
desc.enable_auto_depth_stencil = present_parameters->EnableAutoDepthStencil;
|
|
|
|
desc.auto_depth_stencil_format = wined3dformat_from_d3dformat(present_parameters->AutoDepthStencilFormat);
|
|
|
|
desc.flags = present_parameters->Flags;
|
|
|
|
desc.refresh_rate = present_parameters->FullScreen_RefreshRateInHz;
|
|
|
|
desc.swap_interval = present_parameters->FullScreen_PresentationInterval;
|
|
|
|
desc.auto_restore_display_mode = TRUE;
|
2009-12-20 20:41:35 +01:00
|
|
|
|
|
|
|
wined3d_mutex_lock();
|
2011-12-02 08:15:52 +01:00
|
|
|
hr = wined3d_swapchain_create(device->wined3d_device, &desc,
|
2012-01-20 00:36:28 +01:00
|
|
|
WINED3D_SURFACE_TYPE_OPENGL, swapchain, &d3d8_swapchain_wined3d_parent_ops,
|
2011-04-13 19:14:31 +02:00
|
|
|
&swapchain->wined3d_swapchain);
|
2009-12-20 20:41:35 +01:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2011-12-02 08:15:52 +01:00
|
|
|
present_parameters->BackBufferWidth = desc.backbuffer_width;
|
|
|
|
present_parameters->BackBufferHeight = desc.backbuffer_height;
|
|
|
|
present_parameters->BackBufferFormat = d3dformat_from_wined3dformat(desc.backbuffer_format);
|
|
|
|
present_parameters->BackBufferCount = desc.backbuffer_count;
|
|
|
|
present_parameters->MultiSampleType = desc.multisample_type;
|
|
|
|
present_parameters->SwapEffect = desc.swap_effect;
|
|
|
|
present_parameters->hDeviceWindow = desc.device_window;
|
|
|
|
present_parameters->Windowed = desc.windowed;
|
|
|
|
present_parameters->EnableAutoDepthStencil = desc.enable_auto_depth_stencil;
|
|
|
|
present_parameters->AutoDepthStencilFormat = d3dformat_from_wined3dformat(desc.auto_depth_stencil_format);
|
|
|
|
present_parameters->Flags = desc.flags;
|
|
|
|
present_parameters->FullScreen_RefreshRateInHz = desc.refresh_rate;
|
|
|
|
present_parameters->FullScreen_PresentationInterval = desc.swap_interval;
|
2009-12-20 20:41:35 +01:00
|
|
|
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to create wined3d swapchain, hr %#x.\n", hr);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2011-01-28 01:17:54 +01:00
|
|
|
swapchain->parentDevice = &device->IDirect3DDevice8_iface;
|
2009-12-20 20:41:35 +01:00
|
|
|
IDirect3DDevice8_AddRef(swapchain->parentDevice);
|
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
}
|