2002-09-28 00:46:16 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DTexture8 implementation
|
|
|
|
*
|
2006-02-20 11:11:35 +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-20 11:11:35 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d8);
|
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
/* IDirect3DTexture8 IUnknown parts follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DTexture8Impl_QueryInterface(LPDIRECT3DTEXTURE8 iface, REFIID riid, LPVOID *ppobj) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
2002-12-17 02:15:15 +01:00
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DResource8)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DBaseTexture8)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DTexture8)) {
|
2006-02-20 11:11:35 +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
|
|
|
}
|
|
|
|
|
2003-06-05 00:12:34 +02: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 IDirect3DTexture8Impl_AddRef(LPDIRECT3DTEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : AddRef from %d\n", This, ref - 1);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
|
|
|
return ref;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static ULONG WINAPI IDirect3DTexture8Impl_Release(LPDIRECT3DTEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : ReleaseRef to %d\n", This, ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
if (ref == 0) {
|
2006-12-05 00:29:37 +01:00
|
|
|
IWineD3DTexture_Destroy(This->wineD3DTexture, D3D8CB_DestroySurface);
|
2006-05-20 18:39:03 +02:00
|
|
|
IUnknown_Release(This->parentDevice);
|
2002-09-28 00:46:16 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DTexture8 IDirect3DResource8 Interface follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DTexture8Impl_GetDevice(LPDIRECT3DTEXTURE8 iface, IDirect3DDevice8 **ppDevice) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IDirect3DResource8Impl_GetDevice((LPDIRECT3DRESOURCE8) This, ppDevice);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DTexture8Impl_SetPrivateData(LPDIRECT3DTEXTURE8 iface, REFGUID refguid, CONST void *pData, DWORD SizeOfData, DWORD Flags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DTexture_SetPrivateData(This->wineD3DTexture, refguid, pData, SizeOfData, Flags);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DTexture8Impl_GetPrivateData(LPDIRECT3DTEXTURE8 iface, REFGUID refguid, void *pData, DWORD* pSizeOfData) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DTexture_GetPrivateData(This->wineD3DTexture, refguid, pData, pSizeOfData);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DTexture8Impl_FreePrivateData(LPDIRECT3DTEXTURE8 iface, REFGUID refguid) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DTexture_FreePrivateData(This->wineD3DTexture, refguid);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static DWORD WINAPI IDirect3DTexture8Impl_SetPriority(LPDIRECT3DTEXTURE8 iface, DWORD PriorityNew) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DTexture_SetPriority(This->wineD3DTexture, PriorityNew);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static DWORD WINAPI IDirect3DTexture8Impl_GetPriority(LPDIRECT3DTEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DTexture_GetPriority(This->wineD3DTexture);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static void WINAPI IDirect3DTexture8Impl_PreLoad(LPDIRECT3DTEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DTexture_PreLoad(This->wineD3DTexture);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static D3DRESOURCETYPE WINAPI IDirect3DTexture8Impl_GetType(LPDIRECT3DTEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DTexture_GetType(This->wineD3DTexture);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2002-12-18 06:05:41 +01:00
|
|
|
/* IDirect3DTexture8 IDirect3DBaseTexture8 Interface follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static DWORD WINAPI IDirect3DTexture8Impl_SetLOD(LPDIRECT3DTEXTURE8 iface, DWORD LODNew) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DTexture_SetLOD(This->wineD3DTexture, LODNew);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static DWORD WINAPI IDirect3DTexture8Impl_GetLOD(LPDIRECT3DTEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DTexture_GetLOD(This->wineD3DTexture);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static DWORD WINAPI IDirect3DTexture8Impl_GetLevelCount(LPDIRECT3DTEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DTexture_GetLevelCount(This->wineD3DTexture);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IDirect3DTexture8 Interface follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DTexture8Impl_GetLevelDesc(LPDIRECT3DTEXTURE8 iface, UINT Level, D3DSURFACE_DESC *pDesc) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-20 11:11:35 +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-20 11:11:35 +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-20 11:11:35 +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-20 11:11:35 +01:00
|
|
|
wined3ddesc.Width = &pDesc->Width;
|
|
|
|
wined3ddesc.Height = &pDesc->Height;
|
|
|
|
|
|
|
|
return IWineD3DTexture_GetLevelDesc(This->wineD3DTexture, Level, &wined3ddesc);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DTexture8Impl_GetSurfaceLevel(LPDIRECT3DTEXTURE8 iface, UINT Level, IDirect3DSurface8 **ppSurfaceLevel) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
HRESULT hrc = D3D_OK;
|
|
|
|
IWineD3DSurface *mySurface = NULL;
|
|
|
|
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
hrc = IWineD3DTexture_GetSurfaceLevel(This->wineD3DTexture, Level, &mySurface);
|
|
|
|
if (hrc == D3D_OK && NULL != ppSurfaceLevel) {
|
|
|
|
IWineD3DSurface_GetParent(mySurface, (IUnknown **)ppSurfaceLevel);
|
|
|
|
IWineD3DSurface_Release(mySurface);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-20 11:11:35 +01:00
|
|
|
return hrc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DTexture8Impl_LockRect(LPDIRECT3DTEXTURE8 iface, UINT Level, D3DLOCKED_RECT *pLockedRect, CONST RECT *pRect, DWORD Flags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2006-04-06 19:36:02 +02:00
|
|
|
return IWineD3DTexture_LockRect(This->wineD3DTexture, Level, (WINED3DLOCKED_RECT *) pLockedRect, pRect, Flags);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DTexture8Impl_UnlockRect(LPDIRECT3DTEXTURE8 iface, UINT Level) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DTexture_UnlockRect(This->wineD3DTexture, Level);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DTexture8Impl_AddDirtyRect(LPDIRECT3DTEXTURE8 iface, CONST RECT *pDirtyRect) {
|
2006-02-20 11:11:35 +01:00
|
|
|
IDirect3DTexture8Impl *This = (IDirect3DTexture8Impl *)iface;
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DTexture_AddDirtyRect(This->wineD3DTexture, pDirtyRect);
|
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2005-05-27 22:17:35 +02:00
|
|
|
const IDirect3DTexture8Vtbl Direct3DTexture8_Vtbl =
|
2002-09-28 00:46:16 +02:00
|
|
|
{
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IUnknown */
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DTexture8Impl_QueryInterface,
|
|
|
|
IDirect3DTexture8Impl_AddRef,
|
|
|
|
IDirect3DTexture8Impl_Release,
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IDirect3DResource8 */
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DTexture8Impl_GetDevice,
|
|
|
|
IDirect3DTexture8Impl_SetPrivateData,
|
|
|
|
IDirect3DTexture8Impl_GetPrivateData,
|
|
|
|
IDirect3DTexture8Impl_FreePrivateData,
|
|
|
|
IDirect3DTexture8Impl_SetPriority,
|
|
|
|
IDirect3DTexture8Impl_GetPriority,
|
|
|
|
IDirect3DTexture8Impl_PreLoad,
|
|
|
|
IDirect3DTexture8Impl_GetType,
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IDirect3dBaseTexture8 */
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DTexture8Impl_SetLOD,
|
|
|
|
IDirect3DTexture8Impl_GetLOD,
|
|
|
|
IDirect3DTexture8Impl_GetLevelCount,
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IDirect3DTexture8 */
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DTexture8Impl_GetLevelDesc,
|
|
|
|
IDirect3DTexture8Impl_GetSurfaceLevel,
|
|
|
|
IDirect3DTexture8Impl_LockRect,
|
|
|
|
IDirect3DTexture8Impl_UnlockRect,
|
|
|
|
IDirect3DTexture8Impl_AddDirtyRect
|
|
|
|
};
|