2002-09-27 22:46:16 +00:00
|
|
|
/*
|
|
|
|
* IDirect3DSurface8 implementation
|
|
|
|
*
|
2006-02-14 16:13:19 +00:00
|
|
|
* Copyright 2005 Oliver Stieber
|
2002-09-27 22:46:16 +00: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 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-09-27 22:46:16 +00:00
|
|
|
*/
|
|
|
|
|
2003-04-12 00:06:42 +00:00
|
|
|
#include "config.h"
|
2002-09-27 22:46:16 +00:00
|
|
|
#include "d3d8_private.h"
|
|
|
|
|
2006-02-14 16:13:19 +00:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d8);
|
2002-09-27 22:46:16 +00:00
|
|
|
|
2006-02-14 16:13:19 +00:00
|
|
|
/* IDirect3DSurface8 IUnknown parts follow: */
|
2006-06-10 09:48:24 +00:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_QueryInterface(LPDIRECT3DSURFACE8 iface, REFIID riid, LPVOID *ppobj) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2002-09-27 22:46:16 +00:00
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
2006-02-14 16:13:19 +00:00
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DResource8)
|
2002-12-17 01:15:15 +00:00
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DSurface8)) {
|
2006-02-14 16:13:19 +00:00
|
|
|
IUnknown_AddRef(iface);
|
2002-09-27 22:46:16 +00:00
|
|
|
*ppobj = This;
|
2006-06-07 13:13:29 +00:00
|
|
|
return S_OK;
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
|
|
|
|
2006-02-14 16:13:19 +00:00
|
|
|
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
2006-06-07 13:13:29 +00:00
|
|
|
*ppobj = NULL;
|
2002-09-27 22:46:16 +00:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2006-06-10 09:48:24 +00:00
|
|
|
static ULONG WINAPI IDirect3DSurface8Impl_AddRef(LPDIRECT3DSURFACE8 iface) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2005-01-24 11:31:45 +00:00
|
|
|
|
2006-03-06 18:28:03 +00:00
|
|
|
TRACE("(%p)\n", This);
|
2005-01-24 11:31:45 +00:00
|
|
|
|
2006-12-04 23:29:37 +00:00
|
|
|
if (This->forwardReference) {
|
|
|
|
/* Forward refcounting */
|
|
|
|
TRACE("(%p) : Forwarding to %p\n", This, This->forwardReference);
|
|
|
|
return IUnknown_AddRef(This->forwardReference);
|
2006-03-06 18:28:03 +00:00
|
|
|
} else {
|
|
|
|
/* No container, handle our own refcounting */
|
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
2006-12-04 23:29:48 +00:00
|
|
|
if(ref == 1 && This->parentDevice) IUnknown_AddRef(This->parentDevice);
|
2006-10-10 17:23:08 +00:00
|
|
|
TRACE("(%p) : AddRef from %d\n", This, ref - 1);
|
2006-03-06 18:28:03 +00:00
|
|
|
return ref;
|
|
|
|
}
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
|
|
|
|
2006-06-10 09:48:24 +00:00
|
|
|
static ULONG WINAPI IDirect3DSurface8Impl_Release(LPDIRECT3DSURFACE8 iface) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2006-03-06 18:28:03 +00:00
|
|
|
|
|
|
|
TRACE("(%p)\n", This);
|
|
|
|
|
2006-12-04 23:29:37 +00:00
|
|
|
if (This->forwardReference) {
|
|
|
|
/* Forward refcounting */
|
|
|
|
TRACE("(%p) : Forwarding to %p\n", This, This->forwardReference);
|
|
|
|
return IUnknown_Release(This->forwardReference);
|
2006-03-06 18:28:03 +00:00
|
|
|
} else {
|
|
|
|
/* No container, handle our own refcounting */
|
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
2006-10-10 17:23:08 +00:00
|
|
|
TRACE("(%p) : ReleaseRef to %d\n", This, ref);
|
2005-01-24 11:31:45 +00:00
|
|
|
|
2006-12-14 00:55:48 +00:00
|
|
|
if (ref == 0) {
|
|
|
|
if (This->parentDevice) IUnknown_Release(This->parentDevice);
|
|
|
|
/* Implicit surfaces are destroyed with the device, not if refcount reaches 0. */
|
|
|
|
if (!This->isImplicit) {
|
|
|
|
IWineD3DSurface_Release(This->wineD3DSurface);
|
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
2006-03-06 18:28:03 +00:00
|
|
|
}
|
2005-01-24 11:31:45 +00:00
|
|
|
|
2006-03-06 18:28:03 +00:00
|
|
|
return ref;
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-14 16:13:19 +00:00
|
|
|
/* IDirect3DSurface8 IDirect3DResource8 Interface follow: */
|
2006-06-10 09:48:24 +00:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_GetDevice(LPDIRECT3DSURFACE8 iface, IDirect3DDevice8 **ppDevice) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2006-02-14 16:13:19 +00:00
|
|
|
return IDirect3DResource8Impl_GetDevice((LPDIRECT3DRESOURCE8) This, ppDevice);
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
2003-07-08 21:01:48 +00:00
|
|
|
|
2006-06-10 09:48:24 +00:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_SetPrivateData(LPDIRECT3DSURFACE8 iface, REFGUID refguid, CONST void *pData, DWORD SizeOfData, DWORD Flags) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2006-02-14 16:13:19 +00:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DSurface_SetPrivateData(This->wineD3DSurface, refguid, pData, SizeOfData, Flags);
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
2003-07-08 21:01:48 +00:00
|
|
|
|
2006-06-10 09:48:24 +00:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_GetPrivateData(LPDIRECT3DSURFACE8 iface, REFGUID refguid, void *pData, DWORD *pSizeOfData) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2006-02-14 16:13:19 +00:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DSurface_GetPrivateData(This->wineD3DSurface, refguid, pData, pSizeOfData);
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
2003-07-08 21:01:48 +00:00
|
|
|
|
2006-06-10 09:48:24 +00:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_FreePrivateData(LPDIRECT3DSURFACE8 iface, REFGUID refguid) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2006-02-14 16:13:19 +00:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DSurface_FreePrivateData(This->wineD3DSurface, refguid);
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
2003-07-08 21:01:48 +00:00
|
|
|
|
2006-02-14 16:13:19 +00:00
|
|
|
/* IDirect3DSurface8 Interface follow: */
|
2006-06-10 09:48:24 +00:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_GetContainer(LPDIRECT3DSURFACE8 iface, REFIID riid, void **ppContainer) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2003-01-14 23:05:39 +00:00
|
|
|
HRESULT res;
|
2006-02-20 10:11:35 +00:00
|
|
|
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
2006-12-17 23:17:38 +00:00
|
|
|
if (!This->container) return E_NOINTERFACE;
|
|
|
|
|
|
|
|
res = IUnknown_QueryInterface(This->container, riid, ppContainer);
|
2006-02-20 10:11:35 +00:00
|
|
|
|
2006-12-17 23:17:38 +00:00
|
|
|
TRACE("(%p) : returning %p\n", This, *ppContainer);
|
2003-01-14 23:05:39 +00:00
|
|
|
return res;
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
2003-07-08 21:01:48 +00:00
|
|
|
|
2006-06-10 09:48:24 +00:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_GetDesc(LPDIRECT3DSURFACE8 iface, D3DSURFACE_DESC *pDesc) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2006-02-14 16:13:19 +00:00
|
|
|
WINED3DSURFACE_DESC wined3ddesc;
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
2006-05-19 12:17:56 +00:00
|
|
|
/* As d3d8 and d3d9 structures differ, pass in ptrs to where data needs to go */
|
2006-02-14 16:13:19 +00:00
|
|
|
memset(&wined3ddesc, 0, sizeof(wined3ddesc));
|
|
|
|
wined3ddesc.Format = (WINED3DFORMAT *)&pDesc->Format;
|
2006-03-09 22:21:16 +00:00
|
|
|
wined3ddesc.Type = (WINED3DRESOURCETYPE *)&pDesc->Type;
|
2006-02-14 16:13:19 +00:00
|
|
|
wined3ddesc.Usage = &pDesc->Usage;
|
2006-03-28 12:20:47 +00:00
|
|
|
wined3ddesc.Pool = (WINED3DPOOL *) &pDesc->Pool;
|
2006-05-19 12:17:56 +00:00
|
|
|
wined3ddesc.Size = &pDesc->Size;
|
2006-03-24 16:34:26 +00:00
|
|
|
wined3ddesc.MultiSampleType = (WINED3DMULTISAMPLE_TYPE *) &pDesc->MultiSampleType;
|
2006-02-14 16:13:19 +00:00
|
|
|
wined3ddesc.Width = &pDesc->Width;
|
|
|
|
wined3ddesc.Height = &pDesc->Height;
|
|
|
|
|
|
|
|
return IWineD3DSurface_GetDesc(This->wineD3DSurface, &wined3ddesc);
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
2003-07-08 21:01:48 +00:00
|
|
|
|
2006-06-10 09:48:24 +00:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_LockRect(LPDIRECT3DSURFACE8 iface, D3DLOCKED_RECT *pLockedRect, CONST RECT *pRect, DWORD Flags) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2006-02-20 10:11:35 +00:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2006-10-10 17:23:08 +00:00
|
|
|
TRACE("(%p) calling IWineD3DSurface_LockRect %p %p %p %d\n", This, This->wineD3DSurface, pLockedRect, pRect, Flags);
|
2007-05-03 18:58:48 +00:00
|
|
|
|
|
|
|
if (pRect) {
|
|
|
|
D3DSURFACE_DESC desc;
|
|
|
|
IDirect3DSurface8_GetDesc(iface, &desc);
|
|
|
|
|
|
|
|
if ((pRect->left < 0)
|
|
|
|
|| (pRect->top < 0)
|
|
|
|
|| (pRect->left >= pRect->right)
|
|
|
|
|| (pRect->top >= pRect->bottom)
|
|
|
|
|| (pRect->right > desc.Width)
|
|
|
|
|| (pRect->bottom > desc.Height)) {
|
|
|
|
WARN("Trying to lock an invalid rectangle, returning D3DERR_INVALIDCALL\n");
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-06 17:36:02 +00:00
|
|
|
return IWineD3DSurface_LockRect(This->wineD3DSurface, (WINED3DLOCKED_RECT *) pLockedRect, pRect, Flags);
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
2003-07-08 21:01:48 +00:00
|
|
|
|
2006-06-10 09:48:24 +00:00
|
|
|
static HRESULT WINAPI IDirect3DSurface8Impl_UnlockRect(LPDIRECT3DSURFACE8 iface) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DSurface8Impl *This = (IDirect3DSurface8Impl *)iface;
|
2006-02-20 10:11:35 +00:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DSurface_UnlockRect(This->wineD3DSurface);
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
|
|
|
|
2005-05-27 20:17:35 +00:00
|
|
|
const IDirect3DSurface8Vtbl Direct3DSurface8_Vtbl =
|
2002-09-27 22:46:16 +00:00
|
|
|
{
|
2006-02-14 16:13:19 +00:00
|
|
|
/* IUnknown */
|
2002-09-27 22:46:16 +00:00
|
|
|
IDirect3DSurface8Impl_QueryInterface,
|
|
|
|
IDirect3DSurface8Impl_AddRef,
|
|
|
|
IDirect3DSurface8Impl_Release,
|
2006-02-14 16:13:19 +00:00
|
|
|
/* IDirect3DResource8 */
|
2002-09-27 22:46:16 +00:00
|
|
|
IDirect3DSurface8Impl_GetDevice,
|
|
|
|
IDirect3DSurface8Impl_SetPrivateData,
|
|
|
|
IDirect3DSurface8Impl_GetPrivateData,
|
|
|
|
IDirect3DSurface8Impl_FreePrivateData,
|
2006-02-14 16:13:19 +00:00
|
|
|
/* IDirect3DSurface8 */
|
2002-09-27 22:46:16 +00:00
|
|
|
IDirect3DSurface8Impl_GetContainer,
|
|
|
|
IDirect3DSurface8Impl_GetDesc,
|
|
|
|
IDirect3DSurface8Impl_LockRect,
|
2006-02-14 16:13:19 +00:00
|
|
|
IDirect3DSurface8Impl_UnlockRect
|
2002-09-27 22:46:16 +00:00
|
|
|
};
|