2003-07-01 01:09:17 +00:00
|
|
|
/*
|
|
|
|
* IDirect3DVolume9 implementation
|
|
|
|
*
|
2005-01-17 13:44:57 +00:00
|
|
|
* Copyright 2002-2005 Jason Edmeades
|
2003-07-01 01:09:17 +00: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 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-07-01 01:09:17 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "d3d9_private.h"
|
|
|
|
|
2005-03-11 10:25:30 +00:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
|
2003-07-01 01:09:17 +00:00
|
|
|
|
2011-04-20 09:04:23 +00:00
|
|
|
static inline IDirect3DVolume9Impl *impl_from_IDirect3DVolume9(IDirect3DVolume9 *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, IDirect3DVolume9Impl, IDirect3DVolume9_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDirect3DVolume9Impl_QueryInterface(IDirect3DVolume9 *iface, REFIID riid,
|
|
|
|
void **ppobj)
|
|
|
|
{
|
|
|
|
IDirect3DVolume9Impl *This = impl_from_IDirect3DVolume9(iface);
|
2003-07-01 01:09:17 +00:00
|
|
|
|
2009-10-20 09:05:02 +00:00
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), ppobj);
|
|
|
|
|
2003-07-01 01:09:17 +00:00
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DVolume9)) {
|
2008-11-02 22:49:40 +00:00
|
|
|
IDirect3DVolume9_AddRef(iface);
|
2003-07-01 01:09:17 +00:00
|
|
|
*ppobj = This;
|
2006-06-07 13:13:29 +00:00
|
|
|
return S_OK;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
2006-06-07 13:13:29 +00:00
|
|
|
*ppobj = NULL;
|
2003-07-01 01:09:17 +00:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2011-04-20 09:04:23 +00:00
|
|
|
static ULONG WINAPI IDirect3DVolume9Impl_AddRef(IDirect3DVolume9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DVolume9Impl *This = impl_from_IDirect3DVolume9(iface);
|
2005-01-24 11:31:45 +00:00
|
|
|
|
2009-10-20 09:05:02 +00:00
|
|
|
TRACE("iface %p.\n", iface);
|
2005-01-24 11:31:45 +00:00
|
|
|
|
2006-12-17 23:16:56 +00:00
|
|
|
if (This->forwardReference) {
|
|
|
|
/* Forward refcounting */
|
|
|
|
TRACE("(%p) : Forwarding to %p\n", This, This->forwardReference);
|
|
|
|
return IUnknown_AddRef(This->forwardReference);
|
2006-03-06 18:28:20 +00:00
|
|
|
} else {
|
|
|
|
/* No container, handle our own refcounting */
|
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
2009-10-20 09:05:02 +00:00
|
|
|
|
|
|
|
TRACE("%p increasing refcount to %u.\n", iface, ref);
|
2009-09-16 06:37:19 +00:00
|
|
|
|
|
|
|
if (ref == 1)
|
|
|
|
{
|
|
|
|
wined3d_mutex_lock();
|
2011-04-14 20:41:47 +00:00
|
|
|
wined3d_volume_incref(This->wined3d_volume);
|
2009-09-16 06:37:19 +00:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
}
|
|
|
|
|
2006-03-06 18:28:20 +00:00
|
|
|
return ref;
|
|
|
|
}
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2011-04-20 09:04:23 +00:00
|
|
|
static ULONG WINAPI IDirect3DVolume9Impl_Release(IDirect3DVolume9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DVolume9Impl *This = impl_from_IDirect3DVolume9(iface);
|
2006-03-06 18:28:20 +00:00
|
|
|
|
2009-10-20 09:05:02 +00:00
|
|
|
TRACE("iface %p.\n", iface);
|
2006-03-06 18:28:20 +00:00
|
|
|
|
2006-12-17 23:16:56 +00:00
|
|
|
if (This->forwardReference) {
|
|
|
|
/* Forward refcounting */
|
|
|
|
TRACE("(%p) : Forwarding to %p\n", This, This->forwardReference);
|
|
|
|
return IUnknown_Release(This->forwardReference);
|
2006-03-06 18:28:20 +00:00
|
|
|
} else {
|
|
|
|
/* No container, handle our own refcounting */
|
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
2009-10-20 09:05:02 +00:00
|
|
|
|
|
|
|
TRACE("%p decreasing refcount to %u.\n", iface, ref);
|
2005-01-24 11:31:45 +00:00
|
|
|
|
2006-03-06 18:28:20 +00:00
|
|
|
if (ref == 0) {
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_lock();
|
2011-04-14 20:41:47 +00:00
|
|
|
wined3d_volume_decref(This->wined3d_volume);
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_unlock();
|
2006-03-06 18:28:20 +00:00
|
|
|
}
|
2005-01-24 11:31:45 +00:00
|
|
|
|
2006-03-06 18:28:20 +00:00
|
|
|
return ref;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-20 09:04:23 +00:00
|
|
|
static HRESULT WINAPI IDirect3DVolume9Impl_GetDevice(IDirect3DVolume9 *iface,
|
|
|
|
IDirect3DDevice9 **device)
|
2009-12-09 10:51:17 +00:00
|
|
|
{
|
2011-04-20 09:04:23 +00:00
|
|
|
IDirect3DVolume9Impl *This = impl_from_IDirect3DVolume9(iface);
|
2009-12-09 10:51:17 +00:00
|
|
|
IDirect3DResource9 *resource;
|
|
|
|
HRESULT hr;
|
2009-03-23 07:30:16 +00:00
|
|
|
|
2009-12-09 10:51:17 +00:00
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
2009-03-23 07:30:16 +00:00
|
|
|
|
2009-12-09 10:51:17 +00:00
|
|
|
hr = IUnknown_QueryInterface(This->forwardReference, &IID_IDirect3DResource9, (void **)&resource);
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = IDirect3DResource9_GetDevice(resource, device);
|
|
|
|
IDirect3DResource9_Release(resource);
|
2009-03-23 07:30:16 +00:00
|
|
|
|
2009-12-09 10:51:17 +00:00
|
|
|
TRACE("Returning device %p.\n", *device);
|
|
|
|
}
|
2009-03-23 07:30:16 +00:00
|
|
|
|
2009-12-09 10:51:17 +00:00
|
|
|
return hr;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2011-04-20 09:04:23 +00:00
|
|
|
static HRESULT WINAPI IDirect3DVolume9Impl_SetPrivateData(IDirect3DVolume9 *iface, REFGUID refguid,
|
|
|
|
const void *pData, DWORD SizeOfData, DWORD Flags)
|
|
|
|
{
|
|
|
|
IDirect3DVolume9Impl *This = impl_from_IDirect3DVolume9(iface);
|
2011-06-22 22:02:33 +00:00
|
|
|
struct wined3d_resource *resource;
|
2009-03-23 07:30:16 +00:00
|
|
|
HRESULT hr;
|
|
|
|
|
2009-10-20 09:05:02 +00:00
|
|
|
TRACE("iface %p, guid %s, data %p, data_size %u, flags %#x.\n",
|
|
|
|
iface, debugstr_guid(refguid), pData, SizeOfData, Flags);
|
2009-03-23 07:30:16 +00:00
|
|
|
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_lock();
|
2011-06-22 22:02:33 +00:00
|
|
|
resource = wined3d_volume_get_resource(This->wined3d_volume);
|
|
|
|
hr = wined3d_resource_set_private_data(resource, refguid, pData, SizeOfData, Flags);
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-23 07:30:16 +00:00
|
|
|
|
|
|
|
return hr;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2011-04-20 09:04:23 +00:00
|
|
|
static HRESULT WINAPI IDirect3DVolume9Impl_GetPrivateData(IDirect3DVolume9 *iface, REFGUID refguid,
|
|
|
|
void *pData, DWORD *pSizeOfData)
|
|
|
|
{
|
|
|
|
IDirect3DVolume9Impl *This = impl_from_IDirect3DVolume9(iface);
|
2011-06-22 22:02:33 +00:00
|
|
|
struct wined3d_resource *resource;
|
2009-03-23 07:30:16 +00:00
|
|
|
HRESULT hr;
|
|
|
|
|
2009-10-20 09:05:02 +00:00
|
|
|
TRACE("iface %p, guid %s, data %p, data_size %p.\n",
|
|
|
|
iface, debugstr_guid(refguid), pData, pSizeOfData);
|
2009-03-23 07:30:16 +00:00
|
|
|
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_lock();
|
2011-06-22 22:02:33 +00:00
|
|
|
resource = wined3d_volume_get_resource(This->wined3d_volume);
|
|
|
|
hr = wined3d_resource_get_private_data(resource, refguid, pData, pSizeOfData);
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-23 07:30:16 +00:00
|
|
|
|
|
|
|
return hr;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2011-04-20 09:04:23 +00:00
|
|
|
static HRESULT WINAPI IDirect3DVolume9Impl_FreePrivateData(IDirect3DVolume9 *iface, REFGUID refguid)
|
|
|
|
{
|
|
|
|
IDirect3DVolume9Impl *This = impl_from_IDirect3DVolume9(iface);
|
2011-06-22 22:02:33 +00:00
|
|
|
struct wined3d_resource *resource;
|
2009-03-23 07:30:16 +00:00
|
|
|
HRESULT hr;
|
|
|
|
|
2009-10-20 09:05:02 +00:00
|
|
|
TRACE("iface %p, guid %s.\n", iface, debugstr_guid(refguid));
|
2009-03-23 07:30:16 +00:00
|
|
|
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_lock();
|
2011-06-22 22:02:33 +00:00
|
|
|
resource = wined3d_volume_get_resource(This->wined3d_volume);
|
|
|
|
hr = wined3d_resource_free_private_data(resource, refguid);
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-23 07:30:16 +00:00
|
|
|
|
|
|
|
return hr;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2011-04-20 09:04:23 +00:00
|
|
|
static HRESULT WINAPI IDirect3DVolume9Impl_GetContainer(IDirect3DVolume9 *iface, REFIID riid,
|
|
|
|
void **ppContainer)
|
|
|
|
{
|
|
|
|
IDirect3DVolume9Impl *This = impl_from_IDirect3DVolume9(iface);
|
2005-01-17 13:44:57 +00:00
|
|
|
HRESULT res;
|
2005-03-11 10:25:30 +00:00
|
|
|
|
2009-10-20 09:05:02 +00:00
|
|
|
TRACE("iface %p, riid %s, container %p.\n", iface, debugstr_guid(riid), ppContainer);
|
2005-01-17 13:44:57 +00:00
|
|
|
|
2006-12-17 23:18:05 +00:00
|
|
|
if (!This->container) return E_NOINTERFACE;
|
|
|
|
|
|
|
|
res = IUnknown_QueryInterface(This->container, riid, ppContainer);
|
2006-02-07 11:26:10 +00:00
|
|
|
|
|
|
|
TRACE("Returning ppContainer %p, *ppContainer %p\n", ppContainer, *ppContainer);
|
|
|
|
|
2005-01-17 13:44:57 +00:00
|
|
|
return res;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2011-03-08 18:41:05 +00:00
|
|
|
static HRESULT WINAPI IDirect3DVolume9Impl_GetDesc(IDirect3DVolume9 *iface, D3DVOLUME_DESC *desc)
|
|
|
|
{
|
2011-04-20 09:04:23 +00:00
|
|
|
IDirect3DVolume9Impl *This = impl_from_IDirect3DVolume9(iface);
|
2011-03-08 18:41:05 +00:00
|
|
|
struct wined3d_resource_desc wined3d_desc;
|
2011-03-10 18:07:09 +00:00
|
|
|
struct wined3d_resource *wined3d_resource;
|
2005-01-17 13:44:57 +00:00
|
|
|
|
2011-03-08 18:41:05 +00:00
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
2005-03-11 10:25:30 +00:00
|
|
|
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_lock();
|
2011-04-14 20:41:47 +00:00
|
|
|
wined3d_resource = wined3d_volume_get_resource(This->wined3d_volume);
|
2011-03-10 18:07:09 +00:00
|
|
|
wined3d_resource_get_desc(wined3d_resource, &wined3d_desc);
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-23 07:30:16 +00:00
|
|
|
|
2011-03-08 18:41:05 +00: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->Width = wined3d_desc.width;
|
|
|
|
desc->Height = wined3d_desc.height;
|
|
|
|
desc->Depth = wined3d_desc.depth;
|
2009-02-19 15:59:42 +00:00
|
|
|
|
2010-09-08 09:24:48 +00:00
|
|
|
return D3D_OK;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2011-04-20 09:04:23 +00:00
|
|
|
static HRESULT WINAPI IDirect3DVolume9Impl_LockBox(IDirect3DVolume9 *iface,
|
|
|
|
D3DLOCKED_BOX *pLockedVolume, const D3DBOX *pBox, DWORD Flags)
|
|
|
|
{
|
|
|
|
IDirect3DVolume9Impl *This = impl_from_IDirect3DVolume9(iface);
|
2009-03-23 07:30:16 +00:00
|
|
|
HRESULT hr;
|
|
|
|
|
2009-10-20 09:05:02 +00:00
|
|
|
TRACE("iface %p, locked_box %p, box %p, flags %#x.\n",
|
|
|
|
iface, pLockedVolume, pBox, Flags);
|
2009-03-23 07:30:16 +00:00
|
|
|
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_lock();
|
2011-12-05 21:06:57 +00:00
|
|
|
hr = wined3d_volume_map(This->wined3d_volume, (struct wined3d_mapped_box *)pLockedVolume,
|
2011-12-06 21:57:47 +00:00
|
|
|
(const struct wined3d_box *)pBox, Flags);
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-23 07:30:16 +00:00
|
|
|
|
|
|
|
return hr;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2011-04-20 09:04:23 +00:00
|
|
|
static HRESULT WINAPI IDirect3DVolume9Impl_UnlockBox(IDirect3DVolume9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DVolume9Impl *This = impl_from_IDirect3DVolume9(iface);
|
2009-03-23 07:30:16 +00:00
|
|
|
HRESULT hr;
|
|
|
|
|
2009-10-20 09:05:02 +00:00
|
|
|
TRACE("iface %p.\n", iface);
|
2009-03-23 07:30:16 +00:00
|
|
|
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_lock();
|
2011-04-14 20:41:47 +00:00
|
|
|
hr = wined3d_volume_unmap(This->wined3d_volume);
|
2009-08-26 08:18:09 +00:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-23 07:30:16 +00:00
|
|
|
|
|
|
|
return hr;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2009-09-16 06:37:17 +00:00
|
|
|
static const IDirect3DVolume9Vtbl Direct3DVolume9_Vtbl =
|
2003-07-01 01:09:17 +00:00
|
|
|
{
|
2005-08-23 09:34:57 +00:00
|
|
|
/* IUnknown */
|
2003-07-01 01:09:17 +00:00
|
|
|
IDirect3DVolume9Impl_QueryInterface,
|
|
|
|
IDirect3DVolume9Impl_AddRef,
|
|
|
|
IDirect3DVolume9Impl_Release,
|
2005-08-23 09:34:57 +00:00
|
|
|
/* IDirect3DVolume9 */
|
2003-07-01 01:09:17 +00:00
|
|
|
IDirect3DVolume9Impl_GetDevice,
|
|
|
|
IDirect3DVolume9Impl_SetPrivateData,
|
|
|
|
IDirect3DVolume9Impl_GetPrivateData,
|
|
|
|
IDirect3DVolume9Impl_FreePrivateData,
|
|
|
|
IDirect3DVolume9Impl_GetContainer,
|
|
|
|
IDirect3DVolume9Impl_GetDesc,
|
|
|
|
IDirect3DVolume9Impl_LockBox,
|
|
|
|
IDirect3DVolume9Impl_UnlockBox
|
|
|
|
};
|
2005-01-17 13:44:57 +00:00
|
|
|
|
2009-09-16 06:37:19 +00:00
|
|
|
static void STDMETHODCALLTYPE volume_wined3d_object_destroyed(void *parent)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, parent);
|
2006-12-17 23:16:56 +00:00
|
|
|
}
|
2009-09-16 06:37:17 +00:00
|
|
|
|
2009-09-16 06:37:19 +00:00
|
|
|
static const struct wined3d_parent_ops d3d9_volume_wined3d_parent_ops =
|
|
|
|
{
|
|
|
|
volume_wined3d_object_destroyed,
|
|
|
|
};
|
|
|
|
|
2009-09-16 06:37:17 +00:00
|
|
|
HRESULT volume_init(IDirect3DVolume9Impl *volume, IDirect3DDevice9Impl *device, UINT width, UINT height,
|
2010-08-23 16:28:10 +00:00
|
|
|
UINT depth, DWORD usage, enum wined3d_format_id format, WINED3DPOOL pool)
|
2009-09-16 06:37:17 +00:00
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
2011-04-20 09:04:23 +00:00
|
|
|
volume->IDirect3DVolume9_iface.lpVtbl = &Direct3DVolume9_Vtbl;
|
2009-09-16 06:37:17 +00:00
|
|
|
volume->ref = 1;
|
|
|
|
|
2011-05-16 21:01:22 +00:00
|
|
|
hr = wined3d_volume_create(device->wined3d_device, width, height, depth, usage & WINED3DUSAGE_MASK,
|
2011-04-14 20:41:47 +00:00
|
|
|
format, pool, volume, &d3d9_volume_wined3d_parent_ops, &volume->wined3d_volume);
|
2009-09-16 06:37:17 +00:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to create wined3d volume, hr %#x.\n", hr);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
}
|