2002-09-28 00:46:16 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DVolume8 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
|
|
|
|
2012-05-23 18:14:34 +02:00
|
|
|
static inline struct d3d8_volume *impl_from_IDirect3DVolume8(IDirect3DVolume8 *iface)
|
2011-01-31 01:37:33 +01:00
|
|
|
{
|
2012-05-23 18:14:34 +02:00
|
|
|
return CONTAINING_RECORD(iface, struct d3d8_volume, IDirect3DVolume8_iface);
|
2011-01-31 01:37:33 +01:00
|
|
|
}
|
|
|
|
|
2012-05-23 18:14:34 +02:00
|
|
|
static HRESULT WINAPI d3d8_volume_QueryInterface(IDirect3DVolume8 *iface, REFIID riid, void **out)
|
2011-01-31 01:37:33 +01:00
|
|
|
{
|
2015-09-16 19:22:38 +02:00
|
|
|
TRACE("iface %p, riid %s, out %p.\n", iface, debugstr_guid(riid), out);
|
2009-10-19 10:12:20 +02:00
|
|
|
|
2012-03-14 22:04:29 +01:00
|
|
|
if (IsEqualGUID(riid, &IID_IDirect3DVolume8)
|
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
2012-08-27 12:27:34 +02:00
|
|
|
IDirect3DVolume8_AddRef(iface);
|
2012-05-23 18:14:34 +02:00
|
|
|
*out = iface;
|
2006-06-07 15:13:29 +02:00
|
|
|
return S_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2012-03-14 22:04:29 +01:00
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
|
|
|
|
2012-05-23 18:14:34 +02:00
|
|
|
*out = NULL;
|
2002-09-28 00:46:16 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2012-05-23 18:14:34 +02:00
|
|
|
static ULONG WINAPI d3d8_volume_AddRef(IDirect3DVolume8 *iface)
|
2011-01-31 01:37:33 +01:00
|
|
|
{
|
2012-05-23 18:14:34 +02:00
|
|
|
struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p.\n", iface);
|
2014-08-12 11:11:02 +02:00
|
|
|
TRACE("Forwarding to %p.\n", volume->texture);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2014-08-12 11:11:02 +02:00
|
|
|
return IDirect3DBaseTexture8_AddRef(&volume->texture->IDirect3DBaseTexture8_iface);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2012-05-23 18:14:34 +02:00
|
|
|
static ULONG WINAPI d3d8_volume_Release(IDirect3DVolume8 *iface)
|
2011-01-31 01:37:33 +01:00
|
|
|
{
|
2012-05-23 18:14:34 +02:00
|
|
|
struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface);
|
2006-03-06 19:28:20 +01:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p.\n", iface);
|
2014-08-12 11:11:02 +02:00
|
|
|
TRACE("Forwarding to %p.\n", volume->texture);
|
2006-03-06 19:28:20 +01:00
|
|
|
|
2014-08-12 11:11:02 +02:00
|
|
|
return IDirect3DBaseTexture8_Release(&volume->texture->IDirect3DBaseTexture8_iface);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2012-05-23 18:14:34 +02:00
|
|
|
static HRESULT WINAPI d3d8_volume_GetDevice(IDirect3DVolume8 *iface, IDirect3DDevice8 **device)
|
2009-12-09 11:51:16 +01:00
|
|
|
{
|
2012-05-23 18:14:34 +02:00
|
|
|
struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface);
|
2002-10-21 20:21:59 +02:00
|
|
|
|
2009-12-09 11:51:16 +01:00
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
2009-10-19 10:12:20 +02:00
|
|
|
|
2014-08-12 11:11:02 +02:00
|
|
|
return IDirect3DBaseTexture8_GetDevice(&volume->texture->IDirect3DBaseTexture8_iface, device);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2012-05-23 18:14:34 +02:00
|
|
|
static HRESULT WINAPI d3d8_volume_SetPrivateData(IDirect3DVolume8 *iface, REFGUID guid,
|
|
|
|
const void *data, DWORD data_size, DWORD flags)
|
2011-01-31 01:37:33 +01:00
|
|
|
{
|
2012-05-23 18:14:34 +02:00
|
|
|
struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface);
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, guid %s, data %p, data_size %u, flags %#x.\n",
|
2012-05-23 18:14:34 +02:00
|
|
|
iface, debugstr_guid(guid), data, data_size, flags);
|
2007-05-27 02:41:41 +02:00
|
|
|
|
2014-03-21 11:46:21 +01:00
|
|
|
return d3d8_resource_set_private_data(&volume->resource, guid, data, data_size, flags);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2014-03-21 11:46:21 +01:00
|
|
|
static HRESULT WINAPI d3d8_volume_GetPrivateData(IDirect3DVolume8 *iface, REFGUID guid,
|
2012-05-23 18:14:34 +02:00
|
|
|
void *data, DWORD *data_size)
|
2011-01-31 01:37:33 +01:00
|
|
|
{
|
2012-05-23 18:14:34 +02:00
|
|
|
struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface);
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, guid %s, data %p, data_size %p.\n",
|
2012-05-23 18:14:34 +02:00
|
|
|
iface, debugstr_guid(guid), data, data_size);
|
2007-05-27 02:41:41 +02:00
|
|
|
|
2014-03-21 11:46:21 +01:00
|
|
|
return d3d8_resource_get_private_data(&volume->resource, guid, data, data_size);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2012-05-23 18:14:34 +02:00
|
|
|
static HRESULT WINAPI d3d8_volume_FreePrivateData(IDirect3DVolume8 *iface, REFGUID guid)
|
2011-01-31 01:37:33 +01:00
|
|
|
{
|
2012-05-23 18:14:34 +02:00
|
|
|
struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface);
|
|
|
|
TRACE("iface %p, guid %s.\n", iface, debugstr_guid(guid));
|
2007-05-27 02:41:41 +02:00
|
|
|
|
2014-03-21 11:46:21 +01:00
|
|
|
return d3d8_resource_free_private_data(&volume->resource, guid);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2002-10-21 20:21:59 +02:00
|
|
|
|
2012-05-23 18:14:34 +02:00
|
|
|
static HRESULT WINAPI d3d8_volume_GetContainer(IDirect3DVolume8 *iface, REFIID riid, void **container)
|
2011-01-31 01:37:33 +01:00
|
|
|
{
|
2012-05-23 18:14:34 +02:00
|
|
|
struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface);
|
2006-11-09 02:38:41 +01:00
|
|
|
|
2014-08-12 11:11:02 +02:00
|
|
|
TRACE("iface %p, riid %s, container %p.\n", iface, debugstr_guid(riid), container);
|
2006-11-09 02:38:41 +01:00
|
|
|
|
2014-08-12 11:11:02 +02:00
|
|
|
return IDirect3DBaseTexture8_QueryInterface(&volume->texture->IDirect3DBaseTexture8_iface, riid, container);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2012-05-23 18:14:34 +02:00
|
|
|
static HRESULT WINAPI d3d8_volume_GetDesc(IDirect3DVolume8 *iface, D3DVOLUME_DESC *desc)
|
2011-01-31 01:37:33 +01:00
|
|
|
{
|
2012-05-23 18:14:34 +02:00
|
|
|
struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface);
|
2016-02-29 18:19:25 +01:00
|
|
|
struct wined3d_sub_resource_desc wined3d_desc;
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2011-03-08 19:41:05 +01:00
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2016-02-29 18:19:25 +01:00
|
|
|
wined3d_texture_get_sub_resource_desc(volume->wined3d_texture, volume->sub_resource_idx, &wined3d_desc);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-02-19 16:59:41 +01:00
|
|
|
|
2011-03-08 19:41:05 +01:00
|
|
|
desc->Format = d3dformat_from_wined3dformat(wined3d_desc.format);
|
2016-02-29 18:19:25 +01:00
|
|
|
desc->Type = D3DRTYPE_VOLUME;
|
2012-01-10 20:36:59 +01:00
|
|
|
desc->Usage = wined3d_desc.usage & WINED3DUSAGE_MASK;
|
2011-03-08 19:41:05 +01:00
|
|
|
desc->Pool = wined3d_desc.pool;
|
|
|
|
desc->Size = wined3d_desc.size;
|
|
|
|
desc->Width = wined3d_desc.width;
|
|
|
|
desc->Height = wined3d_desc.height;
|
|
|
|
desc->Depth = wined3d_desc.depth;
|
2009-02-19 16:59:41 +01:00
|
|
|
|
2010-09-08 11:24:48 +02:00
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2012-05-23 18:14:34 +02:00
|
|
|
static HRESULT WINAPI d3d8_volume_LockBox(IDirect3DVolume8 *iface,
|
2012-04-12 22:49:04 +02:00
|
|
|
D3DLOCKED_BOX *locked_box, const D3DBOX *box, DWORD flags)
|
2011-01-31 01:37:33 +01:00
|
|
|
{
|
2012-05-23 18:14:34 +02:00
|
|
|
struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface);
|
2012-04-12 22:49:04 +02:00
|
|
|
struct wined3d_map_desc map_desc;
|
2007-05-27 02:41:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, locked_box %p, box %p, flags %#x.\n",
|
2012-04-12 22:49:04 +02:00
|
|
|
iface, locked_box, box, flags);
|
2007-05-27 02:41:41 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2016-03-11 16:01:43 +01:00
|
|
|
if (FAILED(hr = wined3d_resource_map(wined3d_texture_get_resource(volume->wined3d_texture),
|
|
|
|
volume->sub_resource_idx, &map_desc, (const struct wined3d_box *)box, flags)))
|
|
|
|
map_desc.data = NULL;
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2012-04-12 22:49:04 +02:00
|
|
|
locked_box->RowPitch = map_desc.row_pitch;
|
|
|
|
locked_box->SlicePitch = map_desc.slice_pitch;
|
|
|
|
locked_box->pBits = map_desc.data;
|
|
|
|
|
2007-05-27 02:41:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2012-05-23 18:14:34 +02:00
|
|
|
static HRESULT WINAPI d3d8_volume_UnlockBox(IDirect3DVolume8 *iface)
|
2011-01-31 01:37:33 +01:00
|
|
|
{
|
2012-05-23 18:14:34 +02:00
|
|
|
struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface);
|
2007-05-27 02:41:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
2007-05-27 02:41:41 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2015-11-05 00:13:38 +01:00
|
|
|
hr = wined3d_resource_unmap(wined3d_texture_get_resource(volume->wined3d_texture), volume->sub_resource_idx);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2016-03-09 16:21:58 +01:00
|
|
|
if (hr == WINEDDERR_NOTLOCKED)
|
|
|
|
return D3DERR_INVALIDCALL;
|
2007-05-27 02:41:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2012-05-23 18:14:34 +02:00
|
|
|
static const IDirect3DVolume8Vtbl d3d8_volume_vtbl =
|
2002-09-28 00:46:16 +02:00
|
|
|
{
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IUnknown */
|
2012-05-23 18:14:34 +02:00
|
|
|
d3d8_volume_QueryInterface,
|
|
|
|
d3d8_volume_AddRef,
|
|
|
|
d3d8_volume_Release,
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IDirect3DVolume8 */
|
2012-05-23 18:14:34 +02:00
|
|
|
d3d8_volume_GetDevice,
|
|
|
|
d3d8_volume_SetPrivateData,
|
|
|
|
d3d8_volume_GetPrivateData,
|
|
|
|
d3d8_volume_FreePrivateData,
|
|
|
|
d3d8_volume_GetContainer,
|
|
|
|
d3d8_volume_GetDesc,
|
|
|
|
d3d8_volume_LockBox,
|
|
|
|
d3d8_volume_UnlockBox,
|
2002-09-28 00:46:16 +02:00
|
|
|
};
|
2003-06-05 01:05:46 +02:00
|
|
|
|
2009-09-16 08:37:19 +02:00
|
|
|
static void STDMETHODCALLTYPE volume_wined3d_object_destroyed(void *parent)
|
|
|
|
{
|
2014-03-21 11:46:19 +01:00
|
|
|
struct d3d8_volume *volume = parent;
|
|
|
|
d3d8_resource_cleanup(&volume->resource);
|
|
|
|
HeapFree(GetProcessHeap(), 0, volume);
|
2006-12-05 00:29:42 +01:00
|
|
|
}
|
2009-09-16 08:37:18 +02:00
|
|
|
|
2009-09-16 08:37:19 +02:00
|
|
|
static const struct wined3d_parent_ops d3d8_volume_wined3d_parent_ops =
|
|
|
|
{
|
|
|
|
volume_wined3d_object_destroyed,
|
|
|
|
};
|
|
|
|
|
2015-10-06 10:36:49 +02:00
|
|
|
void volume_init(struct d3d8_volume *volume, struct wined3d_texture *wined3d_texture,
|
2015-10-06 10:36:51 +02:00
|
|
|
unsigned int sub_resource_idx, const struct wined3d_parent_ops **parent_ops)
|
2009-09-16 08:37:18 +02:00
|
|
|
{
|
2012-05-23 18:14:34 +02:00
|
|
|
volume->IDirect3DVolume8_iface.lpVtbl = &d3d8_volume_vtbl;
|
2014-03-21 11:46:19 +01:00
|
|
|
d3d8_resource_init(&volume->resource);
|
2014-08-12 11:11:02 +02:00
|
|
|
volume->resource.refcount = 0;
|
2015-10-06 10:36:49 +02:00
|
|
|
volume->texture = wined3d_texture_get_parent(wined3d_texture);
|
|
|
|
volume->wined3d_texture = wined3d_texture;
|
|
|
|
volume->sub_resource_idx = sub_resource_idx;
|
2009-09-16 08:37:18 +02:00
|
|
|
|
2013-12-06 11:09:53 +01:00
|
|
|
*parent_ops = &d3d8_volume_wined3d_parent_ops;
|
2009-09-16 08:37:18 +02:00
|
|
|
}
|