2005-01-17 14:44:57 +01:00
/*
2005-07-11 22:38:27 +02:00
* IWineD3DTexture implementation
2005-01-17 14:44:57 +01:00
*
* Copyright 2002 - 2005 Jason Edmeades
2005-03-14 11:12:52 +01:00
* Copyright 2002 - 2005 Raphael Junqueira
* Copyright 2005 Oliver Stieber
2005-01-17 14:44:57 +01: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
2005-01-17 14:44:57 +01:00
*/
# include "config.h"
# include "wined3d_private.h"
2005-08-03 21:49:05 +02:00
WINE_DEFAULT_DEBUG_CHANNEL ( d3d_texture ) ;
2005-01-17 14:44:57 +01:00
# define GLINFO_LOCATION ((IWineD3DImpl *)(((IWineD3DDeviceImpl *)This->resource.wineD3DDevice)->wineD3D))->gl_info
/* *******************************************
IWineD3DTexture IUnknown parts follow
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2006-06-10 13:15:32 +02:00
static HRESULT WINAPI IWineD3DTextureImpl_QueryInterface ( IWineD3DTexture * iface , REFIID riid , LPVOID * ppobj )
2005-01-17 14:44:57 +01:00
{
IWineD3DTextureImpl * This = ( IWineD3DTextureImpl * ) iface ;
2005-03-02 14:44:58 +01:00
TRACE ( " (%p)->(%s,%p) \n " , This , debugstr_guid ( riid ) , ppobj ) ;
if ( IsEqualGUID ( riid , & IID_IUnknown )
2006-02-06 11:32:41 +01:00
| | IsEqualGUID ( riid , & IID_IWineD3DBase )
2005-03-02 14:44:58 +01:00
| | IsEqualGUID ( riid , & IID_IWineD3DResource )
| | IsEqualGUID ( riid , & IID_IWineD3DBaseTexture )
| | IsEqualGUID ( riid , & IID_IWineD3DTexture ) ) {
IUnknown_AddRef ( iface ) ;
* ppobj = This ;
2006-04-07 12:51:12 +02:00
return WINED3D_OK ;
2005-03-02 14:44:58 +01:00
}
2006-04-25 23:59:12 +02:00
* ppobj = NULL ;
2005-01-17 14:44:57 +01:00
return E_NOINTERFACE ;
}
2006-06-10 13:15:32 +02:00
static ULONG WINAPI IWineD3DTextureImpl_AddRef ( IWineD3DTexture * iface ) {
2005-01-17 14:44:57 +01:00
IWineD3DTextureImpl * This = ( IWineD3DTextureImpl * ) iface ;
2006-10-01 05:20:10 +02:00
TRACE ( " (%p) : AddRef increasing from %d \n " , This , This - > resource . ref ) ;
2005-01-17 14:44:57 +01:00
return InterlockedIncrement ( & This - > resource . ref ) ;
}
2006-06-10 13:15:32 +02:00
static ULONG WINAPI IWineD3DTextureImpl_Release ( IWineD3DTexture * iface ) {
2005-01-17 14:44:57 +01:00
IWineD3DTextureImpl * This = ( IWineD3DTextureImpl * ) iface ;
ULONG ref ;
2006-10-01 05:20:10 +02:00
TRACE ( " (%p) : Releasing from %d \n " , This , This - > resource . ref ) ;
2005-01-17 14:44:57 +01:00
ref = InterlockedDecrement ( & This - > resource . ref ) ;
if ( ref = = 0 ) {
2006-12-05 00:28:58 +01:00
IWineD3DTexture_Destroy ( iface , D3DCB_DefaultDestroySurface ) ;
2005-01-17 14:44:57 +01:00
}
return ref ;
}
2006-12-05 00:28:58 +01:00
2005-01-17 14:44:57 +01:00
/* ****************************************************
IWineD3DTexture IWineD3DResource parts follow
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2006-06-10 13:15:32 +02:00
static HRESULT WINAPI IWineD3DTextureImpl_GetDevice ( IWineD3DTexture * iface , IWineD3DDevice * * ppDevice ) {
2005-01-17 14:44:57 +01:00
return IWineD3DResourceImpl_GetDevice ( ( IWineD3DResource * ) iface , ppDevice ) ;
}
2006-06-10 13:15:32 +02:00
static HRESULT WINAPI IWineD3DTextureImpl_SetPrivateData ( IWineD3DTexture * iface , REFGUID refguid , CONST void * pData , DWORD SizeOfData , DWORD Flags ) {
2005-01-17 14:44:57 +01:00
return IWineD3DResourceImpl_SetPrivateData ( ( IWineD3DResource * ) iface , refguid , pData , SizeOfData , Flags ) ;
}
2006-06-10 13:15:32 +02:00
static HRESULT WINAPI IWineD3DTextureImpl_GetPrivateData ( IWineD3DTexture * iface , REFGUID refguid , void * pData , DWORD * pSizeOfData ) {
2005-01-17 14:44:57 +01:00
return IWineD3DResourceImpl_GetPrivateData ( ( IWineD3DResource * ) iface , refguid , pData , pSizeOfData ) ;
}
2006-06-10 13:15:32 +02:00
static HRESULT WINAPI IWineD3DTextureImpl_FreePrivateData ( IWineD3DTexture * iface , REFGUID refguid ) {
2005-01-17 14:44:57 +01:00
return IWineD3DResourceImpl_FreePrivateData ( ( IWineD3DResource * ) iface , refguid ) ;
}
2006-06-10 13:15:32 +02:00
static DWORD WINAPI IWineD3DTextureImpl_SetPriority ( IWineD3DTexture * iface , DWORD PriorityNew ) {
2005-01-17 14:44:57 +01:00
return IWineD3DResourceImpl_SetPriority ( ( IWineD3DResource * ) iface , PriorityNew ) ;
}
2006-06-10 13:15:32 +02:00
static DWORD WINAPI IWineD3DTextureImpl_GetPriority ( IWineD3DTexture * iface ) {
2005-01-17 14:44:57 +01:00
return IWineD3DResourceImpl_GetPriority ( ( IWineD3DResource * ) iface ) ;
}
2006-06-10 13:15:32 +02:00
static void WINAPI IWineD3DTextureImpl_PreLoad ( IWineD3DTexture * iface ) {
2005-06-23 18:44:19 +02:00
/* Override the IWineD3DResource PreLoad method */
2005-01-17 14:44:57 +01:00
unsigned int i ;
2005-07-11 22:38:27 +02:00
BOOL setGlTextureDesc = FALSE ;
2005-01-17 14:44:57 +01:00
IWineD3DTextureImpl * This = ( IWineD3DTextureImpl * ) iface ;
2005-06-23 18:44:19 +02:00
2005-01-17 14:44:57 +01:00
TRACE ( " (%p) : About to load texture \n " , This ) ;
2005-06-23 18:44:19 +02:00
2005-07-11 22:38:27 +02:00
if ( This - > baseTexture . textureName = = 0 ) setGlTextureDesc = TRUE ;
2005-03-29 21:01:00 +02:00
IWineD3DTexture_BindTexture ( iface ) ;
ENTER_GL ( ) ;
2005-07-11 22:38:27 +02:00
/* If were dirty then reload the surfaces */
2006-09-26 20:31:58 +02:00
if ( This - > baseTexture . dirty ) {
2005-07-11 22:38:27 +02:00
2005-03-14 11:12:52 +01:00
for ( i = 0 ; i < This - > baseTexture . levels ; i + + ) {
2005-07-11 22:38:27 +02:00
if ( setGlTextureDesc )
IWineD3DSurface_SetGlTextureDesc ( This - > surfaces [ i ] , This - > baseTexture . textureName , IWineD3DTexture_GetTextureDimensions ( iface ) ) ;
IWineD3DSurface_LoadTexture ( This - > surfaces [ i ] ) ;
2005-03-14 11:12:52 +01:00
}
2005-06-23 18:44:19 +02:00
2005-03-14 11:12:52 +01:00
/* No longer dirty */
2005-03-29 21:01:00 +02:00
This - > baseTexture . dirty = FALSE ;
2005-07-11 22:38:27 +02:00
} else {
TRACE ( " (%p) Texture not dirty, nothing to do \n " , iface ) ;
2005-03-14 11:12:52 +01:00
}
2005-01-17 14:44:57 +01:00
LEAVE_GL ( ) ;
return ;
}
2006-06-10 13:15:32 +02:00
static WINED3DRESOURCETYPE WINAPI IWineD3DTextureImpl_GetType ( IWineD3DTexture * iface ) {
2005-01-17 14:44:57 +01:00
return IWineD3DResourceImpl_GetType ( ( IWineD3DResource * ) iface ) ;
}
2006-06-10 13:15:32 +02:00
static HRESULT WINAPI IWineD3DTextureImpl_GetParent ( IWineD3DTexture * iface , IUnknown * * pParent ) {
2005-01-17 14:44:57 +01:00
return IWineD3DResourceImpl_GetParent ( ( IWineD3DResource * ) iface , pParent ) ;
}
/* ******************************************************
IWineD3DTexture IWineD3DBaseTexture parts follow
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2006-06-10 13:15:32 +02:00
static DWORD WINAPI IWineD3DTextureImpl_SetLOD ( IWineD3DTexture * iface , DWORD LODNew ) {
2005-01-17 14:44:57 +01:00
return IWineD3DBaseTextureImpl_SetLOD ( ( IWineD3DBaseTexture * ) iface , LODNew ) ;
}
2006-06-10 13:15:32 +02:00
static DWORD WINAPI IWineD3DTextureImpl_GetLOD ( IWineD3DTexture * iface ) {
2005-01-17 14:44:57 +01:00
return IWineD3DBaseTextureImpl_GetLOD ( ( IWineD3DBaseTexture * ) iface ) ;
}
2006-06-10 13:15:32 +02:00
static DWORD WINAPI IWineD3DTextureImpl_GetLevelCount ( IWineD3DTexture * iface ) {
2005-01-17 14:44:57 +01:00
return IWineD3DBaseTextureImpl_GetLevelCount ( ( IWineD3DBaseTexture * ) iface ) ;
}
2006-06-10 13:15:32 +02:00
static HRESULT WINAPI IWineD3DTextureImpl_SetAutoGenFilterType ( IWineD3DTexture * iface , WINED3DTEXTUREFILTERTYPE FilterType ) {
2005-01-17 14:44:57 +01:00
return IWineD3DBaseTextureImpl_SetAutoGenFilterType ( ( IWineD3DBaseTexture * ) iface , FilterType ) ;
}
2006-06-10 13:15:32 +02:00
static WINED3DTEXTUREFILTERTYPE WINAPI IWineD3DTextureImpl_GetAutoGenFilterType ( IWineD3DTexture * iface ) {
2005-01-17 14:44:57 +01:00
return IWineD3DBaseTextureImpl_GetAutoGenFilterType ( ( IWineD3DBaseTexture * ) iface ) ;
}
2006-06-10 13:15:32 +02:00
static void WINAPI IWineD3DTextureImpl_GenerateMipSubLevels ( IWineD3DTexture * iface ) {
2005-01-17 14:44:57 +01:00
return IWineD3DBaseTextureImpl_GenerateMipSubLevels ( ( IWineD3DBaseTexture * ) iface ) ;
}
/* Internal function, No d3d mapping */
2006-06-10 13:15:32 +02:00
static BOOL WINAPI IWineD3DTextureImpl_SetDirty ( IWineD3DTexture * iface , BOOL dirty ) {
2005-08-27 11:23:06 +02:00
return IWineD3DBaseTextureImpl_SetDirty ( ( IWineD3DBaseTexture * ) iface , dirty ) ;
2005-01-17 14:44:57 +01:00
}
2006-06-10 13:15:32 +02:00
static BOOL WINAPI IWineD3DTextureImpl_GetDirty ( IWineD3DTexture * iface ) {
2005-01-17 14:44:57 +01:00
return IWineD3DBaseTextureImpl_GetDirty ( ( IWineD3DBaseTexture * ) iface ) ;
}
2006-06-10 13:15:32 +02:00
static HRESULT WINAPI IWineD3DTextureImpl_BindTexture ( IWineD3DTexture * iface ) {
2005-03-14 11:12:52 +01:00
IWineD3DTextureImpl * This = ( IWineD3DTextureImpl * ) iface ;
2005-11-10 13:14:56 +01:00
TRACE ( " (%p) : relay to BaseTexture \n " , This ) ;
2005-03-29 21:01:00 +02:00
return IWineD3DBaseTextureImpl_BindTexture ( ( IWineD3DBaseTexture * ) iface ) ;
2005-03-14 11:12:52 +01:00
}
2006-06-10 13:15:32 +02:00
static HRESULT WINAPI IWineD3DTextureImpl_UnBindTexture ( IWineD3DTexture * iface ) {
2005-03-14 11:12:52 +01:00
IWineD3DTextureImpl * This = ( IWineD3DTextureImpl * ) iface ;
2005-11-10 13:14:56 +01:00
TRACE ( " (%p) : relay to BaseTexture \n " , This ) ;
2005-03-29 21:01:00 +02:00
return IWineD3DBaseTextureImpl_UnBindTexture ( ( IWineD3DBaseTexture * ) iface ) ;
2005-03-14 11:12:52 +01:00
}
2006-06-10 13:15:32 +02:00
static UINT WINAPI IWineD3DTextureImpl_GetTextureDimensions ( IWineD3DTexture * iface ) {
2005-03-14 11:12:52 +01:00
IWineD3DTextureImpl * This = ( IWineD3DTextureImpl * ) iface ;
2005-11-10 13:14:56 +01:00
TRACE ( " (%p) \n " , This ) ;
2005-03-14 11:12:52 +01:00
return GL_TEXTURE_2D ;
}
2006-06-10 13:15:32 +02:00
static void WINAPI IWineD3DTextureImpl_ApplyStateChanges ( IWineD3DTexture * iface ,
2005-08-03 13:00:28 +02:00
const DWORD textureStates [ WINED3D_HIGHEST_TEXTURE_STATE + 1 ] ,
const DWORD samplerStates [ WINED3D_HIGHEST_SAMPLER_STATE + 1 ] ) {
2005-08-03 21:49:05 +02:00
IWineD3DTextureImpl * This = ( IWineD3DTextureImpl * ) iface ;
float matrix [ 16 ] ;
2005-08-03 13:00:28 +02:00
IWineD3DBaseTextureImpl_ApplyStateChanges ( ( IWineD3DBaseTexture * ) iface , textureStates , samplerStates ) ;
2005-08-03 21:49:05 +02:00
/** non-power2 fixups using texture matrix **/
if ( This - > pow2scalingFactorX ! = 1.0f | | This - > pow2scalingFactorY ! = 1.0f ) {
/* Apply non-power2 mappings and texture offsets so long as the texture coords aren't projected or generated */
2006-10-31 09:16:44 +01:00
if ( ( ( textureStates [ WINED3DTSS_TEXCOORDINDEX ] & 0xFFFF0000 ) = = WINED3DTSS_TCI_PASSTHRU ) & &
2006-10-13 05:36:09 +02:00
( ~ textureStates [ WINED3DTSS_TEXTURETRANSFORMFLAGS ] & WINED3DTTFF_PROJECTED ) ) {
2005-08-03 21:49:05 +02:00
glMatrixMode ( GL_TEXTURE ) ;
memset ( matrix , 0 , sizeof ( matrix ) ) ;
matrix [ 0 ] = This - > pow2scalingFactorX ;
matrix [ 5 ] = This - > pow2scalingFactorY ;
#if 0 /* this isn't needed any more, I changed the translation in drawprim.c to 0.9/width instead of 1/width and everything lines up ok. left here as a reminder */
matrix [ 12 ] = - 0.25f / ( float ) This - > width ;
matrix [ 13 ] = - 0.75f / ( float ) This - > height ;
# endif
matrix [ 10 ] = 1 ;
matrix [ 15 ] = 1 ;
TRACE ( " (%p) Setup Matrix: \n " , This ) ;
TRACE ( " %f %f %f %f \n " , matrix [ 0 ] , matrix [ 1 ] , matrix [ 2 ] , matrix [ 3 ] ) ;
TRACE ( " %f %f %f %f \n " , matrix [ 4 ] , matrix [ 5 ] , matrix [ 6 ] , matrix [ 7 ] ) ;
TRACE ( " %f %f %f %f \n " , matrix [ 8 ] , matrix [ 9 ] , matrix [ 10 ] , matrix [ 11 ] ) ;
TRACE ( " %f %f %f %f \n " , matrix [ 12 ] , matrix [ 13 ] , matrix [ 14 ] , matrix [ 15 ] ) ;
TRACE ( " \n " ) ;
glMultMatrixf ( matrix ) ;
} else {
/* I don't expect nonpower 2 textures to be used with generated texture coordinates, but if they are present a fixme. */
FIXME ( " Non-power2 texture being used with generated texture coords \n " ) ;
}
}
2005-08-03 13:00:28 +02:00
}
2005-03-14 11:12:52 +01:00
2005-01-17 14:44:57 +01:00
/* *******************************************
IWineD3DTexture IWineD3DTexture parts follow
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2006-12-05 00:28:58 +01:00
static void WINAPI IWineD3DTextureImpl_Destroy ( IWineD3DTexture * iface , D3DCB_DESTROYSURFACEFN D3DCB_DestroySurface ) {
IWineD3DTextureImpl * This = ( IWineD3DTextureImpl * ) iface ;
int i ;
TRACE ( " (%p) : Cleaning up \n " , This ) ;
for ( i = 0 ; i < This - > baseTexture . levels ; i + + ) {
if ( This - > surfaces [ i ] ! = NULL ) {
/* Clean out the texture name we gave to the surface so that the surface doesn't try and release it */
IWineD3DSurface_SetGlTextureDesc ( This - > surfaces [ i ] , 0 , 0 ) ;
IWineD3DSurface_SetContainer ( This - > surfaces [ i ] , 0 ) ;
D3DCB_DestroySurface ( This - > surfaces [ i ] ) ;
}
}
TRACE ( " (%p) : cleaning up base texture \n " , This ) ;
IWineD3DBaseTextureImpl_CleanUp ( ( IWineD3DBaseTexture * ) iface ) ;
/* free the object */
HeapFree ( GetProcessHeap ( ) , 0 , This ) ;
}
2006-06-10 13:15:32 +02:00
static HRESULT WINAPI IWineD3DTextureImpl_GetLevelDesc ( IWineD3DTexture * iface , UINT Level , WINED3DSURFACE_DESC * pDesc ) {
2005-01-17 14:44:57 +01:00
IWineD3DTextureImpl * This = ( IWineD3DTextureImpl * ) iface ;
if ( Level < This - > baseTexture . levels ) {
TRACE ( " (%p) Level (%d) \n " , This , Level ) ;
2005-07-26 20:56:18 +02:00
return IWineD3DSurface_GetDesc ( This - > surfaces [ Level ] , pDesc ) ;
2005-01-17 14:44:57 +01:00
}
FIXME ( " (%p) level(%d) overflow Levels(%d) \n " , This , Level , This - > baseTexture . levels ) ;
2006-04-07 12:51:12 +02:00
return WINED3DERR_INVALIDCALL ;
2005-01-17 14:44:57 +01:00
}
2006-06-10 13:15:32 +02:00
static HRESULT WINAPI IWineD3DTextureImpl_GetSurfaceLevel ( IWineD3DTexture * iface , UINT Level , IWineD3DSurface * * ppSurfaceLevel ) {
2005-01-17 14:44:57 +01:00
IWineD3DTextureImpl * This = ( IWineD3DTextureImpl * ) iface ;
2006-04-07 12:51:12 +02:00
HRESULT hr = WINED3DERR_INVALIDCALL ;
2005-06-23 18:44:19 +02:00
if ( Level < This - > baseTexture . levels ) {
* ppSurfaceLevel = This - > surfaces [ Level ] ;
IWineD3DSurface_AddRef ( ( IWineD3DSurface * ) This - > surfaces [ Level ] ) ;
2006-04-07 12:51:12 +02:00
hr = WINED3D_OK ;
2005-06-23 18:44:19 +02:00
TRACE ( " (%p) : returning %p for level %d \n " , This , * ppSurfaceLevel , Level ) ;
}
2006-04-07 12:51:12 +02:00
if ( WINED3D_OK ! = hr ) {
2005-06-23 18:44:19 +02:00
WARN ( " (%p) level(%d) overflow Levels(%d) \n " , This , Level , This - > baseTexture . levels ) ;
* ppSurfaceLevel = NULL ; /* Just to be on the safe side.. */
}
return hr ;
2005-01-17 14:44:57 +01:00
}
2006-06-10 13:15:32 +02:00
static HRESULT WINAPI IWineD3DTextureImpl_LockRect ( IWineD3DTexture * iface , UINT Level , WINED3DLOCKED_RECT * pLockedRect ,
2005-01-17 14:44:57 +01:00
CONST RECT * pRect , DWORD Flags ) {
IWineD3DTextureImpl * This = ( IWineD3DTextureImpl * ) iface ;
2006-04-07 12:51:12 +02:00
HRESULT hr = WINED3DERR_INVALIDCALL ;
2005-01-17 14:44:57 +01:00
if ( Level < This - > baseTexture . levels ) {
2005-07-26 20:56:18 +02:00
hr = IWineD3DSurface_LockRect ( This - > surfaces [ Level ] , pLockedRect , pRect , Flags ) ;
2005-06-23 18:44:19 +02:00
}
2006-04-07 12:51:12 +02:00
if ( WINED3D_OK = = hr ) {
2005-06-23 18:44:19 +02:00
TRACE ( " (%p) Level (%d) success \n " , This , Level ) ;
2005-01-17 14:44:57 +01:00
} else {
2005-06-23 18:44:19 +02:00
WARN ( " (%p) level(%d) overflow Levels(%d) \n " , This , Level , This - > baseTexture . levels ) ;
2005-01-17 14:44:57 +01:00
}
2005-06-23 18:44:19 +02:00
2005-01-17 14:44:57 +01:00
return hr ;
}
2006-06-10 13:15:32 +02:00
static HRESULT WINAPI IWineD3DTextureImpl_UnlockRect ( IWineD3DTexture * iface , UINT Level ) {
2005-06-23 18:44:19 +02:00
IWineD3DTextureImpl * This = ( IWineD3DTextureImpl * ) iface ;
2006-04-07 12:51:12 +02:00
HRESULT hr = WINED3DERR_INVALIDCALL ;
2005-01-17 14:44:57 +01:00
if ( Level < This - > baseTexture . levels ) {
2005-06-23 18:44:19 +02:00
hr = IWineD3DSurface_UnlockRect ( This - > surfaces [ Level ] ) ;
}
2006-04-07 12:51:12 +02:00
if ( WINED3D_OK = = hr ) {
2005-06-23 18:44:19 +02:00
TRACE ( " (%p) Level (%d) success \n " , This , Level ) ;
2005-01-17 14:44:57 +01:00
} else {
2005-06-23 18:44:19 +02:00
WARN ( " (%p) level(%d) overflow Levels(%d) \n " , This , Level , This - > baseTexture . levels ) ;
2005-01-17 14:44:57 +01:00
}
return hr ;
}
2006-06-10 13:15:32 +02:00
static HRESULT WINAPI IWineD3DTextureImpl_AddDirtyRect ( IWineD3DTexture * iface , CONST RECT * pDirtyRect ) {
2005-01-17 14:44:57 +01:00
IWineD3DTextureImpl * This = ( IWineD3DTextureImpl * ) iface ;
This - > baseTexture . dirty = TRUE ;
2005-07-13 16:15:54 +02:00
TRACE ( " (%p) : dirtyfication of surface Level (0) \n " , This ) ;
2005-07-26 20:56:18 +02:00
return IWineD3DSurface_AddDirtyRect ( This - > surfaces [ 0 ] , pDirtyRect ) ;
2005-01-17 14:44:57 +01:00
}
2005-06-06 21:50:35 +02:00
const IWineD3DTextureVtbl IWineD3DTexture_Vtbl =
2005-01-17 14:44:57 +01:00
{
2005-03-14 11:12:52 +01:00
/* IUnknown */
2005-01-17 14:44:57 +01:00
IWineD3DTextureImpl_QueryInterface ,
IWineD3DTextureImpl_AddRef ,
IWineD3DTextureImpl_Release ,
2005-06-23 18:44:19 +02:00
/* IWineD3DResource */
2005-01-17 14:44:57 +01:00
IWineD3DTextureImpl_GetParent ,
IWineD3DTextureImpl_GetDevice ,
IWineD3DTextureImpl_SetPrivateData ,
IWineD3DTextureImpl_GetPrivateData ,
IWineD3DTextureImpl_FreePrivateData ,
IWineD3DTextureImpl_SetPriority ,
IWineD3DTextureImpl_GetPriority ,
IWineD3DTextureImpl_PreLoad ,
IWineD3DTextureImpl_GetType ,
2005-06-23 18:44:19 +02:00
/* IWineD3DBaseTexture */
2005-01-17 14:44:57 +01:00
IWineD3DTextureImpl_SetLOD ,
IWineD3DTextureImpl_GetLOD ,
IWineD3DTextureImpl_GetLevelCount ,
IWineD3DTextureImpl_SetAutoGenFilterType ,
IWineD3DTextureImpl_GetAutoGenFilterType ,
IWineD3DTextureImpl_GenerateMipSubLevels ,
IWineD3DTextureImpl_SetDirty ,
IWineD3DTextureImpl_GetDirty ,
2005-03-14 11:12:52 +01:00
IWineD3DTextureImpl_BindTexture ,
IWineD3DTextureImpl_UnBindTexture ,
2005-06-23 18:44:19 +02:00
IWineD3DTextureImpl_GetTextureDimensions ,
2005-08-03 13:00:28 +02:00
IWineD3DTextureImpl_ApplyStateChanges ,
2005-06-23 18:44:19 +02:00
/* IWineD3DTexture */
2006-12-05 00:28:58 +01:00
IWineD3DTextureImpl_Destroy ,
2005-01-17 14:44:57 +01:00
IWineD3DTextureImpl_GetLevelDesc ,
IWineD3DTextureImpl_GetSurfaceLevel ,
IWineD3DTextureImpl_LockRect ,
IWineD3DTextureImpl_UnlockRect ,
IWineD3DTextureImpl_AddDirtyRect
} ;