2002-09-28 00:46:16 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DSurface8 implementation
|
|
|
|
*
|
2006-02-14 17:13:19 +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-14 17:13:19 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d8);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2011-06-21 19:50:07 +02:00
|
|
|
static inline IDirect3DSurface8Impl *impl_from_IDirect3DSurface8(IDirect3DSurface8 *iface)
|
|
|
|
{
|
2011-07-05 00:41:12 +02:00
|
|
|
return CONTAINING_RECORD(iface, IDirect3DSurface8Impl, IDirect3DSurface8_iface);
|
2011-06-21 19:50:07 +02:00
|
|
|
}
|
|
|
|
|
2006-02-14 17:13:19 +01:00
|
|
|
/* IDirect3DSurface8 IUnknown parts follow: */
|
2011-07-05 00:41:12 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_QueryInterface(IDirect3DSurface8 *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-25 20:56:27 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_IDirect3DSurface8)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DResource8)
|
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
2006-02-14 17:13:19 +01:00
|
|
|
IUnknown_AddRef(iface);
|
2012-03-25 20:56:27 +02:00
|
|
|
*ppobj = iface;
|
2006-06-07 15:13:29 +02:00
|
|
|
return S_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2012-03-25 20:56:27 +02: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-07-05 00:41:12 +02:00
|
|
|
static ULONG WINAPI IDirect3DSurface8Impl_AddRef(IDirect3DSurface8 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DSurface8Impl *This = impl_from_IDirect3DSurface8(iface);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p.\n", iface);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2006-12-05 00:29:37 +01:00
|
|
|
if (This->forwardReference) {
|
|
|
|
/* Forward refcounting */
|
|
|
|
TRACE("(%p) : Forwarding to %p\n", This, This->forwardReference);
|
|
|
|
return IUnknown_AddRef(This->forwardReference);
|
2006-03-06 19:28:03 +01:00
|
|
|
} else {
|
|
|
|
/* No container, handle our own refcounting */
|
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("%p increasing refcount to %u.\n", iface, ref);
|
|
|
|
|
2009-09-16 08:37:15 +02:00
|
|
|
if (ref == 1)
|
|
|
|
{
|
|
|
|
if (This->parentDevice) IUnknown_AddRef(This->parentDevice);
|
|
|
|
wined3d_mutex_lock();
|
2011-04-29 13:03:41 +02:00
|
|
|
wined3d_surface_incref(This->wined3d_surface);
|
2009-09-16 08:37:15 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
}
|
2009-10-19 10:12:20 +02:00
|
|
|
|
2006-03-06 19:28:03 +01:00
|
|
|
return ref;
|
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-07-05 00:41:12 +02:00
|
|
|
static ULONG WINAPI IDirect3DSurface8Impl_Release(IDirect3DSurface8 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DSurface8Impl *This = impl_from_IDirect3DSurface8(iface);
|
2006-03-06 19:28:03 +01:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p.\n", iface);
|
2006-03-06 19:28:03 +01:00
|
|
|
|
2006-12-05 00:29:37 +01:00
|
|
|
if (This->forwardReference) {
|
|
|
|
/* Forward refcounting */
|
|
|
|
TRACE("(%p) : Forwarding to %p\n", This, This->forwardReference);
|
|
|
|
return IUnknown_Release(This->forwardReference);
|
2006-03-06 19:28:03 +01:00
|
|
|
} else {
|
|
|
|
/* No container, handle our own refcounting */
|
|
|
|
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
|
|
|
|
2006-12-14 01:55:48 +01:00
|
|
|
if (ref == 0) {
|
2009-09-28 18:50:15 +02:00
|
|
|
IDirect3DDevice8 *parentDevice = This->parentDevice;
|
|
|
|
|
2006-12-14 01:55:48 +01:00
|
|
|
/* Implicit surfaces are destroyed with the device, not if refcount reaches 0. */
|
2009-09-16 08:37:15 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-04-29 13:03:41 +02:00
|
|
|
wined3d_surface_decref(This->wined3d_surface);
|
2009-09-16 08:37:15 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-09-28 18:50:15 +02:00
|
|
|
|
|
|
|
if (parentDevice) IDirect3DDevice8_Release(parentDevice);
|
2006-03-06 19:28:03 +01:00
|
|
|
}
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2006-03-06 19:28:03 +01:00
|
|
|
return ref;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-14 17:13:19 +01:00
|
|
|
/* IDirect3DSurface8 IDirect3DResource8 Interface follow: */
|
2011-07-05 00:41:12 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_GetDevice(IDirect3DSurface8 *iface,
|
|
|
|
IDirect3DDevice8 **device)
|
2009-12-04 11:50:46 +01:00
|
|
|
{
|
2011-07-05 00:41:12 +02:00
|
|
|
IDirect3DSurface8Impl *This = impl_from_IDirect3DSurface8(iface);
|
2009-10-19 10:12:20 +02:00
|
|
|
|
2009-12-04 11:50:46 +01:00
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
2007-05-26 20:24:16 +02:00
|
|
|
|
2009-12-07 11:08:36 +01:00
|
|
|
if (This->forwardReference)
|
|
|
|
{
|
|
|
|
IDirect3DResource8 *resource;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
hr = IUnknown_QueryInterface(This->forwardReference, &IID_IDirect3DResource8, (void **)&resource);
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = IDirect3DResource8_GetDevice(resource, device);
|
|
|
|
IDirect3DResource8_Release(resource);
|
|
|
|
|
|
|
|
TRACE("Returning device %p.\n", *device);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2011-09-15 16:33:41 +02:00
|
|
|
*device = This->parentDevice;
|
2009-12-04 11:50:46 +01:00
|
|
|
IDirect3DDevice8_AddRef(*device);
|
|
|
|
|
|
|
|
TRACE("Returning device %p.\n", *device);
|
2009-08-25 08:17:14 +02:00
|
|
|
|
2009-12-04 11:50:46 +01:00
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2011-06-21 19:50:07 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_SetPrivateData(IDirect3DSurface8 *iface, REFGUID guid,
|
|
|
|
const void *data, DWORD data_size, DWORD flags)
|
|
|
|
{
|
|
|
|
IDirect3DSurface8Impl *surface = impl_from_IDirect3DSurface8(iface);
|
|
|
|
struct wined3d_resource *resource;
|
2007-05-26 20:24:16 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data %p, data_size %u, flags %#x.\n",
|
2011-06-21 19:50:07 +02:00
|
|
|
iface, debugstr_guid(guid), data, data_size, flags);
|
2007-05-26 20:24:16 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-06-21 19:50:07 +02:00
|
|
|
resource = wined3d_surface_get_resource(surface->wined3d_surface);
|
|
|
|
hr = wined3d_resource_set_private_data(resource, guid, data, data_size, flags);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:24:16 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2011-06-21 19:50:07 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_GetPrivateData(IDirect3DSurface8 *iface, REFGUID guid,
|
|
|
|
void *data, DWORD *data_size)
|
|
|
|
{
|
|
|
|
IDirect3DSurface8Impl *surface = impl_from_IDirect3DSurface8(iface);
|
|
|
|
struct wined3d_resource *resource;
|
2007-05-26 20:24:16 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data %p, data_size %p.\n",
|
2011-06-21 19:50:07 +02:00
|
|
|
iface, debugstr_guid(guid), data, data_size);
|
2007-05-26 20:24:16 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-06-21 19:50:07 +02:00
|
|
|
resource = wined3d_surface_get_resource(surface->wined3d_surface);
|
|
|
|
hr = wined3d_resource_get_private_data(resource, guid, data, data_size);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:24:16 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2011-06-21 19:50:07 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_FreePrivateData(IDirect3DSurface8 *iface, REFGUID guid)
|
|
|
|
{
|
|
|
|
IDirect3DSurface8Impl *surface = impl_from_IDirect3DSurface8(iface);
|
|
|
|
struct wined3d_resource *resource;
|
2007-05-26 20:24:16 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
2011-06-21 19:50:07 +02:00
|
|
|
TRACE("iface %p, guid %s.\n", iface, debugstr_guid(guid));
|
2007-05-26 20:24:16 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-06-21 19:50:07 +02:00
|
|
|
resource = wined3d_surface_get_resource(surface->wined3d_surface);
|
|
|
|
hr = wined3d_resource_free_private_data(resource, guid);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:24:16 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2006-02-14 17:13:19 +01:00
|
|
|
/* IDirect3DSurface8 Interface follow: */
|
2011-07-05 00:41:12 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_GetContainer(IDirect3DSurface8 *iface, REFIID riid,
|
|
|
|
void **ppContainer)
|
|
|
|
{
|
|
|
|
IDirect3DSurface8Impl *This = impl_from_IDirect3DSurface8(iface);
|
2003-01-15 00:05:39 +01:00
|
|
|
HRESULT res;
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, riid %s, container %p.\n", iface, debugstr_guid(riid), ppContainer);
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2006-12-18 00:17:38 +01:00
|
|
|
if (!This->container) return E_NOINTERFACE;
|
|
|
|
|
|
|
|
res = IUnknown_QueryInterface(This->container, riid, ppContainer);
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2006-12-18 00:17:38 +01:00
|
|
|
TRACE("(%p) : returning %p\n", This, *ppContainer);
|
2003-01-15 00:05:39 +01:00
|
|
|
return res;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2011-03-08 19:41:05 +01:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_GetDesc(IDirect3DSurface8 *iface, D3DSURFACE_DESC *desc)
|
|
|
|
{
|
2011-07-05 00:41:12 +02:00
|
|
|
IDirect3DSurface8Impl *This = impl_from_IDirect3DSurface8(iface);
|
2011-03-08 19:41:05 +01:00
|
|
|
struct wined3d_resource_desc wined3d_desc;
|
2011-03-10 19:07:08 +01:00
|
|
|
struct wined3d_resource *wined3d_resource;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
2011-03-08 19:41:05 +01:00
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
2006-02-14 17:13:19 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-04-29 13:03:41 +02:00
|
|
|
wined3d_resource = wined3d_surface_get_resource(This->wined3d_surface);
|
2011-03-10 19:07:08 +01:00
|
|
|
wined3d_resource_get_desc(wined3d_resource, &wined3d_desc);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-02-19 16:59:41 +01:00
|
|
|
|
2011-03-08 19:41:05 +01:00
|
|
|
desc->Format = d3dformat_from_wined3dformat(wined3d_desc.format);
|
|
|
|
desc->Type = wined3d_desc.resource_type;
|
2012-01-10 20:36:59 +01:00
|
|
|
desc->Usage = wined3d_desc.usage & WINED3DUSAGE_MASK;
|
2011-03-08 19:41:05 +01:00
|
|
|
desc->Pool = wined3d_desc.pool;
|
|
|
|
desc->Size = wined3d_desc.size;
|
|
|
|
desc->MultiSampleType = wined3d_desc.multisample_type;
|
|
|
|
desc->Width = wined3d_desc.width;
|
|
|
|
desc->Height = wined3d_desc.height;
|
2009-02-19 16:59:41 +01:00
|
|
|
|
2010-09-08 11:24:47 +02:00
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2011-07-05 00:41:12 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_LockRect(IDirect3DSurface8 *iface,
|
2012-04-12 22:49:04 +02:00
|
|
|
D3DLOCKED_RECT *locked_rect, const RECT *rect, DWORD flags)
|
2011-07-05 00:41:12 +02:00
|
|
|
{
|
|
|
|
IDirect3DSurface8Impl *This = impl_from_IDirect3DSurface8(iface);
|
2012-04-12 22:49:04 +02:00
|
|
|
struct wined3d_map_desc map_desc;
|
2007-05-26 20:24:16 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
2012-04-12 22:49:04 +02:00
|
|
|
TRACE("iface %p, locked_rect %p, rect %s, flags %#x.\n",
|
|
|
|
iface, locked_rect, wine_dbgstr_rect(rect), flags);
|
2007-05-03 20:58:48 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2012-04-12 22:49:04 +02:00
|
|
|
if (rect)
|
|
|
|
{
|
2007-05-03 20:58:48 +02:00
|
|
|
D3DSURFACE_DESC desc;
|
|
|
|
IDirect3DSurface8_GetDesc(iface, &desc);
|
|
|
|
|
2012-04-12 22:49:04 +02:00
|
|
|
if ((rect->left < 0)
|
|
|
|
|| (rect->top < 0)
|
|
|
|
|| (rect->left >= rect->right)
|
|
|
|
|| (rect->top >= rect->bottom)
|
|
|
|
|| (rect->right > desc.Width)
|
|
|
|
|| (rect->bottom > desc.Height))
|
|
|
|
{
|
2007-05-03 20:58:48 +02:00
|
|
|
WARN("Trying to lock an invalid rectangle, returning D3DERR_INVALIDCALL\n");
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-03 20:58:48 +02:00
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-12 22:49:04 +02:00
|
|
|
hr = wined3d_surface_map(This->wined3d_surface, &map_desc, rect, flags);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2012-04-12 22:49:04 +02:00
|
|
|
locked_rect->Pitch = map_desc.row_pitch;
|
|
|
|
locked_rect->pBits = map_desc.data;
|
|
|
|
|
2007-05-26 20:24:16 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2011-07-05 00:41:12 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_UnlockRect(IDirect3DSurface8 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DSurface8Impl *This = impl_from_IDirect3DSurface8(iface);
|
2007-05-26 20:24:16 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
2007-05-26 20:24:16 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-04-29 13:03:41 +02:00
|
|
|
hr = wined3d_surface_unmap(This->wined3d_surface);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2008-12-18 16:43:06 +01:00
|
|
|
switch(hr)
|
|
|
|
{
|
|
|
|
case WINEDDERR_NOTLOCKED: return D3DERR_INVALIDCALL;
|
|
|
|
default: return hr;
|
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2009-09-11 19:01:17 +02:00
|
|
|
static const IDirect3DSurface8Vtbl Direct3DSurface8_Vtbl =
|
2002-09-28 00:46:16 +02:00
|
|
|
{
|
2006-02-14 17:13:19 +01:00
|
|
|
/* IUnknown */
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DSurface8Impl_QueryInterface,
|
|
|
|
IDirect3DSurface8Impl_AddRef,
|
|
|
|
IDirect3DSurface8Impl_Release,
|
2006-02-14 17:13:19 +01:00
|
|
|
/* IDirect3DResource8 */
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DSurface8Impl_GetDevice,
|
|
|
|
IDirect3DSurface8Impl_SetPrivateData,
|
|
|
|
IDirect3DSurface8Impl_GetPrivateData,
|
|
|
|
IDirect3DSurface8Impl_FreePrivateData,
|
2006-02-14 17:13:19 +01:00
|
|
|
/* IDirect3DSurface8 */
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DSurface8Impl_GetContainer,
|
|
|
|
IDirect3DSurface8Impl_GetDesc,
|
|
|
|
IDirect3DSurface8Impl_LockRect,
|
2006-02-14 17:13:19 +01:00
|
|
|
IDirect3DSurface8Impl_UnlockRect
|
2002-09-28 00:46:16 +02:00
|
|
|
};
|
2009-09-11 19:01:17 +02:00
|
|
|
|
2009-09-16 08:37:15 +02:00
|
|
|
static void STDMETHODCALLTYPE surface_wined3d_object_destroyed(void *parent)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wined3d_parent_ops d3d8_surface_wined3d_parent_ops =
|
|
|
|
{
|
|
|
|
surface_wined3d_object_destroyed,
|
|
|
|
};
|
|
|
|
|
2009-09-11 19:01:17 +02:00
|
|
|
HRESULT surface_init(IDirect3DSurface8Impl *surface, IDirect3DDevice8Impl *device,
|
|
|
|
UINT width, UINT height, D3DFORMAT format, BOOL lockable, BOOL discard, UINT level,
|
|
|
|
DWORD usage, D3DPOOL pool, D3DMULTISAMPLE_TYPE multisample_type, DWORD multisample_quality)
|
|
|
|
{
|
2011-11-30 06:01:45 +01:00
|
|
|
DWORD flags = 0;
|
2009-09-11 19:01:17 +02:00
|
|
|
HRESULT hr;
|
|
|
|
|
2011-07-05 00:41:12 +02:00
|
|
|
surface->IDirect3DSurface8_iface.lpVtbl = &Direct3DSurface8_Vtbl;
|
2009-09-11 19:01:17 +02:00
|
|
|
surface->ref = 1;
|
|
|
|
|
|
|
|
/* FIXME: Check MAX bounds of MultisampleQuality. */
|
|
|
|
if (multisample_quality > 0)
|
|
|
|
{
|
|
|
|
FIXME("Multisample quality set to %u, substituting 0.\n", multisample_quality);
|
|
|
|
multisample_quality = 0;
|
|
|
|
}
|
|
|
|
|
2011-11-30 06:01:45 +01:00
|
|
|
if (lockable)
|
|
|
|
flags |= WINED3D_SURFACE_MAPPABLE;
|
|
|
|
if (discard)
|
|
|
|
flags |= WINED3D_SURFACE_DISCARD;
|
|
|
|
|
2009-09-11 19:01:17 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-05-16 23:01:22 +02:00
|
|
|
hr = wined3d_surface_create(device->wined3d_device, width, height, wined3dformat_from_d3dformat(format),
|
2012-01-17 21:13:37 +01:00
|
|
|
level, usage & WINED3DUSAGE_MASK, (enum wined3d_pool)pool, multisample_type, multisample_quality,
|
2012-01-20 00:36:28 +01:00
|
|
|
WINED3D_SURFACE_TYPE_OPENGL, flags, surface, &d3d8_surface_wined3d_parent_ops, &surface->wined3d_surface);
|
2009-09-11 19:01:17 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to create wined3d surface, hr %#x.\n", hr);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2011-01-28 01:17:54 +01:00
|
|
|
surface->parentDevice = &device->IDirect3DDevice8_iface;
|
2009-09-11 19:01:17 +02:00
|
|
|
IUnknown_AddRef(surface->parentDevice);
|
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
2011-07-05 00:34:58 +02:00
|
|
|
|
|
|
|
IDirect3DSurface8Impl *unsafe_impl_from_IDirect3DSurface8(IDirect3DSurface8 *iface)
|
|
|
|
{
|
|
|
|
if (!iface)
|
|
|
|
return NULL;
|
|
|
|
assert(iface->lpVtbl == &Direct3DSurface8_Vtbl);
|
|
|
|
|
|
|
|
return impl_from_IDirect3DSurface8(iface);
|
|
|
|
}
|