2003-07-01 03:09:17 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DVolume9 implementation
|
|
|
|
*
|
2005-01-17 14:44:57 +01:00
|
|
|
* Copyright 2002-2005 Jason Edmeades
|
2003-07-01 03:09:17 +02:00
|
|
|
* Raphael Junqueira
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
2012-05-28 18:17:29 +02:00
|
|
|
static inline struct d3d9_volume *impl_from_IDirect3DVolume9(IDirect3DVolume9 *iface)
|
2011-04-20 11:04:23 +02:00
|
|
|
{
|
2012-05-28 18:17:29 +02:00
|
|
|
return CONTAINING_RECORD(iface, struct d3d9_volume, IDirect3DVolume9_iface);
|
2011-04-20 11:04:23 +02:00
|
|
|
}
|
|
|
|
|
2012-05-28 18:17:29 +02:00
|
|
|
static HRESULT WINAPI d3d9_volume_QueryInterface(IDirect3DVolume9 *iface, REFIID riid, void **out)
|
2011-04-20 11:04:23 +02:00
|
|
|
{
|
2012-05-28 18:17:29 +02:00
|
|
|
TRACE("iface %p, riid %s, out %p.\n", iface, debugstr_guid(riid), out);
|
2009-10-20 11:05:02 +02:00
|
|
|
|
2012-03-27 20:35:52 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_IDirect3DVolume9)
|
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
2008-11-02 23:49:40 +01:00
|
|
|
IDirect3DVolume9_AddRef(iface);
|
2012-05-28 18:17:29 +02:00
|
|
|
*out = iface;
|
2006-06-07 15:13:29 +02:00
|
|
|
return S_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-03-27 20:35:52 +02:00
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
|
|
|
|
2012-05-28 18:17:29 +02:00
|
|
|
*out = NULL;
|
2003-07-01 03:09:17 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2012-05-28 18:17:29 +02:00
|
|
|
static ULONG WINAPI d3d9_volume_AddRef(IDirect3DVolume9 *iface)
|
2011-04-20 11:04:23 +02:00
|
|
|
{
|
2012-05-28 18:17:29 +02:00
|
|
|
struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("iface %p.\n", iface);
|
2014-08-12 11:11:03 +02:00
|
|
|
TRACE("Forwarding to %p.\n", volume->texture);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2014-08-12 11:11:03 +02:00
|
|
|
return IDirect3DBaseTexture9_AddRef(&volume->texture->IDirect3DBaseTexture9_iface);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-28 18:17:29 +02:00
|
|
|
static ULONG WINAPI d3d9_volume_Release(IDirect3DVolume9 *iface)
|
2011-04-20 11:04:23 +02:00
|
|
|
{
|
2012-05-28 18:17:29 +02:00
|
|
|
struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
|
2006-03-06 19:28:20 +01:00
|
|
|
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("iface %p.\n", iface);
|
2014-08-12 11:11:03 +02:00
|
|
|
TRACE("Forwarding to %p.\n", volume->texture);
|
2006-03-06 19:28:20 +01:00
|
|
|
|
2014-08-12 11:11:03 +02:00
|
|
|
return IDirect3DBaseTexture9_Release(&volume->texture->IDirect3DBaseTexture9_iface);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-28 18:17:29 +02:00
|
|
|
static HRESULT WINAPI d3d9_volume_GetDevice(IDirect3DVolume9 *iface, IDirect3DDevice9 **device)
|
2009-12-09 11:51:17 +01:00
|
|
|
{
|
2012-05-28 18:17:29 +02:00
|
|
|
struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
|
2009-03-23 08:30:16 +01:00
|
|
|
|
2009-12-09 11:51:17 +01:00
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
2009-03-23 08:30:16 +01:00
|
|
|
|
2014-08-12 11:11:03 +02:00
|
|
|
return IDirect3DBaseTexture9_GetDevice(&volume->texture->IDirect3DBaseTexture9_iface, device);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-28 18:17:29 +02:00
|
|
|
static HRESULT WINAPI d3d9_volume_SetPrivateData(IDirect3DVolume9 *iface, REFGUID guid,
|
|
|
|
const void *data, DWORD data_size, DWORD flags)
|
2011-04-20 11:04:23 +02:00
|
|
|
{
|
2012-05-28 18:17:29 +02:00
|
|
|
struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("iface %p, guid %s, data %p, data_size %u, flags %#x.\n",
|
2012-05-28 18:17:29 +02:00
|
|
|
iface, debugstr_guid(guid), data, data_size, flags);
|
2009-03-23 08:30:16 +01:00
|
|
|
|
2014-03-24 12:17:18 +01:00
|
|
|
return d3d9_resource_set_private_data(&volume->resource, guid, data, data_size, flags);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-28 18:17:29 +02:00
|
|
|
static HRESULT WINAPI d3d9_volume_GetPrivateData(IDirect3DVolume9 *iface, REFGUID guid,
|
|
|
|
void *data, DWORD *data_size)
|
2011-04-20 11:04:23 +02:00
|
|
|
{
|
2012-05-28 18:17:29 +02:00
|
|
|
struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("iface %p, guid %s, data %p, data_size %p.\n",
|
2012-05-28 18:17:29 +02:00
|
|
|
iface, debugstr_guid(guid), data, data_size);
|
2009-03-23 08:30:16 +01:00
|
|
|
|
2014-03-24 12:17:18 +01:00
|
|
|
return d3d9_resource_get_private_data(&volume->resource, guid, data, data_size);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-28 18:17:29 +02:00
|
|
|
static HRESULT WINAPI d3d9_volume_FreePrivateData(IDirect3DVolume9 *iface, REFGUID guid)
|
2011-04-20 11:04:23 +02:00
|
|
|
{
|
2012-05-28 18:17:29 +02:00
|
|
|
struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
|
|
|
|
TRACE("iface %p, guid %s.\n", iface, debugstr_guid(guid));
|
2009-03-23 08:30:16 +01:00
|
|
|
|
2014-03-24 12:17:18 +01:00
|
|
|
return d3d9_resource_free_private_data(&volume->resource, guid);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-28 18:17:29 +02:00
|
|
|
static HRESULT WINAPI d3d9_volume_GetContainer(IDirect3DVolume9 *iface, REFIID riid, void **container)
|
2011-04-20 11:04:23 +02:00
|
|
|
{
|
2012-05-28 18:17:29 +02:00
|
|
|
struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
|
2005-03-11 11:25:30 +01:00
|
|
|
|
2012-05-28 18:17:29 +02:00
|
|
|
TRACE("iface %p, riid %s, container %p.\n", iface, debugstr_guid(riid), container);
|
2005-01-17 14:44:57 +01:00
|
|
|
|
2014-08-12 11:11:03 +02:00
|
|
|
return IDirect3DBaseTexture9_QueryInterface(&volume->texture->IDirect3DBaseTexture9_iface, riid, container);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-28 18:17:29 +02:00
|
|
|
static HRESULT WINAPI d3d9_volume_GetDesc(IDirect3DVolume9 *iface, D3DVOLUME_DESC *desc)
|
2011-03-08 19:41:05 +01:00
|
|
|
{
|
2012-05-28 18:17:29 +02:00
|
|
|
struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
|
2011-03-08 19:41:05 +01:00
|
|
|
struct wined3d_resource_desc wined3d_desc;
|
2011-03-10 19:07:09 +01:00
|
|
|
struct wined3d_resource *wined3d_resource;
|
2005-01-17 14:44:57 +01:00
|
|
|
|
2011-03-08 19:41:05 +01:00
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
2005-03-11 11:25:30 +01:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2012-05-28 18:17:29 +02:00
|
|
|
wined3d_resource = wined3d_volume_get_resource(volume->wined3d_volume);
|
2011-03-10 19:07:09 +01:00
|
|
|
wined3d_resource_get_desc(wined3d_resource, &wined3d_desc);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-23 08:30:16 +01:00
|
|
|
|
2011-03-08 19:41:05 +01:00
|
|
|
desc->Format = d3dformat_from_wined3dformat(wined3d_desc.format);
|
|
|
|
desc->Type = wined3d_desc.resource_type;
|
2012-01-09 21:40:48 +01:00
|
|
|
desc->Usage = wined3d_desc.usage & WINED3DUSAGE_MASK;
|
2011-03-08 19:41:05 +01:00
|
|
|
desc->Pool = wined3d_desc.pool;
|
|
|
|
desc->Width = wined3d_desc.width;
|
|
|
|
desc->Height = wined3d_desc.height;
|
|
|
|
desc->Depth = wined3d_desc.depth;
|
2009-02-19 16:59:42 +01:00
|
|
|
|
2010-09-08 11:24:48 +02:00
|
|
|
return D3D_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-28 18:17:29 +02:00
|
|
|
static HRESULT WINAPI d3d9_volume_LockBox(IDirect3DVolume9 *iface,
|
2012-04-12 22:49:04 +02:00
|
|
|
D3DLOCKED_BOX *locked_box, const D3DBOX *box, DWORD flags)
|
2011-04-20 11:04:23 +02:00
|
|
|
{
|
2012-05-28 18:17:29 +02:00
|
|
|
struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
|
2012-04-12 22:49:04 +02:00
|
|
|
struct wined3d_map_desc map_desc;
|
2009-03-23 08:30:16 +01:00
|
|
|
HRESULT hr;
|
|
|
|
|
2009-10-20 11:05:02 +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);
|
2009-03-23 08:30:16 +01:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2012-05-28 18:17:29 +02:00
|
|
|
hr = wined3d_volume_map(volume->wined3d_volume, &map_desc, (const struct wined3d_box *)box, flags);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-23 08:30:16 +01:00
|
|
|
|
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;
|
|
|
|
|
2009-03-23 08:30:16 +01:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-28 18:17:29 +02:00
|
|
|
static HRESULT WINAPI d3d9_volume_UnlockBox(IDirect3DVolume9 *iface)
|
2011-04-20 11:04:23 +02:00
|
|
|
{
|
2012-05-28 18:17:29 +02:00
|
|
|
struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
|
2009-03-23 08:30:16 +01:00
|
|
|
HRESULT hr;
|
|
|
|
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("iface %p.\n", iface);
|
2009-03-23 08:30:16 +01:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2012-05-28 18:17:29 +02:00
|
|
|
hr = wined3d_volume_unmap(volume->wined3d_volume);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-23 08:30:16 +01:00
|
|
|
|
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-28 18:17:29 +02:00
|
|
|
static const struct IDirect3DVolume9Vtbl d3d9_volume_vtbl =
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
2005-08-23 11:34:57 +02:00
|
|
|
/* IUnknown */
|
2012-05-28 18:17:29 +02:00
|
|
|
d3d9_volume_QueryInterface,
|
|
|
|
d3d9_volume_AddRef,
|
|
|
|
d3d9_volume_Release,
|
2005-08-23 11:34:57 +02:00
|
|
|
/* IDirect3DVolume9 */
|
2012-05-28 18:17:29 +02:00
|
|
|
d3d9_volume_GetDevice,
|
|
|
|
d3d9_volume_SetPrivateData,
|
|
|
|
d3d9_volume_GetPrivateData,
|
|
|
|
d3d9_volume_FreePrivateData,
|
|
|
|
d3d9_volume_GetContainer,
|
|
|
|
d3d9_volume_GetDesc,
|
|
|
|
d3d9_volume_LockBox,
|
|
|
|
d3d9_volume_UnlockBox,
|
2003-07-01 03:09:17 +02:00
|
|
|
};
|
2005-01-17 14:44:57 +01:00
|
|
|
|
2009-09-16 08:37:19 +02:00
|
|
|
static void STDMETHODCALLTYPE volume_wined3d_object_destroyed(void *parent)
|
|
|
|
{
|
2014-03-24 12:17:14 +01:00
|
|
|
struct d3d9_volume *volume = parent;
|
|
|
|
d3d9_resource_cleanup(&volume->resource);
|
|
|
|
HeapFree(GetProcessHeap(), 0, volume);
|
2006-12-18 00:16:56 +01:00
|
|
|
}
|
2009-09-16 08:37:17 +02:00
|
|
|
|
2009-09-16 08:37:19 +02:00
|
|
|
static const struct wined3d_parent_ops d3d9_volume_wined3d_parent_ops =
|
|
|
|
{
|
|
|
|
volume_wined3d_object_destroyed,
|
|
|
|
};
|
|
|
|
|
2014-08-12 11:11:03 +02:00
|
|
|
void volume_init(struct d3d9_volume *volume, struct d3d9_texture *texture,
|
|
|
|
struct wined3d_volume *wined3d_volume, const struct wined3d_parent_ops **parent_ops)
|
2009-09-16 08:37:17 +02:00
|
|
|
{
|
2012-05-28 18:17:29 +02:00
|
|
|
volume->IDirect3DVolume9_iface.lpVtbl = &d3d9_volume_vtbl;
|
2014-03-24 12:17:14 +01:00
|
|
|
d3d9_resource_init(&volume->resource);
|
2014-08-12 11:11:03 +02:00
|
|
|
volume->resource.refcount = 0;
|
2013-12-06 11:09:53 +01:00
|
|
|
volume->wined3d_volume = wined3d_volume;
|
2014-08-12 11:11:03 +02:00
|
|
|
volume->texture = texture;
|
2009-09-16 08:37:17 +02:00
|
|
|
|
2013-12-06 11:09:53 +01:00
|
|
|
*parent_ops = &d3d9_volume_wined3d_parent_ops;
|
2009-09-16 08:37:17 +02:00
|
|
|
}
|