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
|
|
|
|
|
|
|
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;
|
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
|
|
|
|
2006-03-06 19:28:03 +01:00
|
|
|
TRACE("(%p)\n", This);
|
|
|
|
|
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);
|
2006-12-18 00:17:16 +01:00
|
|
|
if(ref == 1 && This->parentDevice) IUnknown_AddRef(This->parentDevice);
|
2006-10-10 19:23:22 +02:00
|
|
|
TRACE("(%p) : AddRef from %d\n", This, ref - 1);
|
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
|
|
|
|
|
|
|
TRACE("(%p)\n", This);
|
|
|
|
|
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);
|
2006-10-10 19:23:22 +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) {
|
2006-05-29 23:01:04 +02:00
|
|
|
if (This->parentDevice) IUnknown_Release(This->parentDevice);
|
2006-12-18 00:17:16 +01:00
|
|
|
if (!This->isImplicit) {
|
2007-06-14 11:42:26 +02:00
|
|
|
EnterCriticalSection(&d3d9_cs);
|
2006-12-18 00:17:16 +01:00
|
|
|
IWineD3DSurface_Release(This->wineD3DSurface);
|
2007-06-14 11:42:26 +02:00
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
2006-12-18 00:17:16 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
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: */
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DSurface9Impl_GetDevice(LPDIRECT3DSURFACE9 iface, IDirect3DDevice9** ppDevice) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2007-06-14 11:42:26 +02:00
|
|
|
HRESULT hr;
|
|
|
|
TRACE("(%p)->(%p)\n", This, ppDevice);
|
|
|
|
|
|
|
|
EnterCriticalSection(&d3d9_cs);
|
|
|
|
hr = IDirect3DResource9Impl_GetDevice((LPDIRECT3DRESOURCE9) This, ppDevice);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
|
|
|
return hr;
|
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;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d9_cs);
|
|
|
|
hr = IWineD3DSurface_SetPrivateData(This->wineD3DSurface, refguid, pData, SizeOfData, Flags);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
|
|
|
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;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d9_cs);
|
|
|
|
hr = IWineD3DSurface_GetPrivateData(This->wineD3DSurface, refguid, pData, pSizeOfData);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
|
|
|
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;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d9_cs);
|
|
|
|
hr = IWineD3DSurface_FreePrivateData(This->wineD3DSurface, refguid);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
|
|
|
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;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d9_cs);
|
|
|
|
hr = IWineD3DSurface_SetPriority(This->wineD3DSurface, PriorityNew);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
|
|
|
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;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d9_cs);
|
|
|
|
hr = IWineD3DSurface_GetPriority(This->wineD3DSurface);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
|
|
|
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;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d9_cs);
|
2005-01-09 18:37:02 +01:00
|
|
|
IWineD3DSurface_PreLoad(This->wineD3DSurface);
|
2007-06-14 11:42:26 +02:00
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
2003-07-01 03:09:17 +02:00
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static D3DRESOURCETYPE WINAPI IDirect3DSurface9Impl_GetType(LPDIRECT3DSURFACE9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSurface9Impl *This = (IDirect3DSurface9Impl *)iface;
|
2007-06-14 11:42:26 +02:00
|
|
|
D3DRESOURCETYPE ret;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d9_cs);
|
|
|
|
ret = IWineD3DSurface_GetType(This->wineD3DSurface);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
|
|
|
return ret;
|
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
|
|
|
|
2006-02-07 12:25:59 +01:00
|
|
|
TRACE("(This %p, riid %s, ppContainer %p)\n", This, 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;
|
|
|
|
|
2006-02-07 12:25:59 +01:00
|
|
|
if (!ppContainer) {
|
|
|
|
ERR("Called without a valid ppContainer\n");
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
2005-01-09 18:37:02 +01:00
|
|
|
|
2006-12-18 00:17:51 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static 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;
|
2007-06-14 11:42:26 +02:00
|
|
|
HRESULT hr;
|
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;
|
2006-03-09 23:21:16 +01:00
|
|
|
wined3ddesc.Type = (WINED3DRESOURCETYPE *)&pDesc->Type;
|
2005-01-09 18:37:02 +01:00
|
|
|
wined3ddesc.Usage = &pDesc->Usage;
|
2006-03-28 14:20:47 +02:00
|
|
|
wined3ddesc.Pool = (WINED3DPOOL *) &pDesc->Pool;
|
2005-01-17 14:44:57 +01:00
|
|
|
wined3ddesc.Size = &tmpInt;
|
2006-03-24 17:34:26 +01:00
|
|
|
wined3ddesc.MultiSampleType = (WINED3DMULTISAMPLE_TYPE *) &pDesc->MultiSampleType;
|
2005-01-09 18:37:02 +01:00
|
|
|
wined3ddesc.MultiSampleQuality = &pDesc->MultiSampleQuality;
|
|
|
|
wined3ddesc.Width = &pDesc->Width;
|
|
|
|
wined3ddesc.Height = &pDesc->Height;
|
|
|
|
|
2007-06-14 11:42:26 +02:00
|
|
|
EnterCriticalSection(&d3d9_cs);
|
|
|
|
hr = IWineD3DSurface_GetDesc(This->wineD3DSurface, &wined3ddesc);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
|
|
|
return hr;
|
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;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d9_cs);
|
2006-10-10 19:23:22 +02:00
|
|
|
TRACE("(%p) calling IWineD3DSurface_LockRect %p %p %p %d\n", This, This->wineD3DSurface, pLockedRect, pRect, Flags);
|
2007-06-14 11:42:26 +02:00
|
|
|
hr = IWineD3DSurface_LockRect(This->wineD3DSurface, (WINED3DLOCKED_RECT *) pLockedRect, pRect, Flags);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
|
|
|
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;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d9_cs);
|
|
|
|
hr = IWineD3DSurface_UnlockRect(This->wineD3DSurface);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
|
|
|
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;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d9_cs);
|
|
|
|
hr = IWineD3DSurface_GetDC(This->wineD3DSurface, phdc);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
|
|
|
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;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-14 11:42:26 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d9_cs);
|
|
|
|
hr = IWineD3DSurface_ReleaseDC(This->wineD3DSurface, hdc);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
|
|
|
return hr;
|
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
|
|
|
|
};
|