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
|
|
|
|
2006-02-14 17:13:19 +01:00
|
|
|
/* IDirect3DSurface8 IUnknown parts follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_QueryInterface(LPDIRECT3DSURFACE8 iface, REFIID riid, LPVOID *ppobj) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
2006-02-14 17:13:19 +01:00
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DResource8)
|
2002-12-17 02:15:15 +01:00
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DSurface8)) {
|
2006-02-14 17:13:19 +01:00
|
|
|
IUnknown_AddRef(iface);
|
2002-09-28 00:46:16 +02:00
|
|
|
*ppobj = This;
|
2006-06-07 15:13:29 +02:00
|
|
|
return S_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-02-14 17:13:19 +01:00
|
|
|
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
2006-06-07 15:13:29 +02:00
|
|
|
*ppobj = NULL;
|
2002-09-28 00:46:16 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static ULONG WINAPI IDirect3DSurface8Impl_AddRef(LPDIRECT3DSURFACE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2006-03-06 19:28:03 +01:00
|
|
|
IUnknown *containerParent = NULL;
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2006-03-06 19:28:03 +01:00
|
|
|
TRACE("(%p)\n", This);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2006-03-06 19:28:03 +01:00
|
|
|
IWineD3DSurface_GetContainerParent(This->wineD3DSurface, &containerParent);
|
|
|
|
if (containerParent) {
|
|
|
|
/* Forward to the containerParent */
|
|
|
|
TRACE("(%p) : Forwarding to %p\n", This, containerParent);
|
|
|
|
return IUnknown_AddRef(containerParent);
|
|
|
|
} else {
|
|
|
|
/* No container, handle our own refcounting */
|
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : AddRef from %d\n", This, ref - 1);
|
2006-03-06 19:28:03 +01:00
|
|
|
return ref;
|
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static ULONG WINAPI IDirect3DSurface8Impl_Release(LPDIRECT3DSURFACE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2006-03-06 19:28:03 +01:00
|
|
|
IUnknown *containerParent = NULL;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", This);
|
|
|
|
|
|
|
|
IWineD3DSurface_GetContainerParent(This->wineD3DSurface, &containerParent);
|
|
|
|
if (containerParent) {
|
|
|
|
/* Forward to the containerParent */
|
|
|
|
TRACE("(%p) : Forwarding to %p\n", This, containerParent);
|
|
|
|
return IUnknown_Release(containerParent);
|
|
|
|
} else {
|
|
|
|
/* No container, handle our own refcounting */
|
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : ReleaseRef to %d\n", This, ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2006-03-06 19:28:03 +01:00
|
|
|
if (ref == 0) {
|
|
|
|
IWineD3DSurface_Release(This->wineD3DSurface);
|
2006-07-07 15:31:56 +02:00
|
|
|
if (This->parentDevice) IUnknown_Release(This->parentDevice);
|
2006-03-06 19:28:03 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
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: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_GetDevice(LPDIRECT3DSURFACE8 iface, IDirect3DDevice8 **ppDevice) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2006-02-14 17:13:19 +01:00
|
|
|
return IDirect3DResource8Impl_GetDevice((LPDIRECT3DRESOURCE8) This, ppDevice);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_SetPrivateData(LPDIRECT3DSURFACE8 iface, REFGUID refguid, CONST void *pData, DWORD SizeOfData, DWORD Flags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2006-02-14 17:13:19 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DSurface_SetPrivateData(This->wineD3DSurface, refguid, pData, SizeOfData, Flags);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_GetPrivateData(LPDIRECT3DSURFACE8 iface, REFGUID refguid, void *pData, DWORD *pSizeOfData) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2006-02-14 17:13:19 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DSurface_GetPrivateData(This->wineD3DSurface, refguid, pData, pSizeOfData);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_FreePrivateData(LPDIRECT3DSURFACE8 iface, REFGUID refguid) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2006-02-14 17:13:19 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DSurface_FreePrivateData(This->wineD3DSurface, refguid);
|
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: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_GetContainer(LPDIRECT3DSURFACE8 iface, REFIID riid, void **ppContainer) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2003-01-15 00:05:39 +01:00
|
|
|
HRESULT res;
|
2006-02-20 11:11:35 +01:00
|
|
|
IUnknown *IWineContainer = NULL;
|
|
|
|
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
|
|
|
/* The container returned from IWineD3DSurface_GetContainer is either an IWineD3DDevice,
|
|
|
|
one of the subclasses of IWineD3DBaseTexture or an IWineD3DSwapChain */
|
|
|
|
/* Get the IUnknown container. */
|
|
|
|
res = IWineD3DSurface_GetContainer(This->wineD3DSurface, &IID_IUnknown, (void **)&IWineContainer);
|
|
|
|
if (res == D3D_OK && IWineContainer != NULL) {
|
|
|
|
|
|
|
|
/* Now find out what kind of container it is (so that we can get its parent)*/
|
|
|
|
IUnknown *IUnknownParent = NULL;
|
|
|
|
IUnknown *myContainer = NULL;
|
|
|
|
if (D3D_OK == IUnknown_QueryInterface(IWineContainer, &IID_IWineD3DDevice, (void **)&myContainer)) {
|
|
|
|
IWineD3DDevice_GetParent((IWineD3DDevice *)IWineContainer, &IUnknownParent);
|
|
|
|
IUnknown_Release(myContainer);
|
|
|
|
} else
|
|
|
|
if (D3D_OK == IUnknown_QueryInterface(IWineContainer, &IID_IWineD3DBaseTexture, (void **)&myContainer)) {
|
|
|
|
IWineD3DBaseTexture_GetParent((IWineD3DBaseTexture *)IWineContainer, &IUnknownParent);
|
|
|
|
IUnknown_Release(myContainer);
|
|
|
|
} else
|
|
|
|
if (D3D_OK == IUnknown_QueryInterface(IWineContainer, &IID_IWineD3DSwapChain, (void **)&myContainer)) {
|
|
|
|
IWineD3DSwapChain_GetParent((IWineD3DSwapChain *)IWineContainer, &IUnknownParent);
|
|
|
|
IUnknown_Release(myContainer);
|
|
|
|
} else {
|
|
|
|
FIXME("Container is of unknown interface\n");
|
|
|
|
}
|
|
|
|
/* Tidy up.. */
|
|
|
|
IUnknown_Release((IWineD3DDevice *)IWineContainer);
|
|
|
|
|
|
|
|
/* Now, query the interface of the parent for the riid */
|
|
|
|
if (IUnknownParent != NULL) {
|
|
|
|
res = IUnknown_QueryInterface(IUnknownParent, riid, ppContainer);
|
|
|
|
/* Tidy up.. */
|
|
|
|
IUnknown_Release(IUnknownParent);
|
|
|
|
}
|
2003-01-15 00:05:39 +01:00
|
|
|
}
|
2006-02-20 11:11:35 +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
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_GetDesc(LPDIRECT3DSURFACE8 iface, D3DSURFACE_DESC *pDesc) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2006-02-14 17:13:19 +01:00
|
|
|
WINED3DSURFACE_DESC wined3ddesc;
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
2006-05-19 14:17:56 +02:00
|
|
|
/* As d3d8 and d3d9 structures differ, pass in ptrs to where data needs to go */
|
2006-02-14 17:13:19 +01:00
|
|
|
memset(&wined3ddesc, 0, sizeof(wined3ddesc));
|
|
|
|
wined3ddesc.Format = (WINED3DFORMAT *)&pDesc->Format;
|
2006-03-09 23:21:16 +01:00
|
|
|
wined3ddesc.Type = (WINED3DRESOURCETYPE *)&pDesc->Type;
|
2006-02-14 17:13:19 +01:00
|
|
|
wined3ddesc.Usage = &pDesc->Usage;
|
2006-03-28 14:20:47 +02:00
|
|
|
wined3ddesc.Pool = (WINED3DPOOL *) &pDesc->Pool;
|
2006-05-19 14:17:56 +02:00
|
|
|
wined3ddesc.Size = &pDesc->Size;
|
2006-03-24 17:34:26 +01:00
|
|
|
wined3ddesc.MultiSampleType = (WINED3DMULTISAMPLE_TYPE *) &pDesc->MultiSampleType;
|
2006-02-14 17:13:19 +01:00
|
|
|
wined3ddesc.Width = &pDesc->Width;
|
|
|
|
wined3ddesc.Height = &pDesc->Height;
|
|
|
|
|
|
|
|
return IWineD3DSurface_GetDesc(This->wineD3DSurface, &wined3ddesc);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_LockRect(LPDIRECT3DSURFACE8 iface, D3DLOCKED_RECT *pLockedRect, CONST RECT *pRect, DWORD Flags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) calling IWineD3DSurface_LockRect %p %p %p %d\n", This, This->wineD3DSurface, pLockedRect, pRect, Flags);
|
2006-04-06 19:36:02 +02:00
|
|
|
return IWineD3DSurface_LockRect(This->wineD3DSurface, (WINED3DLOCKED_RECT *) pLockedRect, pRect, Flags);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_UnlockRect(LPDIRECT3DSURFACE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DSurface_UnlockRect(This->wineD3DSurface);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2005-05-27 22:17:35 +02:00
|
|
|
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
|
|
|
};
|