2003-07-01 03:09:17 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DStateBlock9 implementation
|
|
|
|
*
|
|
|
|
* Copyright 2002-2003 Raphael Junqueira
|
2005-07-05 18:17:31 +02:00
|
|
|
* Copyright 2002-2003 Jason Edmeades
|
|
|
|
* 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-08-23 11:34:57 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2011-04-12 04:10:34 +02:00
|
|
|
static inline IDirect3DStateBlock9Impl *impl_from_IDirect3DStateBlock9(IDirect3DStateBlock9 *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, IDirect3DStateBlock9Impl, IDirect3DStateBlock9_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDirect3DStateBlock9Impl_QueryInterface(IDirect3DStateBlock9 *iface,
|
|
|
|
REFIID riid, void **ppobj)
|
|
|
|
{
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), ppobj);
|
|
|
|
|
2012-04-01 13:12:04 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_IDirect3DStateBlock9)
|
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
2008-11-02 23:49:40 +01:00
|
|
|
IDirect3DStateBlock9_AddRef(iface);
|
2012-04-01 13:12:04 +02:00
|
|
|
*ppobj = iface;
|
2006-06-07 15:13:29 +02:00
|
|
|
return S_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-04-01 13:12:04 +02:00
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
|
|
|
|
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:10:34 +02:00
|
|
|
static ULONG WINAPI IDirect3DStateBlock9Impl_AddRef(IDirect3DStateBlock9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DStateBlock9Impl *This = impl_from_IDirect3DStateBlock9(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
|
|
|
|
|
|
|
return ref;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 04:10:34 +02:00
|
|
|
static ULONG WINAPI IDirect3DStateBlock9Impl_Release(IDirect3DStateBlock9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DStateBlock9Impl *This = impl_from_IDirect3DStateBlock9(iface);
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
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-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-01-28 20:05:41 +01:00
|
|
|
wined3d_stateblock_decref(This->wined3d_stateblock);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2008-11-02 23:49:40 +01:00
|
|
|
IDirect3DDevice9Ex_Release(This->parentDevice);
|
2003-07-01 03:09:17 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DStateBlock9 Interface follow: */
|
2011-04-12 04:10:34 +02:00
|
|
|
static HRESULT WINAPI IDirect3DStateBlock9Impl_GetDevice(IDirect3DStateBlock9 *iface,
|
|
|
|
IDirect3DDevice9 **device)
|
2009-12-04 11:50:47 +01:00
|
|
|
{
|
2011-04-12 04:10:34 +02:00
|
|
|
IDirect3DStateBlock9Impl *This = impl_from_IDirect3DStateBlock9(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 13:50:51 +02:00
|
|
|
|
2009-12-04 11:50:47 +01:00
|
|
|
*device = (IDirect3DDevice9 *)This->parentDevice;
|
|
|
|
IDirect3DDevice9_AddRef(*device);
|
|
|
|
|
|
|
|
TRACE("Returning device %p.\n", *device);
|
2009-08-26 10:18:09 +02:00
|
|
|
|
2009-12-04 11:50:47 +01:00
|
|
|
return D3D_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 04:10:34 +02:00
|
|
|
static HRESULT WINAPI IDirect3DStateBlock9Impl_Capture(IDirect3DStateBlock9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DStateBlock9Impl *This = impl_from_IDirect3DStateBlock9(iface);
|
2007-06-12 13:50:51 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
2007-06-12 13:50:51 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-01-28 20:05:41 +01:00
|
|
|
hr = wined3d_stateblock_capture(This->wined3d_stateblock);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 13:50:51 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 04:10:34 +02:00
|
|
|
static HRESULT WINAPI IDirect3DStateBlock9Impl_Apply(IDirect3DStateBlock9 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DStateBlock9Impl *This = impl_from_IDirect3DStateBlock9(iface);
|
2007-06-12 13:50:51 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
2007-06-12 13:50:51 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-01-28 20:05:41 +01:00
|
|
|
hr = wined3d_stateblock_apply(This->wined3d_stateblock);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 13:50:51 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static const IDirect3DStateBlock9Vtbl Direct3DStateBlock9_Vtbl =
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
2005-07-05 18:17:31 +02:00
|
|
|
/* IUnknown */
|
2003-07-01 03:09:17 +02:00
|
|
|
IDirect3DStateBlock9Impl_QueryInterface,
|
|
|
|
IDirect3DStateBlock9Impl_AddRef,
|
|
|
|
IDirect3DStateBlock9Impl_Release,
|
2005-07-05 18:17:31 +02:00
|
|
|
/* IDirect3DStateBlock9 */
|
2003-07-01 03:09:17 +02:00
|
|
|
IDirect3DStateBlock9Impl_GetDevice,
|
|
|
|
IDirect3DStateBlock9Impl_Capture,
|
|
|
|
IDirect3DStateBlock9Impl_Apply
|
|
|
|
};
|
|
|
|
|
2010-01-19 23:52:29 +01:00
|
|
|
HRESULT stateblock_init(IDirect3DStateBlock9Impl *stateblock, IDirect3DDevice9Impl *device,
|
2011-01-28 20:05:41 +01:00
|
|
|
D3DSTATEBLOCKTYPE type, struct wined3d_stateblock *wined3d_stateblock)
|
2009-08-28 10:23:11 +02:00
|
|
|
{
|
2007-06-12 13:50:51 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
2011-04-12 04:10:34 +02:00
|
|
|
stateblock->IDirect3DStateBlock9_iface.lpVtbl = &Direct3DStateBlock9_Vtbl;
|
2010-01-19 23:52:29 +01:00
|
|
|
stateblock->ref = 1;
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2010-01-19 23:52:29 +01:00
|
|
|
if (wined3d_stateblock)
|
2009-08-26 10:18:09 +02:00
|
|
|
{
|
2011-01-28 20:05:41 +01:00
|
|
|
stateblock->wined3d_stateblock = wined3d_stateblock;
|
2009-08-28 10:23:11 +02:00
|
|
|
}
|
2010-01-19 23:52:29 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
wined3d_mutex_lock();
|
2011-05-16 23:01:22 +02:00
|
|
|
hr = wined3d_stateblock_create(device->wined3d_device,
|
2012-01-17 21:13:39 +01:00
|
|
|
(enum wined3d_stateblock_type)type, &stateblock->wined3d_stateblock);
|
2010-01-19 23:52:29 +01:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to create wined3d stateblock, hr %#x.\n", hr);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-24 21:34:30 +02:00
|
|
|
stateblock->parentDevice = &device->IDirect3DDevice9Ex_iface;
|
2010-01-19 23:52:29 +01:00
|
|
|
IDirect3DDevice9Ex_AddRef(stateblock->parentDevice);
|
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
return D3D_OK;
|
|
|
|
}
|