2003-07-01 03:09:17 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DSurface9 implementation
|
|
|
|
*
|
2005-01-09 18:37:02 +01:00
|
|
|
* Copyright 2002-2005 Jason Edmeades
|
2003-07-01 03:09:17 +02:00
|
|
|
* Raphael Junqueira
|
|
|
|
*
|
|
|
|
* 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-03-11 11:25:30 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
|
2003-07-01 03:09:17 +02:00
|
|
|
|
|
|
|
/* IDirect3DSurface9 IUnknown parts follow: */
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface9Impl_QueryInterface(LPDIRECT3DSURFACE9 iface, REFIID riid, LPVOID* ppobj) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), ppobj);
|
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
2005-01-09 18:37:02 +01:00
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DResource9)
|
2003-07-01 03:09:17 +02:00
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DSurface9)) {
|
2008-11-02 23:49:40 +01:00
|
|
|
IDirect3DSurface9_AddRef(iface);
|
2003-07-01 03:09:17 +02:00
|
|
|
*ppobj = This;
|
2006-06-07 15:13:29 +02:00
|
|
|
return S_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
2006-06-07 15:13:29 +02:00
|
|
|
*ppobj = NULL;
|
2003-07-01 03:09:17 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static ULONG WINAPI IDirect3DSurface9Impl_AddRef(LPDIRECT3DSURFACE9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("iface %p.\n", iface);
|
2006-03-06 19:28:03 +01:00
|
|
|
|
2006-12-18 00:16:48 +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-20 11:05:02 +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) IDirect3DDevice9Ex_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();
|
|
|
|
}
|
2006-03-06 19:28:03 +01:00
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static ULONG WINAPI IDirect3DSurface9Impl_Release(LPDIRECT3DSURFACE9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2006-03-06 19:28:03 +01:00
|
|
|
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("iface %p.\n", iface);
|
2006-03-06 19:28:03 +01:00
|
|
|
|
2006-12-18 00:16:48 +01:00
|
|
|
if (This->forwardReference) {
|
2006-03-06 19:28:03 +01:00
|
|
|
/* Forward to the containerParent */
|
2006-12-18 00:16:48 +01:00
|
|
|
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-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("%p decreasing refcount to %u.\n", iface, ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2006-03-06 19:28:03 +01:00
|
|
|
if (ref == 0) {
|
2009-09-26 15:56:16 +02:00
|
|
|
IDirect3DDevice9Ex *parentDevice = This->parentDevice;
|
|
|
|
|
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-26 15:56:16 +02:00
|
|
|
|
|
|
|
/* Release the device last, as it may cause the device to be destroyed. */
|
|
|
|
if (parentDevice) IDirect3DDevice9Ex_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;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DSurface9 IDirect3DResource9 Interface follow: */
|
2009-12-04 11:50:47 +01:00
|
|
|
static HRESULT WINAPI IDirect3DSurface9Impl_GetDevice(IDirect3DSurface9 *iface, IDirect3DDevice9 **device)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
2009-12-04 11:50:47 +01:00
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
2009-12-07 11:08:37 +01:00
|
|
|
if (This->forwardReference)
|
|
|
|
{
|
|
|
|
IDirect3DResource9 *resource;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
hr = IUnknown_QueryInterface(This->forwardReference, &IID_IDirect3DResource9, (void **)&resource);
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = IDirect3DResource9_GetDevice(resource, device);
|
|
|
|
IDirect3DResource9_Release(resource);
|
|
|
|
|
|
|
|
TRACE("Returning device %p.\n", *device);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2009-12-04 11:50:47 +01:00
|
|
|
*device = (IDirect3DDevice9 *)This->parentDevice;
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface9Impl_SetPrivateData(LPDIRECT3DSURFACE9 iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2007-06-14 11:42:26 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data %p, data_size %u, flags %#x.\n",
|
|
|
|
iface, debugstr_guid(refguid), pData, SizeOfData, Flags);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-04-29 13:03:41 +02:00
|
|
|
hr = wined3d_surface_set_private_data(This->wined3d_surface, refguid, pData, SizeOfData, Flags);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-14 11:42:26 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface9Impl_GetPrivateData(LPDIRECT3DSURFACE9 iface, REFGUID refguid, void* pData, DWORD* pSizeOfData) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2007-06-14 11:42:26 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data %p, data_size %p.\n",
|
|
|
|
iface, debugstr_guid(refguid), pData, pSizeOfData);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-04-29 13:03:41 +02:00
|
|
|
hr = wined3d_surface_get_private_data(This->wined3d_surface, refguid, pData, pSizeOfData);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-14 11:42:26 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface9Impl_FreePrivateData(LPDIRECT3DSURFACE9 iface, REFGUID refguid) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2007-06-14 11:42:26 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s.\n", iface, debugstr_guid(refguid));
|
2007-06-14 11:42:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-04-29 13:03:41 +02:00
|
|
|
hr = wined3d_surface_free_private_data(This->wined3d_surface, refguid);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-14 11:42:26 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static DWORD WINAPI IDirect3DSurface9Impl_SetPriority(LPDIRECT3DSURFACE9 iface, DWORD PriorityNew) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2007-06-14 11:42:26 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, priority %u.\n", iface, PriorityNew);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-04-29 13:03:41 +02:00
|
|
|
hr = wined3d_surface_set_priority(This->wined3d_surface, PriorityNew);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-14 11:42:26 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static DWORD WINAPI IDirect3DSurface9Impl_GetPriority(LPDIRECT3DSURFACE9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2007-06-14 11:42:26 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-04-29 13:03:41 +02:00
|
|
|
hr = wined3d_surface_get_priority(This->wined3d_surface);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-14 11:42:26 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static void WINAPI IDirect3DSurface9Impl_PreLoad(LPDIRECT3DSURFACE9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-04-29 13:03:41 +02:00
|
|
|
wined3d_surface_preload(This->wined3d_surface);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-04-21 22:39:32 +02:00
|
|
|
static D3DRESOURCETYPE WINAPI IDirect3DSurface9Impl_GetType(IDirect3DSurface9 *iface)
|
|
|
|
{
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("iface %p.\n", iface);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
2011-04-21 22:39:32 +02:00
|
|
|
return D3DRTYPE_SURFACE;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DSurface9 Interface follow: */
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface9Impl_GetContainer(LPDIRECT3DSURFACE9 iface, REFIID riid, void** ppContainer) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2003-07-01 03:09:17 +02:00
|
|
|
HRESULT res;
|
2005-01-09 18:37:02 +01:00
|
|
|
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("iface %p, riid %s, container %p.\n", iface, debugstr_guid(riid), ppContainer);
|
2005-03-02 14:44:58 +01:00
|
|
|
|
2006-12-18 00:17:51 +01:00
|
|
|
if (!This->container) return E_NOINTERFACE;
|
|
|
|
|
|
|
|
res = IUnknown_QueryInterface(This->container, riid, ppContainer);
|
2006-02-07 12:25:59 +01:00
|
|
|
|
|
|
|
TRACE("Returning ppContainer %p, *ppContainer %p\n", ppContainer, *ppContainer);
|
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2011-03-08 19:41:05 +01:00
|
|
|
static HRESULT WINAPI IDirect3DSurface9Impl_GetDesc(IDirect3DSurface9 *iface, D3DSURFACE_DESC *desc)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)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-20 11:05:02 +02:00
|
|
|
|
2011-03-08 19:41:05 +01:00
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
2005-01-09 18:37:02 +01:00
|
|
|
|
2009-08-26 10:18:09 +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-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-02-19 16:59:42 +01:00
|
|
|
|
2011-03-08 19:41:05 +01:00
|
|
|
desc->Format = d3dformat_from_wined3dformat(wined3d_desc.format);
|
|
|
|
desc->Type = wined3d_desc.resource_type;
|
|
|
|
desc->Usage = wined3d_desc.usage;
|
|
|
|
desc->Pool = wined3d_desc.pool;
|
|
|
|
desc->MultiSampleType = wined3d_desc.multisample_type;
|
|
|
|
desc->MultiSampleQuality = wined3d_desc.multisample_quality;
|
|
|
|
desc->Width = wined3d_desc.width;
|
|
|
|
desc->Height = wined3d_desc.height;
|
2009-02-19 16:59:42 +01:00
|
|
|
|
2010-09-08 11:24:47 +02:00
|
|
|
return D3D_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface9Impl_LockRect(LPDIRECT3DSURFACE9 iface, D3DLOCKED_RECT* pLockedRect, CONST RECT* pRect, DWORD Flags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2007-06-14 11:42:26 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, locked_rect %p, rect %p, flags %#x.\n", iface, pLockedRect, pRect, Flags);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-04-29 13:03:41 +02:00
|
|
|
hr = wined3d_surface_map(This->wined3d_surface, (WINED3DLOCKED_RECT *)pLockedRect, pRect, Flags);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-14 11:42:26 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface9Impl_UnlockRect(LPDIRECT3DSURFACE9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2007-06-14 11:42:26 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-04-29 13:03:41 +02:00
|
|
|
hr = wined3d_surface_unmap(This->wined3d_surface);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2008-12-18 16:43:06 +01:00
|
|
|
switch(hr)
|
|
|
|
{
|
|
|
|
case WINEDDERR_NOTLOCKED: return D3DERR_INVALIDCALL;
|
|
|
|
default: return hr;
|
|
|
|
}
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface9Impl_GetDC(LPDIRECT3DSURFACE9 iface, HDC* phdc) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2007-06-14 11:42:26 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, hdc %p.\n", iface, phdc);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
2009-09-05 16:37:19 +02:00
|
|
|
if(!This->getdc_supported)
|
|
|
|
{
|
|
|
|
WARN("Surface does not support GetDC, returning D3DERR_INVALIDCALL\n");
|
|
|
|
/* Don't touch the DC */
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-04-29 13:03:41 +02:00
|
|
|
hr = wined3d_surface_getdc(This->wined3d_surface, phdc);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-14 11:42:26 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface9Impl_ReleaseDC(LPDIRECT3DSURFACE9 iface, HDC hdc) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2007-06-14 11:42:26 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, hdc %p.\n", iface, hdc);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-04-29 13:03:41 +02:00
|
|
|
hr = wined3d_surface_releasedc(This->wined3d_surface, hdc);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2010-11-16 12:09:30 +01:00
|
|
|
switch (hr)
|
|
|
|
{
|
|
|
|
case WINEDDERR_NODC: return D3DERR_INVALIDCALL;
|
2008-12-16 00:01:11 +01:00
|
|
|
default: return hr;
|
|
|
|
}
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2009-09-11 19:01:16 +02:00
|
|
|
static const IDirect3DSurface9Vtbl Direct3DSurface9_Vtbl =
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
2005-08-23 11:34:57 +02:00
|
|
|
/* IUnknown */
|
2003-07-01 03:09:17 +02:00
|
|
|
IDirect3DSurface9Impl_QueryInterface,
|
|
|
|
IDirect3DSurface9Impl_AddRef,
|
|
|
|
IDirect3DSurface9Impl_Release,
|
2005-08-23 11:34:57 +02:00
|
|
|
/* IDirect3DResource9 */
|
2003-07-01 03:09:17 +02:00
|
|
|
IDirect3DSurface9Impl_GetDevice,
|
|
|
|
IDirect3DSurface9Impl_SetPrivateData,
|
|
|
|
IDirect3DSurface9Impl_GetPrivateData,
|
|
|
|
IDirect3DSurface9Impl_FreePrivateData,
|
|
|
|
IDirect3DSurface9Impl_SetPriority,
|
|
|
|
IDirect3DSurface9Impl_GetPriority,
|
|
|
|
IDirect3DSurface9Impl_PreLoad,
|
|
|
|
IDirect3DSurface9Impl_GetType,
|
2005-08-23 11:34:57 +02:00
|
|
|
/* IDirect3DSurface9 */
|
2003-07-01 03:09:17 +02:00
|
|
|
IDirect3DSurface9Impl_GetContainer,
|
|
|
|
IDirect3DSurface9Impl_GetDesc,
|
|
|
|
IDirect3DSurface9Impl_LockRect,
|
|
|
|
IDirect3DSurface9Impl_UnlockRect,
|
|
|
|
IDirect3DSurface9Impl_GetDC,
|
|
|
|
IDirect3DSurface9Impl_ReleaseDC
|
|
|
|
};
|
2009-09-11 19:01:16 +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 d3d9_surface_wined3d_parent_ops =
|
|
|
|
{
|
|
|
|
surface_wined3d_object_destroyed,
|
|
|
|
};
|
|
|
|
|
2009-09-11 19:01:16 +02:00
|
|
|
HRESULT surface_init(IDirect3DSurface9Impl *surface, IDirect3DDevice9Impl *device,
|
|
|
|
UINT width, UINT height, D3DFORMAT format, BOOL lockable, BOOL discard, UINT level,
|
|
|
|
DWORD usage, D3DPOOL pool, D3DMULTISAMPLE_TYPE multisample_type, DWORD multisample_quality)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
surface->lpVtbl = &Direct3DSurface9_Vtbl;
|
|
|
|
surface->ref = 1;
|
|
|
|
|
|
|
|
switch (format)
|
|
|
|
{
|
|
|
|
case D3DFMT_A8R8G8B8:
|
|
|
|
case D3DFMT_X8R8G8B8:
|
|
|
|
case D3DFMT_R5G6B5:
|
|
|
|
case D3DFMT_X1R5G5B5:
|
|
|
|
case D3DFMT_A1R5G5B5:
|
|
|
|
case D3DFMT_R8G8B8:
|
|
|
|
surface->getdc_supported = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
surface->getdc_supported = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: Check MAX bounds of MultisampleQuality. */
|
|
|
|
if (multisample_quality > 0)
|
|
|
|
{
|
|
|
|
FIXME("Multisample quality set to %u, substituting 0.\n", multisample_quality);
|
|
|
|
multisample_quality = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
wined3d_mutex_lock();
|
|
|
|
hr = IWineD3DDevice_CreateSurface(device->WineD3DDevice, width, height, wined3dformat_from_d3dformat(format),
|
2010-08-31 18:41:40 +02:00
|
|
|
lockable, discard, level, usage & WINED3DUSAGE_MASK, (WINED3DPOOL)pool, multisample_type,
|
2011-04-29 13:03:41 +02:00
|
|
|
multisample_quality, SURFACE_OPENGL, surface, &d3d9_surface_wined3d_parent_ops, &surface->wined3d_surface);
|
2009-09-11 19:01:16 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to create wined3d surface, hr %#x.\n", hr);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2011-04-24 21:34:30 +02:00
|
|
|
surface->parentDevice = &device->IDirect3DDevice9Ex_iface;
|
2009-09-11 19:01:16 +02:00
|
|
|
IDirect3DDevice9Ex_AddRef(surface->parentDevice);
|
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
}
|