2002-09-28 00:46:16 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DCubeTexture8 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
|
|
|
|
|
|
|
/* IDirect3DCubeTexture8 IUnknown parts follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DCubeTexture8Impl_QueryInterface(LPDIRECT3DCUBETEXTURE8 iface, REFIID riid, LPVOID *ppobj) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)iface;
|
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_IDirect3DCubeTexture8)) {
|
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 IDirect3DCubeTexture8Impl_AddRef(LPDIRECT3DCUBETEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)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
|
|
|
|
2009-09-17 12:35:25 +02:00
|
|
|
if (ref == 1)
|
|
|
|
{
|
|
|
|
IUnknown_AddRef(This->parentDevice);
|
|
|
|
wined3d_mutex_lock();
|
|
|
|
IWineD3DCubeTexture_AddRef(This->wineD3DCubeTexture);
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
}
|
|
|
|
|
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 IDirect3DCubeTexture8Impl_Release(LPDIRECT3DCUBETEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)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);
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
if (ref == 0) {
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("Releasing child %p\n", This->wineD3DCubeTexture);
|
2009-08-25 08:17:14 +02:00
|
|
|
|
2009-09-17 12:35:25 +02:00
|
|
|
IUnknown_Release(This->parentDevice);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-09-17 12:35:25 +02:00
|
|
|
IWineD3DCubeTexture_Release(This->wineD3DCubeTexture);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IDirect3DCubeTexture8 IDirect3DResource8 Interface follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DCubeTexture8Impl_GetDevice(LPDIRECT3DCUBETEXTURE8 iface, IDirect3DDevice8 **ppDevice) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)iface;
|
2009-03-23 08:30:16 +01:00
|
|
|
IWineD3DDevice *wined3d_device;
|
2007-05-26 20:02:46 +02:00
|
|
|
HRESULT hr;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2007-05-26 20:02:46 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-03-23 08:30:16 +01:00
|
|
|
hr = IWineD3DCubeTexture_GetDevice(This->wineD3DCubeTexture, &wined3d_device);
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
IWineD3DDevice_GetParent(wined3d_device, (IUnknown **)ppDevice);
|
|
|
|
IWineD3DDevice_Release(wined3d_device);
|
|
|
|
}
|
2009-08-25 23:52:00 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-08-25 08:17:14 +02:00
|
|
|
|
2007-05-26 20:02:46 +02:00
|
|
|
return hr;
|
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 IDirect3DCubeTexture8Impl_SetPrivateData(LPDIRECT3DCUBETEXTURE8 iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)iface;
|
2007-05-26 20:02:46 +02:00
|
|
|
HRESULT hr;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:02:46 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-05-26 20:02:46 +02:00
|
|
|
hr = IWineD3DCubeTexture_SetPrivateData(This->wineD3DCubeTexture,refguid,pData,SizeOfData,Flags);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:02:46 +02:00
|
|
|
return hr;
|
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 IDirect3DCubeTexture8Impl_GetPrivateData(LPDIRECT3DCUBETEXTURE8 iface, REFGUID refguid, void *pData, DWORD *pSizeOfData) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)iface;
|
2007-05-26 20:02:46 +02:00
|
|
|
HRESULT hr;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:02:46 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-05-26 20:02:46 +02:00
|
|
|
hr = IWineD3DCubeTexture_GetPrivateData(This->wineD3DCubeTexture,refguid,pData,pSizeOfData);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:02:46 +02:00
|
|
|
return hr;
|
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 IDirect3DCubeTexture8Impl_FreePrivateData(LPDIRECT3DCUBETEXTURE8 iface, REFGUID refguid) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)iface;
|
2007-05-26 20:02:46 +02:00
|
|
|
HRESULT hr;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:02:46 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-05-26 20:02:46 +02:00
|
|
|
hr = IWineD3DCubeTexture_FreePrivateData(This->wineD3DCubeTexture,refguid);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:02:46 +02:00
|
|
|
return hr;
|
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 IDirect3DCubeTexture8Impl_SetPriority(LPDIRECT3DCUBETEXTURE8 iface, DWORD PriorityNew) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)iface;
|
2007-05-26 20:02:46 +02:00
|
|
|
DWORD ret;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:02:46 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-05-26 20:02:46 +02:00
|
|
|
ret = IWineD3DCubeTexture_SetPriority(This->wineD3DCubeTexture, PriorityNew);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:02:46 +02:00
|
|
|
return ret;
|
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 IDirect3DCubeTexture8Impl_GetPriority(LPDIRECT3DCUBETEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)iface;
|
2007-05-26 20:02:46 +02:00
|
|
|
DWORD ret;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:02:46 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-05-26 20:02:46 +02:00
|
|
|
ret = IWineD3DCubeTexture_GetPriority(This->wineD3DCubeTexture);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:02:46 +02:00
|
|
|
return ret;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-05-14 01:52:23 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static void WINAPI IDirect3DCubeTexture8Impl_PreLoad(LPDIRECT3DCUBETEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:02:46 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-04-07 22:27:55 +02:00
|
|
|
IWineD3DCubeTexture_PreLoad(This->wineD3DCubeTexture);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static D3DRESOURCETYPE WINAPI IDirect3DCubeTexture8Impl_GetType(LPDIRECT3DCUBETEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)iface;
|
2007-05-26 20:02:46 +02:00
|
|
|
D3DRESOURCETYPE type;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:02:46 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-05-26 20:02:46 +02:00
|
|
|
type = IWineD3DCubeTexture_GetType(This->wineD3DCubeTexture);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:02:46 +02:00
|
|
|
return type;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IDirect3DCubeTexture8 IDirect3DBaseTexture8 Interface follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static DWORD WINAPI IDirect3DCubeTexture8Impl_SetLOD(LPDIRECT3DCUBETEXTURE8 iface, DWORD LODNew) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)iface;
|
2007-05-26 20:02:46 +02:00
|
|
|
DWORD lod;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:02:46 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-05-26 20:02:46 +02:00
|
|
|
lod = IWineD3DCubeTexture_SetLOD(This->wineD3DCubeTexture, LODNew);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:02:46 +02:00
|
|
|
return lod;
|
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 IDirect3DCubeTexture8Impl_GetLOD(LPDIRECT3DCUBETEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)iface;
|
2007-05-26 20:02:46 +02:00
|
|
|
DWORD lod;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:02:46 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-05-26 20:02:46 +02:00
|
|
|
lod = IWineD3DCubeTexture_GetLOD((LPDIRECT3DBASETEXTURE8) This);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:02:46 +02:00
|
|
|
return lod;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static DWORD WINAPI IDirect3DCubeTexture8Impl_GetLevelCount(LPDIRECT3DCUBETEXTURE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)iface;
|
2007-05-26 20:02:46 +02:00
|
|
|
DWORD cnt;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:02:46 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-05-26 20:02:46 +02:00
|
|
|
cnt = IWineD3DCubeTexture_GetLevelCount(This->wineD3DCubeTexture);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:02:46 +02:00
|
|
|
return cnt;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IDirect3DCubeTexture8 Interface follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DCubeTexture8Impl_GetLevelDesc(LPDIRECT3DCUBETEXTURE8 iface, UINT Level, D3DSURFACE_DESC *pDesc) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)iface;
|
2007-05-26 20:02:46 +02:00
|
|
|
HRESULT hr;
|
2006-02-20 11:11:35 +01:00
|
|
|
WINED3DSURFACE_DESC wined3ddesc;
|
|
|
|
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-05-26 20:02:46 +02:00
|
|
|
hr = IWineD3DCubeTexture_GetLevelDesc(This->wineD3DCubeTexture, Level, &wined3ddesc);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-02-19 16:59:41 +01:00
|
|
|
|
2009-06-15 09:06:50 +02:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
pDesc->Format = d3dformat_from_wined3dformat(wined3ddesc.format);
|
|
|
|
pDesc->Type = wined3ddesc.resource_type;
|
|
|
|
pDesc->Usage = wined3ddesc.usage;
|
|
|
|
pDesc->Pool = wined3ddesc.pool;
|
|
|
|
pDesc->Size = wined3ddesc.size;
|
|
|
|
pDesc->MultiSampleType = wined3ddesc.multisample_type;
|
|
|
|
pDesc->Width = wined3ddesc.width;
|
|
|
|
pDesc->Height = wined3ddesc.height;
|
|
|
|
}
|
2009-02-19 16:59:41 +01:00
|
|
|
|
2007-05-26 20:02:46 +02:00
|
|
|
return hr;
|
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 IDirect3DCubeTexture8Impl_GetCubeMapSurface(LPDIRECT3DCUBETEXTURE8 iface, D3DCUBEMAP_FACES FaceType, UINT Level, IDirect3DSurface8 **ppCubeMapSurface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
HRESULT hrc = D3D_OK;
|
|
|
|
IWineD3DSurface *mySurface = NULL;
|
|
|
|
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2006-04-04 15:51:28 +02:00
|
|
|
hrc = IWineD3DCubeTexture_GetCubeMapSurface(This->wineD3DCubeTexture, (WINED3DCUBEMAP_FACES) FaceType, Level, &mySurface);
|
2006-02-20 11:11:35 +01:00
|
|
|
if (hrc == D3D_OK && NULL != ppCubeMapSurface) {
|
|
|
|
IWineD3DCubeTexture_GetParent(mySurface, (IUnknown **)ppCubeMapSurface);
|
|
|
|
IWineD3DCubeTexture_Release(mySurface);
|
2003-05-12 05:10:27 +02:00
|
|
|
}
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
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 IDirect3DCubeTexture8Impl_LockRect(LPDIRECT3DCUBETEXTURE8 iface, D3DCUBEMAP_FACES FaceType, UINT Level, D3DLOCKED_RECT* pLockedRect, CONST RECT *pRect, DWORD Flags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)iface;
|
2007-05-26 20:02:46 +02:00
|
|
|
HRESULT hr;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:02:46 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-05-26 20:02:46 +02:00
|
|
|
hr = IWineD3DCubeTexture_LockRect(This->wineD3DCubeTexture, (WINED3DCUBEMAP_FACES) FaceType, Level, (WINED3DLOCKED_RECT *) pLockedRect, pRect, Flags);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:02:46 +02:00
|
|
|
return hr;
|
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 IDirect3DCubeTexture8Impl_UnlockRect(LPDIRECT3DCUBETEXTURE8 iface, D3DCUBEMAP_FACES FaceType, UINT Level) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)iface;
|
2007-05-26 20:02:46 +02:00
|
|
|
HRESULT hr;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:02:46 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-05-26 20:02:46 +02:00
|
|
|
hr = IWineD3DCubeTexture_UnlockRect(This->wineD3DCubeTexture, (WINED3DCUBEMAP_FACES) FaceType, Level);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:02:46 +02:00
|
|
|
return hr;
|
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 IDirect3DCubeTexture8Impl_AddDirtyRect(LPDIRECT3DCUBETEXTURE8 iface, D3DCUBEMAP_FACES FaceType, CONST RECT *pDirtyRect) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DCubeTexture8Impl *This = (IDirect3DCubeTexture8Impl *)iface;
|
2007-05-26 20:02:46 +02:00
|
|
|
HRESULT hr;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:02:46 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-05-26 20:02:46 +02:00
|
|
|
hr = IWineD3DCubeTexture_AddDirtyRect(This->wineD3DCubeTexture, (WINED3DCUBEMAP_FACES) FaceType, pDirtyRect);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:02:46 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2009-09-17 12:35:24 +02:00
|
|
|
static const IDirect3DCubeTexture8Vtbl Direct3DCubeTexture8_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
|
|
|
IDirect3DCubeTexture8Impl_QueryInterface,
|
|
|
|
IDirect3DCubeTexture8Impl_AddRef,
|
|
|
|
IDirect3DCubeTexture8Impl_Release,
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IDirect3DResource8 */
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DCubeTexture8Impl_GetDevice,
|
|
|
|
IDirect3DCubeTexture8Impl_SetPrivateData,
|
|
|
|
IDirect3DCubeTexture8Impl_GetPrivateData,
|
|
|
|
IDirect3DCubeTexture8Impl_FreePrivateData,
|
|
|
|
IDirect3DCubeTexture8Impl_SetPriority,
|
|
|
|
IDirect3DCubeTexture8Impl_GetPriority,
|
|
|
|
IDirect3DCubeTexture8Impl_PreLoad,
|
|
|
|
IDirect3DCubeTexture8Impl_GetType,
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IDirect3DBaseTexture8 */
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DCubeTexture8Impl_SetLOD,
|
|
|
|
IDirect3DCubeTexture8Impl_GetLOD,
|
|
|
|
IDirect3DCubeTexture8Impl_GetLevelCount,
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IDirect3DCubeTexture8 */
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DCubeTexture8Impl_GetLevelDesc,
|
|
|
|
IDirect3DCubeTexture8Impl_GetCubeMapSurface,
|
|
|
|
IDirect3DCubeTexture8Impl_LockRect,
|
|
|
|
IDirect3DCubeTexture8Impl_UnlockRect,
|
|
|
|
IDirect3DCubeTexture8Impl_AddDirtyRect
|
|
|
|
};
|
2009-09-17 12:35:24 +02:00
|
|
|
|
2009-09-17 12:35:25 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d8_cubetexture_wined3d_object_destroyed(void *parent)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wined3d_parent_ops d3d8_cubetexture_wined3d_parent_ops =
|
|
|
|
{
|
|
|
|
d3d8_cubetexture_wined3d_object_destroyed,
|
|
|
|
};
|
|
|
|
|
2009-09-17 12:35:24 +02:00
|
|
|
HRESULT cubetexture_init(IDirect3DCubeTexture8Impl *texture, IDirect3DDevice8Impl *device,
|
|
|
|
UINT edge_length, UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
texture->lpVtbl = &Direct3DCubeTexture8_Vtbl;
|
|
|
|
texture->ref = 1;
|
|
|
|
|
|
|
|
wined3d_mutex_lock();
|
|
|
|
hr = IWineD3DDevice_CreateCubeTexture(device->WineD3DDevice, edge_length, levels, usage & WINED3DUSAGE_MASK,
|
2009-09-17 12:35:25 +02:00
|
|
|
wined3dformat_from_d3dformat(format), pool, &texture->wineD3DCubeTexture,
|
|
|
|
(IUnknown *)texture, &d3d8_cubetexture_wined3d_parent_ops);
|
2009-09-17 12:35:24 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to create wined3d cube texture, hr %#x.\n", hr);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
texture->parentDevice = (IDirect3DDevice8 *)device;
|
|
|
|
IDirect3DDevice8_AddRef(texture->parentDevice);
|
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
}
|