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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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: */
|
|
|
|
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
|
|
|
|
|
|
|
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)) {
|
2005-03-11 11:25:30 +01:00
|
|
|
IUnknown_AddRef(iface);
|
2003-07-01 03:09:17 +02:00
|
|
|
*ppobj = This;
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) : AddRef from %ld\n", This, ref - 1);
|
|
|
|
|
|
|
|
return ref;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI IDirect3DSurface9Impl_Release(LPDIRECT3DSURFACE9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2005-01-09 18:37:02 +01: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) {
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DSurface_Release(This->wineD3DSurface);
|
2005-01-09 18:37:02 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DSurface9 IDirect3DResource9 Interface follow: */
|
|
|
|
HRESULT WINAPI IDirect3DSurface9Impl_GetDevice(LPDIRECT3DSURFACE9 iface, IDirect3DDevice9** ppDevice) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2003-07-01 03:09:17 +02:00
|
|
|
return IDirect3DResource9Impl_GetDevice((LPDIRECT3DRESOURCE9) This, ppDevice);
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2005-01-09 18:37:02 +01:00
|
|
|
return IWineD3DSurface_SetPrivateData(This->wineD3DSurface, refguid, pData, SizeOfData, Flags);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DSurface9Impl_GetPrivateData(LPDIRECT3DSURFACE9 iface, REFGUID refguid, void* pData, DWORD* pSizeOfData) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2005-01-09 18:37:02 +01:00
|
|
|
return IWineD3DSurface_GetPrivateData(This->wineD3DSurface, refguid, pData, pSizeOfData);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DSurface9Impl_FreePrivateData(LPDIRECT3DSURFACE9 iface, REFGUID refguid) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2005-01-09 18:37:02 +01:00
|
|
|
return IWineD3DSurface_FreePrivateData(This->wineD3DSurface, refguid);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2005-01-09 18:37:02 +01:00
|
|
|
DWORD WINAPI IDirect3DSurface9Impl_SetPriority(LPDIRECT3DSURFACE9 iface, DWORD PriorityNew) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2005-01-09 18:37:02 +01:00
|
|
|
return IWineD3DSurface_SetPriority(This->wineD3DSurface, PriorityNew);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2005-01-09 18:37:02 +01:00
|
|
|
DWORD WINAPI IDirect3DSurface9Impl_GetPriority(LPDIRECT3DSURFACE9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2005-01-09 18:37:02 +01:00
|
|
|
return IWineD3DSurface_GetPriority(This->wineD3DSurface);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2005-01-09 18:37:02 +01:00
|
|
|
void WINAPI IDirect3DSurface9Impl_PreLoad(LPDIRECT3DSURFACE9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2005-01-09 18:37:02 +01:00
|
|
|
IWineD3DSurface_PreLoad(This->wineD3DSurface);
|
2003-07-01 03:09:17 +02:00
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
D3DRESOURCETYPE WINAPI IDirect3DSurface9Impl_GetType(LPDIRECT3DSURFACE9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2005-01-09 18:37:02 +01:00
|
|
|
return IWineD3DSurface_GetType(This->wineD3DSurface);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DSurface9 Interface follow: */
|
|
|
|
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
|
|
|
IUnknown *IWineContainer = NULL;
|
|
|
|
|
2005-03-02 14:44:58 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
2005-03-23 14:15:18 +01:00
|
|
|
/* The container returned from IWineD3DSurface_GetContainer is either an IWineD3DDevice,
|
|
|
|
one of the subclasses of IWineD3DBaseTexture or an IWineD3DSwapChain */
|
2005-03-02 14:44:58 +01:00
|
|
|
/* 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)){
|
2005-08-23 11:34:57 +02:00
|
|
|
IWineD3DSwapChain_GetParent((IWineD3DSwapChain *)IWineContainer, &IUnknownParent);
|
2005-03-02 14:44:58 +01:00
|
|
|
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-07-01 03:09:17 +02:00
|
|
|
}
|
2005-01-09 18:37:02 +01:00
|
|
|
|
2005-03-02 14:44:58 +01:00
|
|
|
TRACE("(%p) : returning %p\n", This, *ppContainer);
|
2003-07-01 03:09:17 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DSurface9Impl_GetDesc(LPDIRECT3DSURFACE9 iface, D3DSURFACE_DESC* pDesc) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2005-01-09 18:37:02 +01:00
|
|
|
WINED3DSURFACE_DESC wined3ddesc;
|
2005-01-17 14:44:57 +01:00
|
|
|
UINT tmpInt = -1;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2005-01-09 18:37:02 +01:00
|
|
|
|
|
|
|
/* As d3d8 and d3d9 structures differ, pass in ptrs to where data needs to go */
|
2005-07-11 22:38:27 +02:00
|
|
|
wined3ddesc.Format = (WINED3DFORMAT *)&pDesc->Format;
|
2005-01-09 18:37:02 +01:00
|
|
|
wined3ddesc.Type = &pDesc->Type;
|
|
|
|
wined3ddesc.Usage = &pDesc->Usage;
|
|
|
|
wined3ddesc.Pool = &pDesc->Pool;
|
2005-01-17 14:44:57 +01:00
|
|
|
wined3ddesc.Size = &tmpInt;
|
2005-01-09 18:37:02 +01:00
|
|
|
wined3ddesc.MultiSampleType = &pDesc->MultiSampleType;
|
|
|
|
wined3ddesc.MultiSampleQuality = &pDesc->MultiSampleQuality;
|
|
|
|
wined3ddesc.Width = &pDesc->Width;
|
|
|
|
wined3ddesc.Height = &pDesc->Height;
|
|
|
|
|
|
|
|
return IWineD3DSurface_GetDesc(This->wineD3DSurface, &wined3ddesc);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
TRACE("(%p) calling IWineD3DSurface_LockRect %p %p %p %ld\n", This, This->wineD3DSurface, pLockedRect, pRect, Flags);
|
2005-01-09 18:37:02 +01:00
|
|
|
return IWineD3DSurface_LockRect(This->wineD3DSurface, pLockedRect, pRect, Flags);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DSurface9Impl_UnlockRect(LPDIRECT3DSURFACE9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2005-01-09 18:37:02 +01:00
|
|
|
return IWineD3DSurface_UnlockRect(This->wineD3DSurface);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DSurface9Impl_GetDC(LPDIRECT3DSURFACE9 iface, HDC* phdc) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2005-01-09 18:37:02 +01:00
|
|
|
return IWineD3DSurface_GetDC(This->wineD3DSurface, phdc);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DSurface9Impl_ReleaseDC(LPDIRECT3DSURFACE9 iface, HDC hdc) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2005-01-09 18:37:02 +01:00
|
|
|
return IWineD3DSurface_ReleaseDC(This->wineD3DSurface, hdc);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-05-27 22:17:35 +02:00
|
|
|
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
|
|
|
|
};
|