2003-07-01 03:09:17 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DSwapChain9 implementation
|
|
|
|
*
|
|
|
|
* Copyright 2002-2003 Jason Edmeades
|
|
|
|
* Raphael Junqueira
|
2005-06-23 13:05:24 +02:00
|
|
|
* Copyright 2005 Oliver Stieber
|
2003-07-01 03:09:17 +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
|
2003-07-01 03:09:17 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "d3d9_private.h"
|
|
|
|
|
2005-06-23 13:05:24 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2012-04-10 22:06:20 +02:00
|
|
|
static inline IDirect3DSwapChain9Impl *impl_from_IDirect3DSwapChain9(IDirect3DSwapChain9 *iface)
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
2012-04-10 22:06:20 +02:00
|
|
|
return CONTAINING_RECORD(iface, IDirect3DSwapChain9Impl, IDirect3DSwapChain9_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDirect3DSwapChain9Impl_QueryInterface(IDirect3DSwapChain9 *iface, REFIID riid, void **out)
|
|
|
|
{
|
|
|
|
TRACE("iface %p, riid %s, out %p.\n", iface, debugstr_guid(riid), out);
|
2009-10-20 11:05:02 +02:00
|
|
|
|
2012-03-30 01:08:37 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_IDirect3DSwapChain9)
|
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
2008-11-02 23:49:40 +01:00
|
|
|
IDirect3DSwapChain9_AddRef(iface);
|
2012-04-10 22:06:20 +02:00
|
|
|
*out = iface;
|
2006-06-07 15:13:29 +02:00
|
|
|
return S_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-03-30 01:08:37 +02:00
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
|
|
|
|
2012-04-10 22:06:20 +02:00
|
|
|
*out = NULL;
|
2003-07-01 03:09:17 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2012-04-10 22:06:20 +02:00
|
|
|
static ULONG WINAPI IDirect3DSwapChain9Impl_AddRef(IDirect3DSwapChain9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DSwapChain9Impl *swapchain = impl_from_IDirect3DSwapChain9(iface);
|
|
|
|
ULONG ref = InterlockedIncrement(&swapchain->ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2009-10-20 11:05:02 +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)
|
|
|
|
{
|
2012-04-10 22:06:20 +02:00
|
|
|
if (swapchain->parentDevice)
|
|
|
|
IDirect3DDevice9Ex_AddRef(swapchain->parentDevice);
|
2011-04-07 18:46:01 +02:00
|
|
|
|
2011-04-11 20:55:17 +02:00
|
|
|
wined3d_mutex_lock();
|
2012-04-10 22:06:20 +02:00
|
|
|
wined3d_swapchain_incref(swapchain->wined3d_swapchain);
|
2011-04-11 20:55:17 +02:00
|
|
|
wined3d_mutex_unlock();
|
2011-04-07 18:46:01 +02:00
|
|
|
}
|
2006-12-18 00:17:31 +01:00
|
|
|
|
2005-01-24 12:31:45 +01:00
|
|
|
return ref;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-04-10 22:06:20 +02:00
|
|
|
static ULONG WINAPI IDirect3DSwapChain9Impl_Release(IDirect3DSwapChain9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DSwapChain9Impl *swapchain = impl_from_IDirect3DSwapChain9(iface);
|
|
|
|
ULONG ref = InterlockedDecrement(&swapchain->ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("%p decreasing refcount to %u.\n", iface, ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
if (ref == 0) {
|
2012-04-10 22:06:20 +02:00
|
|
|
IDirect3DDevice9Ex *parentDevice = swapchain->parentDevice;
|
2009-09-26 15:56:16 +02:00
|
|
|
|
2011-04-11 20:55:17 +02:00
|
|
|
wined3d_mutex_lock();
|
2012-04-10 22:06:20 +02:00
|
|
|
wined3d_swapchain_decref(swapchain->wined3d_swapchain);
|
2011-04-11 20:55:17 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-09-26 15:56:16 +02:00
|
|
|
|
|
|
|
/* Release the device last, as it may cause the device to be destroyed. */
|
|
|
|
if (parentDevice) IDirect3DDevice9Ex_Release(parentDevice);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DSwapChain9 parts follow: */
|
2012-04-10 22:06:20 +02:00
|
|
|
static HRESULT WINAPI DECLSPEC_HOTPATCH IDirect3DSwapChain9Impl_Present(IDirect3DSwapChain9 *iface,
|
|
|
|
const RECT *src_rect, const RECT *dst_rect, HWND dst_window_override,
|
|
|
|
const RGNDATA *dirty_region, DWORD flags)
|
|
|
|
{
|
|
|
|
IDirect3DSwapChain9Impl *swapchain = impl_from_IDirect3DSwapChain9(iface);
|
2009-03-23 08:30:16 +01:00
|
|
|
HRESULT hr;
|
|
|
|
|
2012-04-10 22:06:20 +02:00
|
|
|
TRACE("iface %p, src_rect %s, dst_rect %s, dst_window_override %p, dirty_region %p, flags %#x.\n",
|
|
|
|
iface, wine_dbgstr_rect(src_rect), wine_dbgstr_rect(dst_rect),
|
|
|
|
dst_window_override, dirty_region, flags);
|
2009-03-23 08:30:16 +01:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2012-04-10 22:06:20 +02:00
|
|
|
hr = wined3d_swapchain_present(swapchain->wined3d_swapchain, src_rect,
|
|
|
|
dst_rect, dst_window_override, dirty_region, flags);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-23 08:30:16 +01:00
|
|
|
|
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-07-07 10:54:02 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSwapChain9Impl_GetFrontBufferData(IDirect3DSwapChain9 *iface,
|
|
|
|
IDirect3DSurface9 *pDestSurface)
|
|
|
|
{
|
2012-04-10 22:06:20 +02:00
|
|
|
IDirect3DSwapChain9Impl *swapchain = impl_from_IDirect3DSwapChain9(iface);
|
2011-07-07 10:54:02 +02:00
|
|
|
IDirect3DSurface9Impl *dst = unsafe_impl_from_IDirect3DSurface9(pDestSurface);
|
2007-06-14 11:48:59 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, surface %p.\n", iface, pDestSurface);
|
2007-06-14 11:48:59 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2012-04-10 22:06:20 +02:00
|
|
|
hr = wined3d_swapchain_get_front_buffer_data(swapchain->wined3d_swapchain, dst->wined3d_surface);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-14 11:48:59 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSwapChain9Impl_GetBackBuffer(IDirect3DSwapChain9 *iface,
|
|
|
|
UINT iBackBuffer, D3DBACKBUFFER_TYPE Type, IDirect3DSurface9 **ppBackBuffer)
|
|
|
|
{
|
2012-04-10 22:06:20 +02:00
|
|
|
IDirect3DSwapChain9Impl *swapchain = impl_from_IDirect3DSwapChain9(iface);
|
2011-04-29 13:03:41 +02:00
|
|
|
struct wined3d_surface *wined3d_surface = NULL;
|
2012-04-23 21:24:55 +02:00
|
|
|
IDirect3DSurface9Impl *surface_impl;
|
2010-08-31 18:41:40 +02:00
|
|
|
HRESULT hr;
|
2005-06-23 13:05:24 +02:00
|
|
|
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("iface %p, backbuffer_idx %u, backbuffer_type %#x, backbuffer %p.\n",
|
|
|
|
iface, iBackBuffer, Type, ppBackBuffer);
|
2005-06-23 13:05:24 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2012-04-10 22:06:20 +02:00
|
|
|
hr = wined3d_swapchain_get_back_buffer(swapchain->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
|
|
|
{
|
2012-04-23 21:24:55 +02:00
|
|
|
surface_impl = wined3d_surface_get_parent(wined3d_surface);
|
|
|
|
*ppBackBuffer = &surface_impl->IDirect3DSurface9_iface;
|
2010-08-31 18:41:40 +02:00
|
|
|
IDirect3DSurface9_AddRef(*ppBackBuffer);
|
2011-04-29 13:03:41 +02:00
|
|
|
wined3d_surface_decref(wined3d_surface);
|
2005-06-23 13:05:24 +02:00
|
|
|
}
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2006-05-24 11:34:30 +02:00
|
|
|
/* Do not touch the **ppBackBuffer pointer otherwise! (see device test) */
|
2010-08-31 18:41:40 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-04-10 22:06:20 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSwapChain9Impl_GetRasterStatus(IDirect3DSwapChain9 *iface,
|
|
|
|
D3DRASTER_STATUS *raster_status)
|
|
|
|
{
|
|
|
|
IDirect3DSwapChain9Impl *swapchain = impl_from_IDirect3DSwapChain9(iface);
|
2007-06-14 11:48:59 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
2012-04-10 22:06:20 +02:00
|
|
|
TRACE("iface %p, raster_status %p.\n", iface, raster_status);
|
2007-06-14 11:48:59 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2012-04-10 22:06:20 +02:00
|
|
|
hr = wined3d_swapchain_get_raster_status(swapchain->wined3d_swapchain,
|
|
|
|
(struct wined3d_raster_status *)raster_status);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-14 11:48:59 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-04-10 22:06:20 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSwapChain9Impl_GetDisplayMode(IDirect3DSwapChain9 *iface, D3DDISPLAYMODE *mode)
|
|
|
|
{
|
|
|
|
IDirect3DSwapChain9Impl *swapchain = impl_from_IDirect3DSwapChain9(iface);
|
2007-06-14 11:48:59 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
2012-04-10 22:06:20 +02:00
|
|
|
TRACE("iface %p, mode %p.\n", iface, mode);
|
2007-06-14 11:48:59 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2012-04-10 22:06:20 +02:00
|
|
|
hr = wined3d_swapchain_get_display_mode(swapchain->wined3d_swapchain, (struct wined3d_display_mode *)mode);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-02-19 16:59:42 +01:00
|
|
|
|
2012-04-10 22:06:20 +02:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
mode->Format = d3dformat_from_wined3dformat(mode->Format);
|
2009-02-19 16:59:42 +01:00
|
|
|
|
2007-06-14 11:48:59 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2009-12-04 11:50:47 +01:00
|
|
|
static HRESULT WINAPI IDirect3DSwapChain9Impl_GetDevice(IDirect3DSwapChain9 *iface, IDirect3DDevice9 **device)
|
|
|
|
{
|
2012-04-10 22:06:20 +02:00
|
|
|
IDirect3DSwapChain9Impl *swapchain = impl_from_IDirect3DSwapChain9(iface);
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2009-12-04 11:50:47 +01:00
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
2005-06-23 13:05:24 +02:00
|
|
|
|
2012-04-10 22:06:20 +02:00
|
|
|
*device = (IDirect3DDevice9 *)swapchain->parentDevice;
|
2009-12-04 11:50:47 +01:00
|
|
|
IDirect3DDevice9_AddRef(*device);
|
2009-08-26 10:18:09 +02:00
|
|
|
|
2009-12-04 11:50:47 +01:00
|
|
|
TRACE("Returning device %p.\n", *device);
|
|
|
|
|
|
|
|
return D3D_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-12-02 08:15:52 +01:00
|
|
|
static HRESULT WINAPI IDirect3DSwapChain9Impl_GetPresentParameters(IDirect3DSwapChain9 *iface,
|
|
|
|
D3DPRESENT_PARAMETERS *pPresentationParameters)
|
|
|
|
{
|
2012-04-10 22:06:20 +02:00
|
|
|
IDirect3DSwapChain9Impl *swapchain = impl_from_IDirect3DSwapChain9(iface);
|
2011-12-02 08:15:52 +01:00
|
|
|
struct wined3d_swapchain_desc desc;
|
2007-02-15 22:36:50 +01:00
|
|
|
HRESULT hr;
|
|
|
|
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("iface %p, parameters %p.\n", iface, pPresentationParameters);
|
2007-02-15 22:36:50 +01:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2012-04-10 22:06:20 +02:00
|
|
|
hr = wined3d_swapchain_get_desc(swapchain->wined3d_swapchain, &desc);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2007-02-15 22:36:50 +01:00
|
|
|
|
2011-12-02 08:15:52 +01:00
|
|
|
pPresentationParameters->BackBufferWidth = desc.backbuffer_width;
|
|
|
|
pPresentationParameters->BackBufferHeight = desc.backbuffer_height;
|
|
|
|
pPresentationParameters->BackBufferFormat = d3dformat_from_wined3dformat(desc.backbuffer_format);
|
|
|
|
pPresentationParameters->BackBufferCount = desc.backbuffer_count;
|
|
|
|
pPresentationParameters->MultiSampleType = desc.multisample_type;
|
|
|
|
pPresentationParameters->MultiSampleQuality = desc.multisample_quality;
|
|
|
|
pPresentationParameters->SwapEffect = desc.swap_effect;
|
|
|
|
pPresentationParameters->hDeviceWindow = desc.device_window;
|
|
|
|
pPresentationParameters->Windowed = desc.windowed;
|
|
|
|
pPresentationParameters->EnableAutoDepthStencil = desc.enable_auto_depth_stencil;
|
|
|
|
pPresentationParameters->AutoDepthStencilFormat = d3dformat_from_wined3dformat(desc.auto_depth_stencil_format);
|
|
|
|
pPresentationParameters->Flags = desc.flags;
|
|
|
|
pPresentationParameters->FullScreen_RefreshRateInHz = desc.refresh_rate;
|
|
|
|
pPresentationParameters->PresentationInterval = desc.swap_interval;
|
2007-02-15 22:36:50 +01:00
|
|
|
|
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static const IDirect3DSwapChain9Vtbl Direct3DSwapChain9_Vtbl =
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
|
|
|
IDirect3DSwapChain9Impl_QueryInterface,
|
|
|
|
IDirect3DSwapChain9Impl_AddRef,
|
|
|
|
IDirect3DSwapChain9Impl_Release,
|
|
|
|
IDirect3DSwapChain9Impl_Present,
|
|
|
|
IDirect3DSwapChain9Impl_GetFrontBufferData,
|
|
|
|
IDirect3DSwapChain9Impl_GetBackBuffer,
|
|
|
|
IDirect3DSwapChain9Impl_GetRasterStatus,
|
|
|
|
IDirect3DSwapChain9Impl_GetDisplayMode,
|
|
|
|
IDirect3DSwapChain9Impl_GetDevice,
|
|
|
|
IDirect3DSwapChain9Impl_GetPresentParameters
|
|
|
|
};
|
|
|
|
|
2011-04-07 18:46:01 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d9_swapchain_wined3d_object_released(void *parent)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wined3d_parent_ops d3d9_swapchain_wined3d_parent_ops =
|
|
|
|
{
|
|
|
|
d3d9_swapchain_wined3d_object_released,
|
|
|
|
};
|
|
|
|
|
2012-04-10 22:06:19 +02:00
|
|
|
static HRESULT swapchain_init(IDirect3DSwapChain9Impl *swapchain, IDirect3DDevice9Impl *device,
|
2009-12-20 20:41:36 +01:00
|
|
|
D3DPRESENT_PARAMETERS *present_parameters)
|
|
|
|
{
|
2011-12-02 08:15:52 +01:00
|
|
|
struct wined3d_swapchain_desc desc;
|
2009-12-20 20:41:36 +01:00
|
|
|
HRESULT hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2009-12-20 20:41:36 +01:00
|
|
|
swapchain->ref = 1;
|
2012-04-10 22:06:20 +02:00
|
|
|
swapchain->IDirect3DSwapChain9_iface.lpVtbl = &Direct3DSwapChain9_Vtbl;
|
2009-12-20 20:41:36 +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 = present_parameters->MultiSampleQuality;
|
|
|
|
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->PresentationInterval;
|
|
|
|
desc.auto_restore_display_mode = TRUE;
|
2005-06-23 13:05:24 +02:00
|
|
|
|
2009-08-26 10:18:09 +02: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, &d3d9_swapchain_wined3d_parent_ops,
|
2011-04-13 19:14:31 +02:00
|
|
|
&swapchain->wined3d_swapchain);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2007-02-15 22:36:50 +01:00
|
|
|
|
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->MultiSampleQuality = desc.multisample_quality;
|
|
|
|
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->PresentationInterval = desc.swap_interval;
|
2009-12-20 20:41:36 +01:00
|
|
|
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to create wined3d swapchain, hr %#x.\n", hr);
|
|
|
|
return hr;
|
2005-06-23 13:05:24 +02:00
|
|
|
}
|
2009-12-20 20:41:36 +01:00
|
|
|
|
2011-04-24 21:34:30 +02:00
|
|
|
swapchain->parentDevice = &device->IDirect3DDevice9Ex_iface;
|
2009-12-20 20:41:36 +01:00
|
|
|
IDirect3DDevice9Ex_AddRef(swapchain->parentDevice);
|
|
|
|
|
|
|
|
return D3D_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
2012-04-10 22:06:19 +02:00
|
|
|
|
|
|
|
HRESULT d3d9_swapchain_create(IDirect3DDevice9Impl *device, D3DPRESENT_PARAMETERS *present_parameters,
|
|
|
|
IDirect3DSwapChain9Impl **swapchain)
|
|
|
|
{
|
|
|
|
IDirect3DSwapChain9Impl *object;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
if (!(object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object))))
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate swapchain memory.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FAILED(hr = swapchain_init(object, device, present_parameters)))
|
|
|
|
{
|
|
|
|
WARN("Failed to initialize swapchain, hr %#x.\n", hr);
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Created swapchain %p.\n", object);
|
|
|
|
*swapchain = object;
|
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
}
|