2005-01-17 14:44:57 +01:00
|
|
|
/*
|
2005-03-14 11:12:52 +01:00
|
|
|
* IWineD3DCubeTexture implementation
|
2005-01-17 14:44:57 +01:00
|
|
|
*
|
|
|
|
* Copyright 2002-2005 Jason Edmeades
|
2005-03-02 14:44:58 +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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "wined3d_private.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d);
|
|
|
|
#define GLINFO_LOCATION ((IWineD3DImpl *)(((IWineD3DDeviceImpl *)This->resource.wineD3DDevice)->wineD3D))->gl_info
|
|
|
|
|
|
|
|
static const GLenum cube_targets[6] = {
|
|
|
|
#if defined(GL_VERSION_1_3)
|
|
|
|
GL_TEXTURE_CUBE_MAP_POSITIVE_X,
|
|
|
|
GL_TEXTURE_CUBE_MAP_NEGATIVE_X,
|
|
|
|
GL_TEXTURE_CUBE_MAP_POSITIVE_Y,
|
|
|
|
GL_TEXTURE_CUBE_MAP_NEGATIVE_Y,
|
|
|
|
GL_TEXTURE_CUBE_MAP_POSITIVE_Z,
|
|
|
|
GL_TEXTURE_CUBE_MAP_NEGATIVE_Z
|
|
|
|
#else
|
|
|
|
GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB,
|
|
|
|
GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB,
|
|
|
|
GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB,
|
|
|
|
GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB,
|
|
|
|
GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB,
|
|
|
|
GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
/* *******************************************
|
|
|
|
IWineD3DCubeTexture IUnknown parts follow
|
|
|
|
******************************************* */
|
|
|
|
HRESULT WINAPI IWineD3DCubeTextureImpl_QueryInterface(IWineD3DCubeTexture *iface, REFIID riid, LPVOID *ppobj)
|
|
|
|
{
|
|
|
|
IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
|
2005-03-02 14:44:58 +01:00
|
|
|
TRACE("(%p)->(%s,%p)\n",This,debugstr_guid(riid),ppobj);
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
|
|
|
|| IsEqualGUID(riid, &IID_IWineD3DResource)
|
|
|
|
|| IsEqualGUID(riid, &IID_IWineD3DBaseTexture)
|
|
|
|
|| IsEqualGUID(riid, &IID_IWineD3DTexture)) {
|
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
*ppobj = This;
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
2005-01-17 14:44:57 +01:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI IWineD3DCubeTextureImpl_AddRef(IWineD3DCubeTexture *iface) {
|
|
|
|
IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
|
|
|
|
TRACE("(%p) : AddRef increasing from %ld\n", This, This->resource.ref);
|
|
|
|
return InterlockedIncrement(&This->resource.ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI IWineD3DCubeTextureImpl_Release(IWineD3DCubeTexture *iface) {
|
|
|
|
IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
|
|
|
|
ULONG ref;
|
|
|
|
TRACE("(%p) : Releasing from %ld\n", This, This->resource.ref);
|
|
|
|
ref = InterlockedDecrement(&This->resource.ref);
|
|
|
|
if (ref == 0) {
|
|
|
|
int i,j;
|
2005-07-14 14:31:05 +02:00
|
|
|
TRACE("(%p) : Cleaning up\n",This);
|
2005-01-17 14:44:57 +01:00
|
|
|
for (i = 0; i < This->baseTexture.levels; i++) {
|
2005-07-14 14:31:05 +02:00
|
|
|
for (j = 0; j < 6; j++) {
|
|
|
|
if (This->surfaces[j][i] != NULL) {
|
|
|
|
/* Because the surfaces were created using a callback we need to release there parent otehrwise we leave the parent hanging */
|
|
|
|
IUnknown* surfaceParent;
|
|
|
|
/* Clean out the texture name we gave to the suface so that the surface doesn't try and release it */
|
|
|
|
IWineD3DSurface_SetGlTextureDesc(This->surfaces[j][i], 0, 0);
|
|
|
|
TRACE("(%p) : Releasing surface%d %d %p\n", This, j, i, This->surfaces[j][i]);
|
|
|
|
IWineD3DSurface_GetParent(This->surfaces[j][i], &surfaceParent);
|
|
|
|
IUnknown_Release(surfaceParent);
|
|
|
|
IUnknown_Release(surfaceParent);
|
|
|
|
}
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
}
|
2005-03-29 21:01:00 +02:00
|
|
|
IWineD3DBaseTextureImpl_CleanUp((IWineD3DBaseTexture *) iface);
|
2005-07-14 14:31:05 +02:00
|
|
|
/* finally delete the object */
|
2005-01-17 14:44:57 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ****************************************************
|
|
|
|
IWineD3DCubeTexture IWineD3DResource parts follow
|
|
|
|
**************************************************** */
|
|
|
|
HRESULT WINAPI IWineD3DCubeTextureImpl_GetDevice(IWineD3DCubeTexture *iface, IWineD3DDevice** ppDevice) {
|
|
|
|
return IWineD3DResourceImpl_GetDevice((IWineD3DResource *)iface, ppDevice);
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IWineD3DCubeTextureImpl_SetPrivateData(IWineD3DCubeTexture *iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags) {
|
|
|
|
return IWineD3DResourceImpl_SetPrivateData((IWineD3DResource *)iface, refguid, pData, SizeOfData, Flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IWineD3DCubeTextureImpl_GetPrivateData(IWineD3DCubeTexture *iface, REFGUID refguid, void* pData, DWORD* pSizeOfData) {
|
|
|
|
return IWineD3DResourceImpl_GetPrivateData((IWineD3DResource *)iface, refguid, pData, pSizeOfData);
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IWineD3DCubeTextureImpl_FreePrivateData(IWineD3DCubeTexture *iface, REFGUID refguid) {
|
|
|
|
return IWineD3DResourceImpl_FreePrivateData((IWineD3DResource *)iface, refguid);
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD WINAPI IWineD3DCubeTextureImpl_SetPriority(IWineD3DCubeTexture *iface, DWORD PriorityNew) {
|
|
|
|
return IWineD3DResourceImpl_SetPriority((IWineD3DResource *)iface, PriorityNew);
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD WINAPI IWineD3DCubeTextureImpl_GetPriority(IWineD3DCubeTexture *iface) {
|
|
|
|
return IWineD3DResourceImpl_GetPriority((IWineD3DResource *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WINAPI IWineD3DCubeTextureImpl_PreLoad(IWineD3DCubeTexture *iface) {
|
|
|
|
/* Override the IWineD3DResource Preload method */
|
|
|
|
unsigned int i,j;
|
2005-07-11 22:38:27 +02:00
|
|
|
BOOL setGlTextureDesc = FALSE;
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
|
2005-07-13 16:15:54 +02:00
|
|
|
|
2005-01-17 14:44:57 +01:00
|
|
|
TRACE("(%p) : About to load texture: dirtified(%d)\n", This, This->baseTexture.dirty);
|
|
|
|
|
2005-07-11 22:38:27 +02:00
|
|
|
if (This->baseTexture.textureName == 0) setGlTextureDesc = TRUE;
|
|
|
|
|
2005-03-29 21:01:00 +02:00
|
|
|
IWineD3DCubeTexture_BindTexture(iface);
|
2005-07-13 16:15:54 +02:00
|
|
|
|
2005-01-17 14:44:57 +01:00
|
|
|
ENTER_GL();
|
2005-03-14 11:12:52 +01:00
|
|
|
/* If were dirty then reload the surfaces */
|
2005-07-11 22:38:27 +02:00
|
|
|
if (This->baseTexture.dirty != FALSE) {
|
2005-03-14 11:12:52 +01:00
|
|
|
for (i = 0; i < This->baseTexture.levels; i++) {
|
2005-07-14 14:31:05 +02:00
|
|
|
for (j = 0; j < 6; j++) {
|
|
|
|
if(setGlTextureDesc)
|
|
|
|
IWineD3DSurface_SetGlTextureDesc(This->surfaces[j][i], This->baseTexture.textureName, cube_targets[j]);
|
|
|
|
IWineD3DSurface_LoadTexture(This->surfaces[j][i]);
|
|
|
|
}
|
2005-01-17 14:44:57 +01: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-01-17 14:44:57 +01:00
|
|
|
}
|
2005-03-29 21:01:00 +02:00
|
|
|
LEAVE_GL();
|
2005-01-17 14:44:57 +01:00
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
D3DRESOURCETYPE WINAPI IWineD3DCubeTextureImpl_GetType(IWineD3DCubeTexture *iface) {
|
|
|
|
return IWineD3DResourceImpl_GetType((IWineD3DResource *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IWineD3DCubeTextureImpl_GetParent(IWineD3DCubeTexture *iface, IUnknown **pParent) {
|
|
|
|
return IWineD3DResourceImpl_GetParent((IWineD3DResource *)iface, pParent);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ******************************************************
|
|
|
|
IWineD3DCubeTexture IWineD3DBaseTexture parts follow
|
|
|
|
****************************************************** */
|
|
|
|
DWORD WINAPI IWineD3DCubeTextureImpl_SetLOD(IWineD3DCubeTexture *iface, DWORD LODNew) {
|
|
|
|
return IWineD3DBaseTextureImpl_SetLOD((IWineD3DBaseTexture *)iface, LODNew);
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD WINAPI IWineD3DCubeTextureImpl_GetLOD(IWineD3DCubeTexture *iface) {
|
|
|
|
return IWineD3DBaseTextureImpl_GetLOD((IWineD3DBaseTexture *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD WINAPI IWineD3DCubeTextureImpl_GetLevelCount(IWineD3DCubeTexture *iface) {
|
|
|
|
return IWineD3DBaseTextureImpl_GetLevelCount((IWineD3DBaseTexture *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IWineD3DCubeTextureImpl_SetAutoGenFilterType(IWineD3DCubeTexture *iface, D3DTEXTUREFILTERTYPE FilterType) {
|
|
|
|
return IWineD3DBaseTextureImpl_SetAutoGenFilterType((IWineD3DBaseTexture *)iface, FilterType);
|
|
|
|
}
|
|
|
|
|
|
|
|
D3DTEXTUREFILTERTYPE WINAPI IWineD3DCubeTextureImpl_GetAutoGenFilterType(IWineD3DCubeTexture *iface) {
|
|
|
|
return IWineD3DBaseTextureImpl_GetAutoGenFilterType((IWineD3DBaseTexture *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WINAPI IWineD3DCubeTextureImpl_GenerateMipSubLevels(IWineD3DCubeTexture *iface) {
|
|
|
|
return IWineD3DBaseTextureImpl_GenerateMipSubLevels((IWineD3DBaseTexture *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Internal function, No d3d mapping */
|
|
|
|
BOOL WINAPI IWineD3DCubeTextureImpl_SetDirty(IWineD3DCubeTexture *iface, BOOL dirty) {
|
2005-03-14 11:12:52 +01:00
|
|
|
return IWineD3DBaseTextureImpl_SetDirty((IWineD3DBaseTexture *)iface, dirty);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2005-03-14 11:12:52 +01:00
|
|
|
/* Internal function, No d3d mapping */
|
2005-01-17 14:44:57 +01:00
|
|
|
BOOL WINAPI IWineD3DCubeTextureImpl_GetDirty(IWineD3DCubeTexture *iface) {
|
|
|
|
return IWineD3DBaseTextureImpl_GetDirty((IWineD3DBaseTexture *)iface);
|
|
|
|
}
|
|
|
|
|
2005-03-14 11:12:52 +01:00
|
|
|
HRESULT WINAPI IWineD3DCubeTextureImpl_BindTexture(IWineD3DCubeTexture *iface) {
|
|
|
|
IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
|
2005-03-29 21:01:00 +02:00
|
|
|
TRACE("(%p) : relay to BaseTexture \n", This);
|
|
|
|
return IWineD3DBaseTextureImpl_BindTexture((IWineD3DBaseTexture *)iface);
|
2005-03-14 11:12:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IWineD3DCubeTextureImpl_UnBindTexture(IWineD3DCubeTexture *iface) {
|
|
|
|
IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
|
2005-03-29 21:01:00 +02:00
|
|
|
TRACE("(%p) : relay to BaseTexture \n", This);
|
|
|
|
return IWineD3DBaseTextureImpl_UnBindTexture((IWineD3DBaseTexture *)iface);
|
2005-03-14 11:12:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
UINT WINAPI IWineD3DCubeTextureImpl_GetTextureDimensions(IWineD3DCubeTexture *iface){
|
|
|
|
IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
|
|
|
|
TRACE("(%p) \n", This);
|
2005-07-13 16:15:54 +02:00
|
|
|
|
2005-07-14 14:31:05 +02:00
|
|
|
return GL_TEXTURE_CUBE_MAP_ARB;
|
2005-03-14 11:12:52 +01:00
|
|
|
}
|
|
|
|
|
2005-01-17 14:44:57 +01:00
|
|
|
/* *******************************************
|
|
|
|
IWineD3DCubeTexture IWineD3DCubeTexture parts follow
|
|
|
|
******************************************* */
|
|
|
|
HRESULT WINAPI IWineD3DCubeTextureImpl_GetLevelDesc(IWineD3DCubeTexture *iface, UINT Level, WINED3DSURFACE_DESC* pDesc) {
|
|
|
|
IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
|
2005-07-13 16:15:54 +02:00
|
|
|
|
2005-01-17 14:44:57 +01:00
|
|
|
if (Level < This->baseTexture.levels) {
|
|
|
|
TRACE("(%p) level (%d)\n", This, Level);
|
2005-07-14 14:31:05 +02:00
|
|
|
return IWineD3DSurface_GetDesc(This->surfaces[0][Level], pDesc);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
FIXME("(%p) level(%d) overflow Levels(%d)\n", This, Level, This->baseTexture.levels);
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IWineD3DCubeTextureImpl_GetCubeMapSurface(IWineD3DCubeTexture *iface, D3DCUBEMAP_FACES FaceType, UINT Level, IWineD3DSurface** ppCubeMapSurface) {
|
|
|
|
IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
|
2005-07-14 14:31:05 +02:00
|
|
|
HRESULT hr = D3DERR_INVALIDCALL;
|
|
|
|
|
2005-01-17 14:44:57 +01:00
|
|
|
if (Level < This->baseTexture.levels) {
|
2005-07-14 14:31:05 +02:00
|
|
|
*ppCubeMapSurface = This->surfaces[FaceType][Level];
|
|
|
|
IWineD3DSurface_AddRef(*ppCubeMapSurface);
|
|
|
|
|
|
|
|
hr = D3D_OK;
|
|
|
|
}
|
|
|
|
if (D3D_OK == hr) {
|
2005-01-17 14:44:57 +01:00
|
|
|
TRACE("(%p) -> faceType(%d) level(%d) returning surface@%p \n", This, FaceType, Level, This->surfaces[FaceType][Level]);
|
|
|
|
} else {
|
2005-07-14 14:31:05 +02:00
|
|
|
WARN("(%p) level(%d) overflow Levels(%d)\n", This, Level, This->baseTexture.levels);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
2005-07-14 14:31:05 +02:00
|
|
|
|
|
|
|
return hr;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IWineD3DCubeTextureImpl_LockRect(IWineD3DCubeTexture *iface, D3DCUBEMAP_FACES FaceType, UINT Level, D3DLOCKED_RECT* pLockedRect, CONST RECT* pRect, DWORD Flags) {
|
2005-07-14 14:31:05 +02:00
|
|
|
HRESULT hr = D3DERR_INVALIDCALL;
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
|
|
|
|
|
|
|
|
if (Level < This->baseTexture.levels) {
|
2005-07-14 14:31:05 +02:00
|
|
|
hr = IWineD3DSurface_LockRect(This->surfaces[FaceType][Level], pLockedRect, pRect, Flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (D3D_OK == hr) {
|
|
|
|
TRACE("(%p) -> faceType(%d) level(%d) returning memory@%p success(%lu)\n", This, FaceType, Level, pLockedRect->pBits, hr);
|
2005-01-17 14:44:57 +01:00
|
|
|
} else {
|
2005-07-14 14:31:05 +02:00
|
|
|
WARN("(%p) level(%d) overflow Levels(%d)\n", This, Level, This->baseTexture.levels);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
2005-07-14 14:31:05 +02:00
|
|
|
|
2005-01-17 14:44:57 +01:00
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IWineD3DCubeTextureImpl_UnlockRect(IWineD3DCubeTexture *iface, D3DCUBEMAP_FACES FaceType, UINT Level) {
|
2005-07-14 14:31:05 +02:00
|
|
|
HRESULT hr = D3DERR_INVALIDCALL;
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
|
|
|
|
|
|
|
|
if (Level < This->baseTexture.levels) {
|
2005-07-14 14:31:05 +02:00
|
|
|
hr = IWineD3DSurface_UnlockRect((IWineD3DSurface *) This->surfaces[FaceType][Level]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (D3D_OK == hr) {
|
|
|
|
TRACE("(%p) -> faceType(%d) level(%d) success(%lu)\n", This, FaceType, Level, hr);
|
2005-01-17 14:44:57 +01:00
|
|
|
} else {
|
2005-07-14 14:31:05 +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;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IWineD3DCubeTextureImpl_AddDirtyRect(IWineD3DCubeTexture *iface, D3DCUBEMAP_FACES FaceType, CONST RECT* pDirtyRect) {
|
|
|
|
IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
|
|
|
|
This->baseTexture.dirty = TRUE;
|
2005-07-13 16:15:54 +02:00
|
|
|
TRACE("(%p) : dirtyfication of faceType(%d) Level (0)\n", This, FaceType);
|
2005-07-14 14:31:05 +02:00
|
|
|
return IWineD3DSurface_AddDirtyRect(This->surfaces[FaceType][0], pDirtyRect);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-06 21:50:35 +02:00
|
|
|
const IWineD3DCubeTextureVtbl IWineD3DCubeTexture_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
|
|
|
IWineD3DCubeTextureImpl_QueryInterface,
|
|
|
|
IWineD3DCubeTextureImpl_AddRef,
|
|
|
|
IWineD3DCubeTextureImpl_Release,
|
2005-03-14 11:12:52 +01:00
|
|
|
/* IWineD3DResource */
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DCubeTextureImpl_GetParent,
|
|
|
|
IWineD3DCubeTextureImpl_GetDevice,
|
|
|
|
IWineD3DCubeTextureImpl_SetPrivateData,
|
|
|
|
IWineD3DCubeTextureImpl_GetPrivateData,
|
|
|
|
IWineD3DCubeTextureImpl_FreePrivateData,
|
|
|
|
IWineD3DCubeTextureImpl_SetPriority,
|
|
|
|
IWineD3DCubeTextureImpl_GetPriority,
|
|
|
|
IWineD3DCubeTextureImpl_PreLoad,
|
|
|
|
IWineD3DCubeTextureImpl_GetType,
|
2005-07-13 16:15:54 +02:00
|
|
|
/* IWineD3DBaseTexture */
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DCubeTextureImpl_SetLOD,
|
|
|
|
IWineD3DCubeTextureImpl_GetLOD,
|
|
|
|
IWineD3DCubeTextureImpl_GetLevelCount,
|
|
|
|
IWineD3DCubeTextureImpl_SetAutoGenFilterType,
|
|
|
|
IWineD3DCubeTextureImpl_GetAutoGenFilterType,
|
|
|
|
IWineD3DCubeTextureImpl_GenerateMipSubLevels,
|
|
|
|
IWineD3DCubeTextureImpl_SetDirty,
|
|
|
|
IWineD3DCubeTextureImpl_GetDirty,
|
2005-03-14 11:12:52 +01:00
|
|
|
IWineD3DCubeTextureImpl_BindTexture,
|
|
|
|
IWineD3DCubeTextureImpl_UnBindTexture,
|
2005-07-13 16:15:54 +02:00
|
|
|
IWineD3DCubeTextureImpl_GetTextureDimensions,
|
|
|
|
/* IWineD3DCubeTexture */
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DCubeTextureImpl_GetLevelDesc,
|
|
|
|
IWineD3DCubeTextureImpl_GetCubeMapSurface,
|
|
|
|
IWineD3DCubeTextureImpl_LockRect,
|
|
|
|
IWineD3DCubeTextureImpl_UnlockRect,
|
|
|
|
IWineD3DCubeTextureImpl_AddDirtyRect
|
|
|
|
};
|