2003-07-01 03:09:17 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DResource9 implementation
|
|
|
|
*
|
2004-10-14 02:32:04 +02:00
|
|
|
* Copyright 2002-2004 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
|
|
|
|
|
|
|
/* IDirect3DResource9 IUnknown parts follow: */
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DResource9Impl_QueryInterface(LPDIRECT3DRESOURCE9 iface, REFIID riid, LPVOID* ppobj) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DResource9Impl *This = (IDirect3DResource9Impl *)iface;
|
2003-07-01 03:09:17 +02:00
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DResource9)) {
|
2006-06-10 11:51:05 +02:00
|
|
|
IUnknown_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 IDirect3DResource9Impl_AddRef(LPDIRECT3DRESOURCE9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DResource9Impl *This = (IDirect3DResource9Impl *)iface;
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) : AddRef from %ld\n", This, ref - 1);
|
|
|
|
|
|
|
|
return ref;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static ULONG WINAPI IDirect3DResource9Impl_Release(LPDIRECT3DRESOURCE9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DResource9Impl *This = (IDirect3DResource9Impl *)iface;
|
2004-10-14 02:32:04 +02:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
|
|
|
TRACE("(%p) : ReleaseRef to %ld\n", This, ref);
|
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
if (ref == 0) {
|
2004-10-14 02:32:04 +02:00
|
|
|
IWineD3DResource_Release(This->wineD3DResource);
|
2003-07-01 03:09:17 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DResource9 Interface follow: */
|
|
|
|
HRESULT WINAPI IDirect3DResource9Impl_GetDevice(LPDIRECT3DRESOURCE9 iface, IDirect3DDevice9** ppDevice) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DResource9Impl *This = (IDirect3DResource9Impl *)iface;
|
2004-12-07 15:29:12 +01:00
|
|
|
IWineD3DDevice *myDevice = NULL;
|
2005-03-11 11:25:30 +01:00
|
|
|
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
2004-12-07 15:29:12 +01:00
|
|
|
IWineD3DResource_GetDevice(This->wineD3DResource, &myDevice);
|
|
|
|
IWineD3DDevice_GetParent(myDevice, (IUnknown **)ppDevice);
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DDevice_Release(myDevice);
|
2003-07-01 03:09:17 +02:00
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DResource9Impl_SetPrivateData(LPDIRECT3DRESOURCE9 iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DResource9Impl *This = (IDirect3DResource9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2004-10-14 02:32:04 +02:00
|
|
|
return IWineD3DResource_SetPrivateData(This->wineD3DResource, refguid, pData, SizeOfData, Flags);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DResource9Impl_GetPrivateData(LPDIRECT3DRESOURCE9 iface, REFGUID refguid, void* pData, DWORD* pSizeOfData) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DResource9Impl *This = (IDirect3DResource9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2004-10-14 02:32:04 +02:00
|
|
|
return IWineD3DResource_GetPrivateData(This->wineD3DResource, refguid, pData, pSizeOfData);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DResource9Impl_FreePrivateData(LPDIRECT3DRESOURCE9 iface, REFGUID refguid) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DResource9Impl *This = (IDirect3DResource9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2004-10-14 02:32:04 +02:00
|
|
|
return IWineD3DResource_FreePrivateData(This->wineD3DResource, refguid);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static DWORD WINAPI IDirect3DResource9Impl_SetPriority(LPDIRECT3DRESOURCE9 iface, DWORD PriorityNew) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DResource9Impl *This = (IDirect3DResource9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2004-10-14 02:32:04 +02:00
|
|
|
return IWineD3DResource_SetPriority(This->wineD3DResource, PriorityNew);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static DWORD WINAPI IDirect3DResource9Impl_GetPriority(LPDIRECT3DRESOURCE9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DResource9Impl *This = (IDirect3DResource9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2004-10-14 02:32:04 +02:00
|
|
|
return IWineD3DResource_GetPriority(This->wineD3DResource);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static void WINAPI IDirect3DResource9Impl_PreLoad(LPDIRECT3DRESOURCE9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DResource9Impl *This = (IDirect3DResource9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2004-10-14 02:32:04 +02:00
|
|
|
IWineD3DResource_PreLoad(This->wineD3DResource);
|
|
|
|
return;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static D3DRESOURCETYPE WINAPI IDirect3DResource9Impl_GetType(LPDIRECT3DRESOURCE9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DResource9Impl *This = (IDirect3DResource9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2004-10-14 02:32:04 +02:00
|
|
|
return IWineD3DResource_GetType(This->wineD3DResource);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-05-27 22:17:35 +02:00
|
|
|
const IDirect3DResource9Vtbl Direct3DResource9_Vtbl =
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
|
|
|
IDirect3DResource9Impl_QueryInterface,
|
|
|
|
IDirect3DResource9Impl_AddRef,
|
|
|
|
IDirect3DResource9Impl_Release,
|
|
|
|
IDirect3DResource9Impl_GetDevice,
|
|
|
|
IDirect3DResource9Impl_SetPrivateData,
|
|
|
|
IDirect3DResource9Impl_GetPrivateData,
|
|
|
|
IDirect3DResource9Impl_FreePrivateData,
|
|
|
|
IDirect3DResource9Impl_SetPriority,
|
|
|
|
IDirect3DResource9Impl_GetPriority,
|
|
|
|
IDirect3DResource9Impl_PreLoad,
|
|
|
|
IDirect3DResource9Impl_GetType
|
|
|
|
};
|