2003-07-01 03:09:17 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DCubeTexture9 implementation
|
|
|
|
*
|
2005-01-17 14:44:57 +01:00
|
|
|
* Copyright 2002-2005 Jason Edmeades
|
2005-03-11 11:25:30 +01:00
|
|
|
* Copyright 2002-2005 Raphael Junqueira
|
|
|
|
* Copyright 2005 Oliver Stieber
|
2003-07-01 03:09:17 +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
|
2003-07-01 03:09:17 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "d3d9_private.h"
|
|
|
|
|
2005-03-11 11:25:30 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
|
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2011-04-12 04:17:09 +02:00
|
|
|
static inline IDirect3DCubeTexture9Impl *impl_from_IDirect3DCubeTexture9(IDirect3DCubeTexture9 *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, IDirect3DCubeTexture9Impl, IDirect3DCubeTexture9_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDirect3DCubeTexture9Impl_QueryInterface(IDirect3DCubeTexture9 *iface,
|
|
|
|
REFIID riid, void **ppobj)
|
|
|
|
{
|
|
|
|
IDirect3DCubeTexture9Impl *This = impl_from_IDirect3DCubeTexture9(iface);
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), ppobj);
|
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DResource9)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DBaseTexture9)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DCubeTexture9)) {
|
2008-11-02 23:49:40 +01:00
|
|
|
IDirect3DCubeTexture9_AddRef(iface);
|
2003-07-01 03:09:17 +02:00
|
|
|
*ppobj = This;
|
2006-06-07 15:13:29 +02:00
|
|
|
return S_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
2006-06-07 15:13:29 +02:00
|
|
|
*ppobj = NULL;
|
2003-07-01 03:09:17 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2011-04-12 04:17:09 +02:00
|
|
|
static ULONG WINAPI IDirect3DCubeTexture9Impl_AddRef(IDirect3DCubeTexture9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DCubeTexture9Impl *This = impl_from_IDirect3DCubeTexture9(iface);
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("%p increasing refcount to %u.\n", iface, ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2009-09-17 12:35:25 +02:00
|
|
|
if (ref == 1)
|
|
|
|
{
|
|
|
|
IDirect3DDevice9Ex_AddRef(This->parentDevice);
|
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
wined3d_texture_incref(This->wined3d_texture);
|
2009-09-17 12:35:25 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
}
|
|
|
|
|
2005-01-24 12:31:45 +01:00
|
|
|
return ref;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 04:17:09 +02:00
|
|
|
static ULONG WINAPI IDirect3DCubeTexture9Impl_Release(IDirect3DCubeTexture9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DCubeTexture9Impl *This = impl_from_IDirect3DCubeTexture9(iface);
|
2005-01-17 14:44:57 +01:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("%p decreasing refcount to %u.\n", iface, ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
if (ref == 0) {
|
2009-09-26 15:56:16 +02:00
|
|
|
IDirect3DDevice9Ex *parentDevice = This->parentDevice;
|
|
|
|
|
2011-03-17 23:15:09 +01:00
|
|
|
TRACE("Releasing child %p.\n", This->wined3d_texture);
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-09-17 12:35:25 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
wined3d_texture_decref(This->wined3d_texture);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-09-26 15:56:16 +02:00
|
|
|
|
|
|
|
/* Release the device last, as it may cause the device to be destroyed. */
|
|
|
|
IDirect3DDevice9Ex_Release(parentDevice);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DCubeTexture9 IDirect3DResource9 Interface follow: */
|
2011-04-12 04:17:09 +02:00
|
|
|
static HRESULT WINAPI IDirect3DCubeTexture9Impl_GetDevice(IDirect3DCubeTexture9 *iface,
|
|
|
|
IDirect3DDevice9 **device)
|
2009-12-04 11:50:47 +01:00
|
|
|
{
|
2011-04-12 04:17:09 +02:00
|
|
|
IDirect3DCubeTexture9Impl *This = impl_from_IDirect3DCubeTexture9(iface);
|
2009-10-20 11:05:02 +02:00
|
|
|
|
2009-12-04 11:50:47 +01:00
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-12-04 11:50:47 +01:00
|
|
|
*device = (IDirect3DDevice9 *)This->parentDevice;
|
|
|
|
IDirect3DDevice9_AddRef(*device);
|
2009-08-26 10:18:09 +02:00
|
|
|
|
2009-12-04 11:50:47 +01:00
|
|
|
TRACE("Returning device %p.\n", *device);
|
|
|
|
|
|
|
|
return D3D_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 04:17:09 +02:00
|
|
|
static HRESULT WINAPI IDirect3DCubeTexture9Impl_SetPrivateData(IDirect3DCubeTexture9 *iface,
|
|
|
|
REFGUID refguid, const void *pData, DWORD SizeOfData, DWORD Flags)
|
|
|
|
{
|
|
|
|
IDirect3DCubeTexture9Impl *This = impl_from_IDirect3DCubeTexture9(iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data %p, data_size %u, flags %#x.\n",
|
|
|
|
iface, debugstr_guid(refguid), pData, SizeOfData, Flags);
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
hr = wined3d_texture_set_private_data(This->wined3d_texture, refguid, pData, SizeOfData, Flags);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 00:39:26 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 04:17:09 +02:00
|
|
|
static HRESULT WINAPI IDirect3DCubeTexture9Impl_GetPrivateData(IDirect3DCubeTexture9 *iface,
|
|
|
|
REFGUID refguid, void *pData, DWORD *pSizeOfData)
|
|
|
|
{
|
|
|
|
IDirect3DCubeTexture9Impl *This = impl_from_IDirect3DCubeTexture9(iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data %p, data_size %p.\n",
|
|
|
|
iface, debugstr_guid(refguid), pData, pSizeOfData);
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
hr = wined3d_texture_get_private_data(This->wined3d_texture, refguid, pData, pSizeOfData);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 00:39:26 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 04:17:09 +02:00
|
|
|
static HRESULT WINAPI IDirect3DCubeTexture9Impl_FreePrivateData(IDirect3DCubeTexture9 *iface,
|
|
|
|
REFGUID refguid)
|
|
|
|
{
|
|
|
|
IDirect3DCubeTexture9Impl *This = impl_from_IDirect3DCubeTexture9(iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s.\n", iface, debugstr_guid(refguid));
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
hr = wined3d_texture_free_private_data(This->wined3d_texture, refguid);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 00:39:26 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 04:17:09 +02:00
|
|
|
static DWORD WINAPI IDirect3DCubeTexture9Impl_SetPriority(IDirect3DCubeTexture9 *iface,
|
|
|
|
DWORD PriorityNew)
|
|
|
|
{
|
|
|
|
IDirect3DCubeTexture9Impl *This = impl_from_IDirect3DCubeTexture9(iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
DWORD ret;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, priority %u.\n", iface, PriorityNew);
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
ret = wined3d_texture_set_priority(This->wined3d_texture, PriorityNew);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 00:39:26 +02:00
|
|
|
return ret;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 04:17:09 +02:00
|
|
|
static DWORD WINAPI IDirect3DCubeTexture9Impl_GetPriority(IDirect3DCubeTexture9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DCubeTexture9Impl *This = impl_from_IDirect3DCubeTexture9(iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
DWORD ret;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
ret = wined3d_texture_get_priority(This->wined3d_texture);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 00:39:26 +02:00
|
|
|
return ret;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 04:17:09 +02:00
|
|
|
static void WINAPI IDirect3DCubeTexture9Impl_PreLoad(IDirect3DCubeTexture9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DCubeTexture9Impl *This = impl_from_IDirect3DCubeTexture9(iface);
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
wined3d_texture_preload(This->wined3d_texture);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 04:17:09 +02:00
|
|
|
static D3DRESOURCETYPE WINAPI IDirect3DCubeTexture9Impl_GetType(IDirect3DCubeTexture9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DCubeTexture9Impl *This = impl_from_IDirect3DCubeTexture9(iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
D3DRESOURCETYPE ret;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
ret = wined3d_texture_get_type(This->wined3d_texture);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 00:39:26 +02:00
|
|
|
return ret;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DCubeTexture9 IDirect3DBaseTexture9 Interface follow: */
|
2011-04-12 04:17:09 +02:00
|
|
|
static DWORD WINAPI IDirect3DCubeTexture9Impl_SetLOD(IDirect3DCubeTexture9 *iface, DWORD LODNew)
|
|
|
|
{
|
|
|
|
IDirect3DCubeTexture9Impl *This = impl_from_IDirect3DCubeTexture9(iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
DWORD ret;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, lod %u.\n", iface, LODNew);
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
ret = wined3d_texture_set_lod(This->wined3d_texture, LODNew);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 00:39:26 +02:00
|
|
|
return ret;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 04:17:09 +02:00
|
|
|
static DWORD WINAPI IDirect3DCubeTexture9Impl_GetLOD(IDirect3DCubeTexture9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DCubeTexture9Impl *This = impl_from_IDirect3DCubeTexture9(iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
DWORD ret;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
ret = wined3d_texture_get_lod(This->wined3d_texture);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 00:39:26 +02:00
|
|
|
return ret;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 04:17:09 +02:00
|
|
|
static DWORD WINAPI IDirect3DCubeTexture9Impl_GetLevelCount(IDirect3DCubeTexture9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DCubeTexture9Impl *This = impl_from_IDirect3DCubeTexture9(iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
DWORD ret;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
ret = wined3d_texture_get_level_count(This->wined3d_texture);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 00:39:26 +02:00
|
|
|
return ret;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 04:17:09 +02:00
|
|
|
static HRESULT WINAPI IDirect3DCubeTexture9Impl_SetAutoGenFilterType(IDirect3DCubeTexture9 *iface,
|
|
|
|
D3DTEXTUREFILTERTYPE FilterType)
|
|
|
|
{
|
|
|
|
IDirect3DCubeTexture9Impl *This = impl_from_IDirect3DCubeTexture9(iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, filter_type %#x.\n", iface, FilterType);
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
hr = wined3d_texture_set_autogen_filter_type(This->wined3d_texture, (WINED3DTEXTUREFILTERTYPE)FilterType);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 00:39:26 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 04:17:09 +02:00
|
|
|
static D3DTEXTUREFILTERTYPE WINAPI IDirect3DCubeTexture9Impl_GetAutoGenFilterType(IDirect3DCubeTexture9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DCubeTexture9Impl *This = impl_from_IDirect3DCubeTexture9(iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
D3DTEXTUREFILTERTYPE ret;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
ret = (D3DTEXTUREFILTERTYPE)wined3d_texture_get_autogen_filter_type(This->wined3d_texture);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 00:39:26 +02:00
|
|
|
return ret;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 04:17:09 +02:00
|
|
|
static void WINAPI IDirect3DCubeTexture9Impl_GenerateMipSubLevels(IDirect3DCubeTexture9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DCubeTexture9Impl *This = impl_from_IDirect3DCubeTexture9(iface);
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
wined3d_texture_generate_mipmaps(This->wined3d_texture);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DCubeTexture9 Interface follow: */
|
2011-03-08 19:41:05 +01:00
|
|
|
static HRESULT WINAPI IDirect3DCubeTexture9Impl_GetLevelDesc(IDirect3DCubeTexture9 *iface,
|
|
|
|
UINT level, D3DSURFACE_DESC *desc)
|
|
|
|
{
|
2011-04-12 04:17:09 +02:00
|
|
|
IDirect3DCubeTexture9Impl *texture = impl_from_IDirect3DCubeTexture9(iface);
|
2011-03-09 19:16:17 +01:00
|
|
|
struct wined3d_resource *sub_resource;
|
|
|
|
HRESULT hr = D3D_OK;
|
2005-01-17 14:44:57 +01:00
|
|
|
|
2011-03-08 19:41:05 +01:00
|
|
|
TRACE("iface %p, level %u, desc %p.\n", iface, level, desc);
|
2005-03-11 11:25:30 +01:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
if (!(sub_resource = wined3d_texture_get_sub_resource(texture->wined3d_texture, level)))
|
2011-03-09 19:16:17 +01:00
|
|
|
hr = D3DERR_INVALIDCALL;
|
|
|
|
else
|
2009-06-15 09:06:50 +02:00
|
|
|
{
|
2011-03-09 19:16:17 +01:00
|
|
|
struct wined3d_resource_desc wined3d_desc;
|
|
|
|
|
|
|
|
wined3d_resource_get_desc(sub_resource, &wined3d_desc);
|
2011-03-08 19:41:05 +01:00
|
|
|
desc->Format = d3dformat_from_wined3dformat(wined3d_desc.format);
|
|
|
|
desc->Type = wined3d_desc.resource_type;
|
|
|
|
desc->Usage = wined3d_desc.usage;
|
|
|
|
desc->Pool = wined3d_desc.pool;
|
|
|
|
desc->MultiSampleType = wined3d_desc.multisample_type;
|
|
|
|
desc->MultiSampleQuality = wined3d_desc.multisample_quality;
|
|
|
|
desc->Width = wined3d_desc.width;
|
|
|
|
desc->Height = wined3d_desc.height;
|
2009-06-15 09:06:50 +02:00
|
|
|
}
|
2011-03-09 19:16:17 +01:00
|
|
|
wined3d_mutex_unlock();
|
2009-02-19 16:59:42 +01:00
|
|
|
|
2007-06-12 00:39:26 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
static HRESULT WINAPI IDirect3DCubeTexture9Impl_GetCubeMapSurface(IDirect3DCubeTexture9 *iface,
|
2011-03-09 19:16:16 +01:00
|
|
|
D3DCUBEMAP_FACES face, UINT level, IDirect3DSurface9 **surface)
|
2010-08-31 18:41:40 +02:00
|
|
|
{
|
2011-04-12 04:17:09 +02:00
|
|
|
IDirect3DCubeTexture9Impl *texture = impl_from_IDirect3DCubeTexture9(iface);
|
2011-03-09 19:16:16 +01:00
|
|
|
struct wined3d_resource *sub_resource;
|
2010-10-25 12:33:39 +02:00
|
|
|
UINT sub_resource_idx;
|
2005-03-11 11:25:30 +01:00
|
|
|
|
2011-03-09 19:16:16 +01:00
|
|
|
TRACE("iface %p, face %#x, level %u, surface %p.\n", iface, face, level, surface);
|
2005-03-11 11:25:30 +01:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
sub_resource_idx = wined3d_texture_get_level_count(texture->wined3d_texture) * face + level;
|
|
|
|
if (!(sub_resource = wined3d_texture_get_sub_resource(texture->wined3d_texture, sub_resource_idx)))
|
2010-08-31 18:41:40 +02:00
|
|
|
{
|
2011-03-09 19:16:16 +01:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
return D3DERR_INVALIDCALL;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
2011-03-09 19:16:16 +01:00
|
|
|
|
|
|
|
*surface = wined3d_resource_get_parent(sub_resource);
|
|
|
|
IDirect3DSurface9_AddRef(*surface);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2011-03-09 19:16:16 +01:00
|
|
|
return D3D_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2010-10-25 12:33:39 +02:00
|
|
|
static HRESULT WINAPI IDirect3DCubeTexture9Impl_LockRect(IDirect3DCubeTexture9 *iface,
|
2011-04-12 04:17:09 +02:00
|
|
|
D3DCUBEMAP_FACES face, UINT level, D3DLOCKED_RECT *locked_rect, const RECT *rect,
|
|
|
|
DWORD flags)
|
2010-10-25 12:33:39 +02:00
|
|
|
{
|
2011-04-12 04:17:09 +02:00
|
|
|
IDirect3DCubeTexture9Impl *texture = impl_from_IDirect3DCubeTexture9(iface);
|
2011-03-13 20:54:30 +01:00
|
|
|
struct wined3d_resource *sub_resource;
|
2010-10-25 12:33:39 +02:00
|
|
|
UINT sub_resource_idx;
|
2007-06-12 00:39:26 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, face %#x, level %u, locked_rect %p, rect %p, flags %#x.\n",
|
2011-03-13 20:54:30 +01:00
|
|
|
iface, face, level, locked_rect, rect, flags);
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
sub_resource_idx = wined3d_texture_get_level_count(texture->wined3d_texture) * face + level;
|
|
|
|
if (!(sub_resource = wined3d_texture_get_sub_resource(texture->wined3d_texture, sub_resource_idx)))
|
2011-03-13 20:54:30 +01:00
|
|
|
hr = D3DERR_INVALIDCALL;
|
|
|
|
else
|
|
|
|
hr = IDirect3DSurface9_LockRect((IDirect3DSurface9 *)wined3d_resource_get_parent(sub_resource),
|
|
|
|
locked_rect, rect, flags);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 00:39:26 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2010-10-25 12:33:39 +02:00
|
|
|
static HRESULT WINAPI IDirect3DCubeTexture9Impl_UnlockRect(IDirect3DCubeTexture9 *iface,
|
2011-03-13 20:54:31 +01:00
|
|
|
D3DCUBEMAP_FACES face, UINT level)
|
2010-10-25 12:33:39 +02:00
|
|
|
{
|
2011-04-12 04:17:09 +02:00
|
|
|
IDirect3DCubeTexture9Impl *texture = impl_from_IDirect3DCubeTexture9(iface);
|
2011-03-13 20:54:31 +01:00
|
|
|
struct wined3d_resource *sub_resource;
|
2010-10-25 12:33:39 +02:00
|
|
|
UINT sub_resource_idx;
|
2007-06-12 00:39:26 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
2011-03-13 20:54:31 +01:00
|
|
|
TRACE("iface %p, face %#x, level %u.\n", iface, face, level);
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
sub_resource_idx = wined3d_texture_get_level_count(texture->wined3d_texture) * face + level;
|
|
|
|
if (!(sub_resource = wined3d_texture_get_sub_resource(texture->wined3d_texture, sub_resource_idx)))
|
2011-03-13 20:54:31 +01:00
|
|
|
hr = D3DERR_INVALIDCALL;
|
|
|
|
else
|
|
|
|
hr = IDirect3DSurface9_UnlockRect((IDirect3DSurface9 *)wined3d_resource_get_parent(sub_resource));
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 00:39:26 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-03-14 21:02:59 +01:00
|
|
|
static HRESULT WINAPI IDirect3DCubeTexture9Impl_AddDirtyRect(IDirect3DCubeTexture9 *iface,
|
|
|
|
D3DCUBEMAP_FACES face, const RECT *dirty_rect)
|
|
|
|
{
|
2011-04-12 04:17:09 +02:00
|
|
|
IDirect3DCubeTexture9Impl *texture = impl_from_IDirect3DCubeTexture9(iface);
|
2007-06-12 00:39:26 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
2011-03-14 21:02:59 +01:00
|
|
|
TRACE("iface %p, face %#x, dirty_rect %s.\n",
|
|
|
|
iface, face, wine_dbgstr_rect(dirty_rect));
|
2007-06-12 00:39:26 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-14 21:02:59 +01:00
|
|
|
if (!dirty_rect)
|
2011-03-18 19:10:59 +01:00
|
|
|
hr = wined3d_texture_add_dirty_region(texture->wined3d_texture, face, NULL);
|
2011-03-14 21:02:59 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
WINED3DBOX dirty_region;
|
|
|
|
|
|
|
|
dirty_region.Left = dirty_rect->left;
|
|
|
|
dirty_region.Top = dirty_rect->top;
|
|
|
|
dirty_region.Right = dirty_rect->right;
|
|
|
|
dirty_region.Bottom = dirty_rect->bottom;
|
|
|
|
dirty_region.Front = 0;
|
|
|
|
dirty_region.Back = 1;
|
2011-03-18 19:10:59 +01:00
|
|
|
hr = wined3d_texture_add_dirty_region(texture->wined3d_texture, face, &dirty_region);
|
2011-03-14 21:02:59 +01:00
|
|
|
}
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 00:39:26 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static const IDirect3DCubeTexture9Vtbl Direct3DCubeTexture9_Vtbl =
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
2005-08-23 11:34:57 +02:00
|
|
|
/* IUnknown */
|
2003-07-01 03:09:17 +02:00
|
|
|
IDirect3DCubeTexture9Impl_QueryInterface,
|
|
|
|
IDirect3DCubeTexture9Impl_AddRef,
|
|
|
|
IDirect3DCubeTexture9Impl_Release,
|
2005-08-23 11:34:57 +02:00
|
|
|
/* IDirect3DResource9 */
|
2003-07-01 03:09:17 +02:00
|
|
|
IDirect3DCubeTexture9Impl_GetDevice,
|
|
|
|
IDirect3DCubeTexture9Impl_SetPrivateData,
|
|
|
|
IDirect3DCubeTexture9Impl_GetPrivateData,
|
|
|
|
IDirect3DCubeTexture9Impl_FreePrivateData,
|
|
|
|
IDirect3DCubeTexture9Impl_SetPriority,
|
|
|
|
IDirect3DCubeTexture9Impl_GetPriority,
|
|
|
|
IDirect3DCubeTexture9Impl_PreLoad,
|
|
|
|
IDirect3DCubeTexture9Impl_GetType,
|
2005-08-23 11:34:57 +02:00
|
|
|
/* IDirect3DBaseTexture9 */
|
2003-07-01 03:09:17 +02:00
|
|
|
IDirect3DCubeTexture9Impl_SetLOD,
|
|
|
|
IDirect3DCubeTexture9Impl_GetLOD,
|
|
|
|
IDirect3DCubeTexture9Impl_GetLevelCount,
|
|
|
|
IDirect3DCubeTexture9Impl_SetAutoGenFilterType,
|
|
|
|
IDirect3DCubeTexture9Impl_GetAutoGenFilterType,
|
|
|
|
IDirect3DCubeTexture9Impl_GenerateMipSubLevels,
|
|
|
|
IDirect3DCubeTexture9Impl_GetLevelDesc,
|
|
|
|
IDirect3DCubeTexture9Impl_GetCubeMapSurface,
|
|
|
|
IDirect3DCubeTexture9Impl_LockRect,
|
|
|
|
IDirect3DCubeTexture9Impl_UnlockRect,
|
|
|
|
IDirect3DCubeTexture9Impl_AddDirtyRect
|
|
|
|
};
|
|
|
|
|
2009-09-17 12:35:25 +02:00
|
|
|
static void STDMETHODCALLTYPE cubetexture_wined3d_object_destroyed(void *parent)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wined3d_parent_ops d3d9_cubetexture_wined3d_parent_ops =
|
|
|
|
{
|
|
|
|
cubetexture_wined3d_object_destroyed,
|
|
|
|
};
|
|
|
|
|
2009-09-17 12:35:23 +02:00
|
|
|
HRESULT cubetexture_init(IDirect3DCubeTexture9Impl *texture, IDirect3DDevice9Impl *device,
|
|
|
|
UINT edge_length, UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2011-04-12 04:17:09 +02:00
|
|
|
texture->IDirect3DCubeTexture9_iface.lpVtbl = &Direct3DCubeTexture9_Vtbl;
|
2009-09-17 12:35:23 +02:00
|
|
|
texture->ref = 1;
|
2009-08-26 10:18:09 +02:00
|
|
|
|
|
|
|
wined3d_mutex_lock();
|
2010-08-31 18:41:40 +02:00
|
|
|
hr = IWineD3DDevice_CreateCubeTexture(device->WineD3DDevice, edge_length,
|
|
|
|
levels, usage, wined3dformat_from_d3dformat(format), pool, texture,
|
2011-03-17 23:15:09 +01:00
|
|
|
&d3d9_cubetexture_wined3d_parent_ops, &texture->wined3d_texture);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-09-17 12:35:23 +02:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to create wined3d cube texture, hr %#x.\n", hr);
|
|
|
|
return hr;
|
2005-01-18 12:42:29 +01:00
|
|
|
}
|
2005-03-11 11:25:30 +01:00
|
|
|
|
2009-09-17 12:35:23 +02:00
|
|
|
texture->parentDevice = (IDirect3DDevice9Ex *)device;
|
|
|
|
IDirect3DDevice9Ex_AddRef(texture->parentDevice);
|
|
|
|
|
|
|
|
return D3D_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|