2002-09-28 00:46:16 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DBaseTexture8 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
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IDirect3DBaseTexture8 IUnknown parts follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DBaseTexture8Impl_QueryInterface(LPDIRECT3DBASETEXTURE8 iface, REFIID riid, LPVOID *ppobj) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DBaseTexture8Impl *This = (IDirect3DBaseTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
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)) {
|
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
|
|
|
}
|
|
|
|
|
2006-02-20 11:11:35 +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 IDirect3DBaseTexture8Impl_AddRef(LPDIRECT3DBASETEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DBaseTexture8Impl *This = (IDirect3DBaseTexture8Impl *)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 IDirect3DBaseTexture8Impl_Release(LPDIRECT3DBASETEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DBaseTexture8Impl *This = (IDirect3DBaseTexture8Impl *)iface;
|
2005-01-24 12:31:45 +01:00
|
|
|
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-02-20 11:11:35 +01:00
|
|
|
if (ref == 0) {
|
|
|
|
IWineD3DBaseTexture_Release(This->wineD3DBaseTexture);
|
2002-09-28 00:46:16 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
2006-02-20 11:11:35 +01:00
|
|
|
}
|
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IDirect3DBaseTexture8 IDirect3DResource8 Interface follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DBaseTexture8Impl_GetDevice(LPDIRECT3DBASETEXTURE8 iface, IDirect3DDevice8 **ppDevice) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DBaseTexture8Impl *This = (IDirect3DBaseTexture8Impl *)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 IDirect3DBaseTexture8Impl_SetPrivateData(LPDIRECT3DBASETEXTURE8 iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DBaseTexture8Impl *This = (IDirect3DBaseTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
|
|
|
|
return IWineD3DBaseTexture_SetPrivateData(This->wineD3DBaseTexture, 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 IDirect3DBaseTexture8Impl_GetPrivateData(LPDIRECT3DBASETEXTURE8 iface, REFGUID refguid, void* pData, DWORD* pSizeOfData) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DBaseTexture8Impl *This = (IDirect3DBaseTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
|
|
|
|
return IWineD3DBaseTexture_GetPrivateData(This->wineD3DBaseTexture, 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 IDirect3DBaseTexture8Impl_FreePrivateData(LPDIRECT3DBASETEXTURE8 iface, REFGUID refguid) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DBaseTexture8Impl *This = (IDirect3DBaseTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
|
|
|
|
return IWineD3DBaseTexture_FreePrivateData(This->wineD3DBaseTexture, 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 IDirect3DBaseTexture8Impl_SetPriority(LPDIRECT3DBASETEXTURE8 iface, DWORD PriorityNew) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DBaseTexture8Impl *This = (IDirect3DBaseTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
|
|
|
|
return IWineD3DBaseTexture_SetPriority(This->wineD3DBaseTexture, 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 IDirect3DBaseTexture8Impl_GetPriority(LPDIRECT3DBASETEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DBaseTexture8Impl *This = (IDirect3DBaseTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
|
|
|
|
return IWineD3DBaseTexture_GetPriority(This->wineD3DBaseTexture);
|
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 IDirect3DBaseTexture8Impl_PreLoad(LPDIRECT3DBASETEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DBaseTexture8Impl *This = (IDirect3DBaseTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
|
|
|
|
IWineD3DBaseTexture_PreLoad(This->wineD3DBaseTexture);
|
|
|
|
return;
|
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 IDirect3DBaseTexture8Impl_GetType(LPDIRECT3DBASETEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DBaseTexture8Impl *This = (IDirect3DBaseTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
|
|
|
|
return IWineD3DBaseTexture_GetType(This->wineD3DBaseTexture);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IDirect3DBaseTexture8 Interface follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static DWORD WINAPI IDirect3DBaseTexture8Impl_SetLOD(LPDIRECT3DBASETEXTURE8 iface, DWORD LODNew) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DBaseTexture8Impl *This = (IDirect3DBaseTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
|
|
|
|
return IWineD3DBaseTexture_SetLOD(This->wineD3DBaseTexture, 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 IDirect3DBaseTexture8Impl_GetLOD(LPDIRECT3DBASETEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DBaseTexture8Impl *This = (IDirect3DBaseTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
|
|
|
|
return IWineD3DBaseTexture_GetLOD(This->wineD3DBaseTexture);
|
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 IDirect3DBaseTexture8Impl_GetLevelCount(LPDIRECT3DBASETEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DBaseTexture8Impl *This = (IDirect3DBaseTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
|
|
|
|
return IWineD3DBaseTexture_GetLevelCount(This->wineD3DBaseTexture);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
const IDirect3DBaseTexture8Vtbl Direct3DBaseTexture8_Vtbl =
|
2002-09-28 00:46:16 +02:00
|
|
|
{
|
|
|
|
IDirect3DBaseTexture8Impl_QueryInterface,
|
|
|
|
IDirect3DBaseTexture8Impl_AddRef,
|
|
|
|
IDirect3DBaseTexture8Impl_Release,
|
|
|
|
IDirect3DBaseTexture8Impl_GetDevice,
|
|
|
|
IDirect3DBaseTexture8Impl_SetPrivateData,
|
|
|
|
IDirect3DBaseTexture8Impl_GetPrivateData,
|
|
|
|
IDirect3DBaseTexture8Impl_FreePrivateData,
|
|
|
|
IDirect3DBaseTexture8Impl_SetPriority,
|
|
|
|
IDirect3DBaseTexture8Impl_GetPriority,
|
|
|
|
IDirect3DBaseTexture8Impl_PreLoad,
|
|
|
|
IDirect3DBaseTexture8Impl_GetType,
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DBaseTexture8Impl_SetLOD,
|
|
|
|
IDirect3DBaseTexture8Impl_GetLOD,
|
2006-02-20 11:11:35 +01:00
|
|
|
IDirect3DBaseTexture8Impl_GetLevelCount
|
2002-09-28 00:46:16 +02:00
|
|
|
};
|