2009-10-30 20:11:34 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2009 Henri Verbeet for CodeWeavers
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
|
|
|
|
2015-08-21 00:07:53 +02:00
|
|
|
#include "d3d11_private.h"
|
2009-10-30 20:11:34 +01:00
|
|
|
|
2015-08-21 00:07:53 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d11);
|
2009-10-30 20:11:34 +01:00
|
|
|
|
2015-10-08 02:55:54 +02:00
|
|
|
/* ID3D11BlendState methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_blend_state_QueryInterface(ID3D11BlendState *iface,
|
2009-11-04 10:37:13 +01:00
|
|
|
REFIID riid, void **object)
|
|
|
|
{
|
2015-10-08 02:55:54 +02:00
|
|
|
struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface);
|
|
|
|
|
2009-11-04 10:37:13 +01:00
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
|
|
|
|
|
2015-10-08 02:55:54 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_ID3D11BlendState)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D11DeviceChild)
|
2009-11-04 10:37:13 +01:00
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
2015-10-08 02:55:54 +02:00
|
|
|
ID3D11BlendState_AddRef(iface);
|
2009-11-04 10:37:13 +01:00
|
|
|
*object = iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-10-20 01:46:42 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_ID3D10BlendState1)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D10BlendState)
|
2015-10-08 02:55:54 +02:00
|
|
|
|| IsEqualGUID(riid, &IID_ID3D10DeviceChild))
|
|
|
|
{
|
2015-10-20 01:46:42 +02:00
|
|
|
ID3D10BlendState1_AddRef(&state->ID3D10BlendState1_iface);
|
|
|
|
*object = &state->ID3D10BlendState1_iface;
|
2015-10-08 02:55:54 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-04 10:37:13 +01:00
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
|
|
|
|
|
|
|
*object = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2015-10-08 02:55:54 +02:00
|
|
|
static ULONG STDMETHODCALLTYPE d3d11_blend_state_AddRef(ID3D11BlendState *iface)
|
2009-11-04 10:37:13 +01:00
|
|
|
{
|
2015-10-08 02:55:54 +02:00
|
|
|
struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface);
|
|
|
|
ULONG refcount = InterlockedIncrement(&state->refcount);
|
2009-11-04 10:37:13 +01:00
|
|
|
|
2015-10-08 02:55:54 +02:00
|
|
|
TRACE("%p increasing refcount to %u.\n", state, refcount);
|
2009-11-04 10:37:13 +01:00
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
2015-10-08 02:55:54 +02:00
|
|
|
static ULONG STDMETHODCALLTYPE d3d11_blend_state_Release(ID3D11BlendState *iface)
|
2009-11-04 10:37:13 +01:00
|
|
|
{
|
2015-10-08 02:55:54 +02:00
|
|
|
struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface);
|
2012-12-12 23:10:42 +01:00
|
|
|
ULONG refcount = InterlockedDecrement(&state->refcount);
|
2009-11-04 10:37:13 +01:00
|
|
|
|
2012-12-12 23:10:42 +01:00
|
|
|
TRACE("%p decreasing refcount to %u.\n", state, refcount);
|
2009-11-04 10:37:13 +01:00
|
|
|
|
|
|
|
if (!refcount)
|
|
|
|
{
|
2015-10-08 02:55:54 +02:00
|
|
|
struct d3d_device *device = impl_from_ID3D11Device(state->device);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2016-09-20 11:41:35 +02:00
|
|
|
wine_rb_remove(&device->blend_states, &state->entry);
|
2015-10-08 02:55:54 +02:00
|
|
|
ID3D11Device_Release(state->device);
|
2015-02-27 12:29:46 +01:00
|
|
|
wined3d_private_store_cleanup(&state->private_store);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2012-12-12 23:10:42 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, state);
|
2009-11-04 10:37:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
2015-10-08 02:55:54 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d11_blend_state_GetDevice(ID3D11BlendState *iface,
|
|
|
|
ID3D11Device **device)
|
|
|
|
{
|
|
|
|
struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
|
|
|
|
|
|
|
*device = state->device;
|
|
|
|
ID3D11Device_AddRef(*device);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_blend_state_GetPrivateData(ID3D11BlendState *iface,
|
|
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
|
|
{
|
|
|
|
struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %p, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
|
|
|
return d3d_get_private_data(&state->private_store, guid, data_size, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_blend_state_SetPrivateData(ID3D11BlendState *iface,
|
|
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
|
|
{
|
|
|
|
struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %u, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
|
|
|
return d3d_set_private_data(&state->private_store, guid, data_size, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_blend_state_SetPrivateDataInterface(ID3D11BlendState *iface,
|
|
|
|
REFGUID guid, const IUnknown *data)
|
|
|
|
{
|
|
|
|
struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
|
|
|
|
|
|
|
|
return d3d_set_private_data_interface(&state->private_store, guid, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d11_blend_state_GetDesc(ID3D11BlendState *iface, D3D11_BLEND_DESC *desc)
|
|
|
|
{
|
2015-10-08 02:55:55 +02:00
|
|
|
struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
|
|
|
|
*desc = state->desc;
|
2015-10-08 02:55:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D11BlendStateVtbl d3d11_blend_state_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
d3d11_blend_state_QueryInterface,
|
|
|
|
d3d11_blend_state_AddRef,
|
|
|
|
d3d11_blend_state_Release,
|
|
|
|
/* ID3D11DeviceChild methods */
|
|
|
|
d3d11_blend_state_GetDevice,
|
|
|
|
d3d11_blend_state_GetPrivateData,
|
|
|
|
d3d11_blend_state_SetPrivateData,
|
|
|
|
d3d11_blend_state_SetPrivateDataInterface,
|
|
|
|
/* ID3D11BlendState methods */
|
|
|
|
d3d11_blend_state_GetDesc,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ID3D10BlendState methods */
|
|
|
|
|
2015-10-20 01:46:42 +02:00
|
|
|
static inline struct d3d_blend_state *impl_from_ID3D10BlendState(ID3D10BlendState1 *iface)
|
2015-10-08 02:55:54 +02:00
|
|
|
{
|
2015-10-20 01:46:42 +02:00
|
|
|
return CONTAINING_RECORD(iface, struct d3d_blend_state, ID3D10BlendState1_iface);
|
2015-10-08 02:55:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* IUnknown methods */
|
|
|
|
|
2015-10-20 01:46:42 +02:00
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_blend_state_QueryInterface(ID3D10BlendState1 *iface,
|
2015-10-08 02:55:54 +02:00
|
|
|
REFIID riid, void **object)
|
|
|
|
{
|
|
|
|
struct d3d_blend_state *state = impl_from_ID3D10BlendState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
|
|
|
|
|
|
|
|
return d3d11_blend_state_QueryInterface(&state->ID3D11BlendState_iface, riid, object);
|
|
|
|
}
|
|
|
|
|
2015-10-20 01:46:42 +02:00
|
|
|
static ULONG STDMETHODCALLTYPE d3d10_blend_state_AddRef(ID3D10BlendState1 *iface)
|
2015-10-08 02:55:54 +02:00
|
|
|
{
|
|
|
|
struct d3d_blend_state *state = impl_from_ID3D10BlendState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
return d3d11_blend_state_AddRef(&state->ID3D11BlendState_iface);
|
|
|
|
}
|
|
|
|
|
2015-10-20 01:46:42 +02:00
|
|
|
static ULONG STDMETHODCALLTYPE d3d10_blend_state_Release(ID3D10BlendState1 *iface)
|
2015-10-08 02:55:54 +02:00
|
|
|
{
|
|
|
|
struct d3d_blend_state *state = impl_from_ID3D10BlendState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
return d3d11_blend_state_Release(&state->ID3D11BlendState_iface);
|
|
|
|
}
|
|
|
|
|
2009-11-04 10:37:13 +01:00
|
|
|
/* ID3D10DeviceChild methods */
|
|
|
|
|
2015-10-20 01:46:42 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d10_blend_state_GetDevice(ID3D10BlendState1 *iface, ID3D10Device **device)
|
2009-11-04 10:37:13 +01:00
|
|
|
{
|
2015-10-08 02:55:53 +02:00
|
|
|
struct d3d_blend_state *state = impl_from_ID3D10BlendState(iface);
|
2014-02-17 11:24:30 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
|
|
|
|
2015-10-08 02:55:54 +02:00
|
|
|
ID3D11Device_QueryInterface(state->device, &IID_ID3D10Device, (void **)device);
|
2009-11-04 10:37:13 +01:00
|
|
|
}
|
|
|
|
|
2015-10-20 01:46:42 +02:00
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_blend_state_GetPrivateData(ID3D10BlendState1 *iface,
|
2009-11-04 10:37:13 +01:00
|
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
|
|
{
|
2015-10-08 02:55:53 +02:00
|
|
|
struct d3d_blend_state *state = impl_from_ID3D10BlendState(iface);
|
2015-03-09 11:47:04 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %p, data %p.\n",
|
2009-11-04 10:37:13 +01:00
|
|
|
iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_get_private_data(&state->private_store, guid, data_size, data);
|
2009-11-04 10:37:13 +01:00
|
|
|
}
|
|
|
|
|
2015-10-20 01:46:42 +02:00
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_blend_state_SetPrivateData(ID3D10BlendState1 *iface,
|
2009-11-04 10:37:13 +01:00
|
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
|
|
{
|
2015-10-08 02:55:53 +02:00
|
|
|
struct d3d_blend_state *state = impl_from_ID3D10BlendState(iface);
|
2015-02-27 12:29:46 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %u, data %p.\n",
|
2009-11-04 10:37:13 +01:00
|
|
|
iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_set_private_data(&state->private_store, guid, data_size, data);
|
2009-11-04 10:37:13 +01:00
|
|
|
}
|
|
|
|
|
2015-10-20 01:46:42 +02:00
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_blend_state_SetPrivateDataInterface(ID3D10BlendState1 *iface,
|
2009-11-04 10:37:13 +01:00
|
|
|
REFGUID guid, const IUnknown *data)
|
|
|
|
{
|
2015-10-08 02:55:53 +02:00
|
|
|
struct d3d_blend_state *state = impl_from_ID3D10BlendState(iface);
|
2009-11-04 10:37:13 +01:00
|
|
|
|
2015-03-09 11:47:03 +01:00
|
|
|
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_set_private_data_interface(&state->private_store, guid, data);
|
2009-11-04 10:37:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10BlendState methods */
|
|
|
|
|
2015-10-20 01:46:42 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d10_blend_state_GetDesc(ID3D10BlendState1 *iface, D3D10_BLEND_DESC *desc)
|
2009-11-04 10:37:13 +01:00
|
|
|
{
|
2015-10-08 02:55:53 +02:00
|
|
|
struct d3d_blend_state *state = impl_from_ID3D10BlendState(iface);
|
2015-10-08 02:55:55 +02:00
|
|
|
const D3D11_BLEND_DESC *d3d11_desc = &state->desc;
|
|
|
|
unsigned int i;
|
2012-12-12 23:10:41 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
|
2015-10-08 02:55:55 +02:00
|
|
|
desc->AlphaToCoverageEnable = d3d11_desc->AlphaToCoverageEnable;
|
|
|
|
desc->SrcBlend = d3d11_desc->RenderTarget[0].SrcBlend;
|
|
|
|
desc->DestBlend = d3d11_desc->RenderTarget[0].DestBlend;
|
|
|
|
desc->BlendOp = d3d11_desc->RenderTarget[0].BlendOp;
|
|
|
|
desc->SrcBlendAlpha = d3d11_desc->RenderTarget[0].SrcBlendAlpha;
|
|
|
|
desc->DestBlendAlpha = d3d11_desc->RenderTarget[0].DestBlendAlpha;
|
|
|
|
desc->BlendOpAlpha = d3d11_desc->RenderTarget[0].BlendOpAlpha;
|
|
|
|
for (i = 0; i < D3D10_SIMULTANEOUS_RENDER_TARGET_COUNT; ++i)
|
|
|
|
{
|
|
|
|
desc->BlendEnable[i] = d3d11_desc->RenderTarget[i].BlendEnable;
|
|
|
|
desc->RenderTargetWriteMask[i] = d3d11_desc->RenderTarget[i].RenderTargetWriteMask;
|
|
|
|
}
|
2009-11-04 10:37:13 +01:00
|
|
|
}
|
|
|
|
|
2015-10-20 01:46:42 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d10_blend_state_GetDesc1(ID3D10BlendState1 *iface, D3D10_BLEND_DESC1 *desc)
|
|
|
|
{
|
|
|
|
struct d3d_blend_state *state = impl_from_ID3D10BlendState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
|
|
|
|
memcpy(desc, &state->desc, sizeof(*desc));
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D10BlendState1Vtbl d3d10_blend_state_vtbl =
|
2009-11-04 10:37:13 +01:00
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
d3d10_blend_state_QueryInterface,
|
|
|
|
d3d10_blend_state_AddRef,
|
|
|
|
d3d10_blend_state_Release,
|
|
|
|
/* ID3D10DeviceChild methods */
|
|
|
|
d3d10_blend_state_GetDevice,
|
|
|
|
d3d10_blend_state_GetPrivateData,
|
|
|
|
d3d10_blend_state_SetPrivateData,
|
|
|
|
d3d10_blend_state_SetPrivateDataInterface,
|
|
|
|
/* ID3D10BlendState methods */
|
|
|
|
d3d10_blend_state_GetDesc,
|
2015-10-20 01:46:42 +02:00
|
|
|
/* ID3D10BlendState1 methods */
|
|
|
|
d3d10_blend_state_GetDesc1,
|
2009-11-04 10:37:13 +01:00
|
|
|
};
|
|
|
|
|
2015-10-08 02:55:53 +02:00
|
|
|
HRESULT d3d_blend_state_init(struct d3d_blend_state *state, struct d3d_device *device,
|
2015-10-08 02:55:55 +02:00
|
|
|
const D3D11_BLEND_DESC *desc)
|
2009-11-04 10:37:13 +01:00
|
|
|
{
|
2015-10-08 02:55:54 +02:00
|
|
|
state->ID3D11BlendState_iface.lpVtbl = &d3d11_blend_state_vtbl;
|
2015-10-20 01:46:42 +02:00
|
|
|
state->ID3D10BlendState1_iface.lpVtbl = &d3d10_blend_state_vtbl;
|
2009-11-04 10:37:13 +01:00
|
|
|
state->refcount = 1;
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2015-02-27 12:29:46 +01:00
|
|
|
wined3d_private_store_init(&state->private_store);
|
2012-12-12 23:10:41 +01:00
|
|
|
state->desc = *desc;
|
2009-11-04 10:37:13 +01:00
|
|
|
|
2012-12-12 23:10:42 +01:00
|
|
|
if (wine_rb_put(&device->blend_states, desc, &state->entry) == -1)
|
|
|
|
{
|
|
|
|
ERR("Failed to insert blend state entry.\n");
|
2015-02-27 12:29:46 +01:00
|
|
|
wined3d_private_store_cleanup(&state->private_store);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2012-12-12 23:10:42 +01:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2012-12-12 23:10:42 +01:00
|
|
|
|
2015-10-08 02:55:54 +02:00
|
|
|
state->device = &device->ID3D11Device_iface;
|
|
|
|
ID3D11Device_AddRef(state->device);
|
2014-02-17 11:24:30 +01:00
|
|
|
|
2009-11-04 10:37:13 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-11-06 01:28:27 +01:00
|
|
|
struct d3d_blend_state *unsafe_impl_from_ID3D11BlendState(ID3D11BlendState *iface)
|
|
|
|
{
|
|
|
|
if (!iface)
|
|
|
|
return NULL;
|
|
|
|
assert(iface->lpVtbl == &d3d11_blend_state_vtbl);
|
|
|
|
|
|
|
|
return impl_from_ID3D11BlendState(iface);
|
|
|
|
}
|
|
|
|
|
2015-10-08 02:55:53 +02:00
|
|
|
struct d3d_blend_state *unsafe_impl_from_ID3D10BlendState(ID3D10BlendState *iface)
|
2012-10-04 13:53:25 +02:00
|
|
|
{
|
|
|
|
if (!iface)
|
|
|
|
return NULL;
|
2015-10-20 01:46:42 +02:00
|
|
|
assert(iface->lpVtbl == (ID3D10BlendStateVtbl *)&d3d10_blend_state_vtbl);
|
2012-10-04 13:53:25 +02:00
|
|
|
|
2015-10-20 01:46:42 +02:00
|
|
|
return impl_from_ID3D10BlendState((ID3D10BlendState1 *)iface);
|
2012-10-04 13:53:25 +02:00
|
|
|
}
|
|
|
|
|
2015-10-02 01:31:52 +02:00
|
|
|
/* ID3D11DepthStencilState methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_depthstencil_state_QueryInterface(ID3D11DepthStencilState *iface,
|
2009-10-30 20:11:34 +01:00
|
|
|
REFIID riid, void **object)
|
|
|
|
{
|
2015-10-02 01:31:52 +02:00
|
|
|
struct d3d_depthstencil_state *state = impl_from_ID3D11DepthStencilState(iface);
|
|
|
|
|
2009-10-30 20:11:34 +01:00
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
|
|
|
|
|
2015-10-02 01:31:52 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_ID3D11DepthStencilState)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D11DeviceChild)
|
2009-10-30 20:11:34 +01:00
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
2015-10-02 01:31:52 +02:00
|
|
|
ID3D11DepthStencilState_AddRef(iface);
|
2009-10-30 20:11:34 +01:00
|
|
|
*object = iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-10-02 01:31:52 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_ID3D10DepthStencilState)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D10DeviceChild))
|
|
|
|
{
|
|
|
|
ID3D10DepthStencilState_AddRef(&state->ID3D10DepthStencilState_iface);
|
|
|
|
*object = &state->ID3D10DepthStencilState_iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2009-10-30 20:11:34 +01:00
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
|
|
|
|
|
|
|
*object = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2015-10-02 01:31:52 +02:00
|
|
|
static ULONG STDMETHODCALLTYPE d3d11_depthstencil_state_AddRef(ID3D11DepthStencilState *iface)
|
2009-10-30 20:11:34 +01:00
|
|
|
{
|
2015-10-02 01:31:52 +02:00
|
|
|
struct d3d_depthstencil_state *state = impl_from_ID3D11DepthStencilState(iface);
|
|
|
|
ULONG refcount = InterlockedIncrement(&state->refcount);
|
2009-10-30 20:11:34 +01:00
|
|
|
|
2015-10-02 01:31:52 +02:00
|
|
|
TRACE("%p increasing refcount to %u.\n", state, refcount);
|
2009-10-30 20:11:34 +01:00
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
2015-10-02 01:31:52 +02:00
|
|
|
static ULONG STDMETHODCALLTYPE d3d11_depthstencil_state_Release(ID3D11DepthStencilState *iface)
|
2009-10-30 20:11:34 +01:00
|
|
|
{
|
2015-10-02 01:31:52 +02:00
|
|
|
struct d3d_depthstencil_state *state = impl_from_ID3D11DepthStencilState(iface);
|
2012-12-13 22:08:59 +01:00
|
|
|
ULONG refcount = InterlockedDecrement(&state->refcount);
|
2009-10-30 20:11:34 +01:00
|
|
|
|
2012-12-13 22:08:59 +01:00
|
|
|
TRACE("%p decreasing refcount to %u.\n", state, refcount);
|
2009-10-30 20:11:34 +01:00
|
|
|
|
|
|
|
if (!refcount)
|
|
|
|
{
|
2015-10-02 01:31:52 +02:00
|
|
|
struct d3d_device *device = impl_from_ID3D11Device(state->device);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2016-09-20 11:41:35 +02:00
|
|
|
wine_rb_remove(&device->depthstencil_states, &state->entry);
|
2015-10-02 01:31:52 +02:00
|
|
|
ID3D11Device_Release(state->device);
|
2015-03-09 11:47:05 +01:00
|
|
|
wined3d_private_store_cleanup(&state->private_store);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2012-12-13 22:08:59 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, state);
|
2009-10-30 20:11:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
2015-10-02 01:31:52 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d11_depthstencil_state_GetDevice(ID3D11DepthStencilState *iface,
|
|
|
|
ID3D11Device **device)
|
|
|
|
{
|
|
|
|
struct d3d_depthstencil_state *state = impl_from_ID3D11DepthStencilState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
|
|
|
|
|
|
|
*device = state->device;
|
|
|
|
ID3D11Device_AddRef(*device);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_depthstencil_state_GetPrivateData(ID3D11DepthStencilState *iface,
|
|
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
|
|
{
|
|
|
|
struct d3d_depthstencil_state *state = impl_from_ID3D11DepthStencilState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %p, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
|
|
|
return d3d_get_private_data(&state->private_store, guid, data_size, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_depthstencil_state_SetPrivateData(ID3D11DepthStencilState *iface,
|
|
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
|
|
{
|
|
|
|
struct d3d_depthstencil_state *state = impl_from_ID3D11DepthStencilState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %u, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
|
|
|
return d3d_set_private_data(&state->private_store, guid, data_size, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_depthstencil_state_SetPrivateDataInterface(ID3D11DepthStencilState *iface,
|
|
|
|
REFGUID guid, const IUnknown *data)
|
|
|
|
{
|
|
|
|
struct d3d_depthstencil_state *state = impl_from_ID3D11DepthStencilState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
|
|
|
|
|
|
|
|
return d3d_set_private_data_interface(&state->private_store, guid, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d11_depthstencil_state_GetDesc(ID3D11DepthStencilState *iface,
|
|
|
|
D3D11_DEPTH_STENCIL_DESC *desc)
|
|
|
|
{
|
2015-10-02 01:31:53 +02:00
|
|
|
struct d3d_depthstencil_state *state = impl_from_ID3D11DepthStencilState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
|
|
|
|
*desc = state->desc;
|
2015-10-02 01:31:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D11DepthStencilStateVtbl d3d11_depthstencil_state_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
d3d11_depthstencil_state_QueryInterface,
|
|
|
|
d3d11_depthstencil_state_AddRef,
|
|
|
|
d3d11_depthstencil_state_Release,
|
|
|
|
/* ID3D11DeviceChild methods */
|
|
|
|
d3d11_depthstencil_state_GetDevice,
|
|
|
|
d3d11_depthstencil_state_GetPrivateData,
|
|
|
|
d3d11_depthstencil_state_SetPrivateData,
|
|
|
|
d3d11_depthstencil_state_SetPrivateDataInterface,
|
|
|
|
/* ID3D11DepthStencilState methods */
|
|
|
|
d3d11_depthstencil_state_GetDesc,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ID3D10DepthStencilState methods */
|
|
|
|
|
|
|
|
static inline struct d3d_depthstencil_state *impl_from_ID3D10DepthStencilState(ID3D10DepthStencilState *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct d3d_depthstencil_state, ID3D10DepthStencilState_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IUnknown methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_depthstencil_state_QueryInterface(ID3D10DepthStencilState *iface,
|
|
|
|
REFIID riid, void **object)
|
|
|
|
{
|
|
|
|
struct d3d_depthstencil_state *state = impl_from_ID3D10DepthStencilState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
|
|
|
|
|
|
|
|
return d3d11_depthstencil_state_QueryInterface(&state->ID3D11DepthStencilState_iface, riid, object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d10_depthstencil_state_AddRef(ID3D10DepthStencilState *iface)
|
|
|
|
{
|
|
|
|
struct d3d_depthstencil_state *state = impl_from_ID3D10DepthStencilState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
return d3d11_depthstencil_state_AddRef(&state->ID3D11DepthStencilState_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d10_depthstencil_state_Release(ID3D10DepthStencilState *iface)
|
|
|
|
{
|
|
|
|
struct d3d_depthstencil_state *state = impl_from_ID3D10DepthStencilState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
return d3d11_depthstencil_state_Release(&state->ID3D11DepthStencilState_iface);
|
|
|
|
}
|
|
|
|
|
2009-10-30 20:11:34 +01:00
|
|
|
/* ID3D10DeviceChild methods */
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d10_depthstencil_state_GetDevice(ID3D10DepthStencilState *iface, ID3D10Device **device)
|
|
|
|
{
|
2015-10-02 01:31:51 +02:00
|
|
|
struct d3d_depthstencil_state *state = impl_from_ID3D10DepthStencilState(iface);
|
2014-02-17 11:24:31 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
|
|
|
|
2015-10-02 01:31:52 +02:00
|
|
|
ID3D11Device_QueryInterface(state->device, &IID_ID3D10Device, (void **)device);
|
2009-10-30 20:11:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_depthstencil_state_GetPrivateData(ID3D10DepthStencilState *iface,
|
|
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
|
|
{
|
2015-10-02 01:31:51 +02:00
|
|
|
struct d3d_depthstencil_state *state = impl_from_ID3D10DepthStencilState(iface);
|
2015-03-09 11:47:07 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %p, data %p.\n",
|
2009-10-30 20:11:34 +01:00
|
|
|
iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_get_private_data(&state->private_store, guid, data_size, data);
|
2009-10-30 20:11:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_depthstencil_state_SetPrivateData(ID3D10DepthStencilState *iface,
|
|
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
|
|
{
|
2015-10-02 01:31:51 +02:00
|
|
|
struct d3d_depthstencil_state *state = impl_from_ID3D10DepthStencilState(iface);
|
2015-03-09 11:47:05 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %u, data %p.\n",
|
2009-10-30 20:11:34 +01:00
|
|
|
iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_set_private_data(&state->private_store, guid, data_size, data);
|
2009-10-30 20:11:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_depthstencil_state_SetPrivateDataInterface(ID3D10DepthStencilState *iface,
|
|
|
|
REFGUID guid, const IUnknown *data)
|
|
|
|
{
|
2015-10-02 01:31:51 +02:00
|
|
|
struct d3d_depthstencil_state *state = impl_from_ID3D10DepthStencilState(iface);
|
2009-10-30 20:11:34 +01:00
|
|
|
|
2015-03-09 11:47:06 +01:00
|
|
|
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_set_private_data_interface(&state->private_store, guid, data);
|
2009-10-30 20:11:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10DepthStencilState methods */
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d10_depthstencil_state_GetDesc(ID3D10DepthStencilState *iface,
|
|
|
|
D3D10_DEPTH_STENCIL_DESC *desc)
|
|
|
|
{
|
2015-10-02 01:31:51 +02:00
|
|
|
struct d3d_depthstencil_state *state = impl_from_ID3D10DepthStencilState(iface);
|
2012-12-13 22:08:58 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
|
2015-10-02 01:31:53 +02:00
|
|
|
memcpy(desc, &state->desc, sizeof(*desc));
|
2009-10-30 20:11:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D10DepthStencilStateVtbl d3d10_depthstencil_state_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
d3d10_depthstencil_state_QueryInterface,
|
|
|
|
d3d10_depthstencil_state_AddRef,
|
|
|
|
d3d10_depthstencil_state_Release,
|
|
|
|
/* ID3D10DeviceChild methods */
|
|
|
|
d3d10_depthstencil_state_GetDevice,
|
|
|
|
d3d10_depthstencil_state_GetPrivateData,
|
|
|
|
d3d10_depthstencil_state_SetPrivateData,
|
|
|
|
d3d10_depthstencil_state_SetPrivateDataInterface,
|
|
|
|
/* ID3D10DepthStencilState methods */
|
|
|
|
d3d10_depthstencil_state_GetDesc,
|
|
|
|
};
|
|
|
|
|
2015-10-02 01:31:51 +02:00
|
|
|
HRESULT d3d_depthstencil_state_init(struct d3d_depthstencil_state *state, struct d3d_device *device,
|
2015-10-02 01:31:53 +02:00
|
|
|
const D3D11_DEPTH_STENCIL_DESC *desc)
|
2009-10-30 20:11:34 +01:00
|
|
|
{
|
2015-10-02 01:31:52 +02:00
|
|
|
state->ID3D11DepthStencilState_iface.lpVtbl = &d3d11_depthstencil_state_vtbl;
|
2011-06-02 11:21:30 +02:00
|
|
|
state->ID3D10DepthStencilState_iface.lpVtbl = &d3d10_depthstencil_state_vtbl;
|
2009-10-30 20:11:34 +01:00
|
|
|
state->refcount = 1;
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2015-03-09 11:47:05 +01:00
|
|
|
wined3d_private_store_init(&state->private_store);
|
2012-12-13 22:08:58 +01:00
|
|
|
state->desc = *desc;
|
2009-10-30 20:11:34 +01:00
|
|
|
|
2012-12-13 22:08:59 +01:00
|
|
|
if (wine_rb_put(&device->depthstencil_states, desc, &state->entry) == -1)
|
|
|
|
{
|
|
|
|
ERR("Failed to insert depthstencil state entry.\n");
|
2015-03-09 11:47:05 +01:00
|
|
|
wined3d_private_store_cleanup(&state->private_store);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2012-12-13 22:08:59 +01:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2012-12-13 22:08:59 +01:00
|
|
|
|
2015-10-02 01:31:52 +02:00
|
|
|
state->device = &device->ID3D11Device_iface;
|
|
|
|
ID3D11Device_AddRef(state->device);
|
2014-02-17 11:24:31 +01:00
|
|
|
|
2009-10-30 20:11:34 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
2009-10-30 20:11:35 +01:00
|
|
|
|
2016-03-16 10:02:38 +01:00
|
|
|
struct d3d_depthstencil_state *unsafe_impl_from_ID3D11DepthStencilState(ID3D11DepthStencilState *iface)
|
|
|
|
{
|
|
|
|
if (!iface)
|
|
|
|
return NULL;
|
|
|
|
assert(iface->lpVtbl == &d3d11_depthstencil_state_vtbl);
|
|
|
|
|
|
|
|
return impl_from_ID3D11DepthStencilState(iface);
|
|
|
|
}
|
|
|
|
|
2015-10-02 01:31:51 +02:00
|
|
|
struct d3d_depthstencil_state *unsafe_impl_from_ID3D10DepthStencilState(ID3D10DepthStencilState *iface)
|
2012-10-02 22:15:36 +02:00
|
|
|
{
|
|
|
|
if (!iface)
|
|
|
|
return NULL;
|
|
|
|
assert(iface->lpVtbl == &d3d10_depthstencil_state_vtbl);
|
|
|
|
|
|
|
|
return impl_from_ID3D10DepthStencilState(iface);
|
|
|
|
}
|
|
|
|
|
2015-09-27 18:49:56 +02:00
|
|
|
/* ID3D11RasterizerState methods */
|
|
|
|
|
|
|
|
static inline struct d3d_rasterizer_state *impl_from_ID3D11RasterizerState(ID3D11RasterizerState *iface)
|
2011-06-02 11:22:49 +02:00
|
|
|
{
|
2015-09-27 18:49:56 +02:00
|
|
|
return CONTAINING_RECORD(iface, struct d3d_rasterizer_state, ID3D11RasterizerState_iface);
|
2011-06-02 11:22:49 +02:00
|
|
|
}
|
|
|
|
|
2015-09-27 18:49:56 +02:00
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_rasterizer_state_QueryInterface(ID3D11RasterizerState *iface,
|
2009-10-30 20:11:35 +01:00
|
|
|
REFIID riid, void **object)
|
|
|
|
{
|
2015-09-27 18:49:56 +02:00
|
|
|
struct d3d_rasterizer_state *state = impl_from_ID3D11RasterizerState(iface);
|
|
|
|
|
2009-10-30 20:11:35 +01:00
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
|
|
|
|
|
2015-09-27 18:49:56 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_ID3D11RasterizerState)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D11DeviceChild)
|
2009-10-30 20:11:35 +01:00
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
2015-09-27 18:49:56 +02:00
|
|
|
ID3D11RasterizerState_AddRef(iface);
|
2009-10-30 20:11:35 +01:00
|
|
|
*object = iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-09-27 18:49:56 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_ID3D10RasterizerState)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D10DeviceChild))
|
|
|
|
{
|
|
|
|
ID3D10RasterizerState_AddRef(&state->ID3D10RasterizerState_iface);
|
|
|
|
*object = &state->ID3D10RasterizerState_iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2009-10-30 20:11:35 +01:00
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
|
|
|
|
|
|
|
*object = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2015-09-27 18:49:56 +02:00
|
|
|
static ULONG STDMETHODCALLTYPE d3d11_rasterizer_state_AddRef(ID3D11RasterizerState *iface)
|
2009-10-30 20:11:35 +01:00
|
|
|
{
|
2015-09-27 18:49:56 +02:00
|
|
|
struct d3d_rasterizer_state *state = impl_from_ID3D11RasterizerState(iface);
|
|
|
|
ULONG refcount = InterlockedIncrement(&state->refcount);
|
2009-10-30 20:11:35 +01:00
|
|
|
|
2015-09-27 18:49:56 +02:00
|
|
|
TRACE("%p increasing refcount to %u.\n", state, refcount);
|
2009-10-30 20:11:35 +01:00
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
2015-09-27 18:49:56 +02:00
|
|
|
static ULONG STDMETHODCALLTYPE d3d11_rasterizer_state_Release(ID3D11RasterizerState *iface)
|
2009-10-30 20:11:35 +01:00
|
|
|
{
|
2015-09-27 18:49:56 +02:00
|
|
|
struct d3d_rasterizer_state *state = impl_from_ID3D11RasterizerState(iface);
|
2013-01-02 12:07:27 +01:00
|
|
|
ULONG refcount = InterlockedDecrement(&state->refcount);
|
2009-10-30 20:11:35 +01:00
|
|
|
|
2013-01-02 12:07:27 +01:00
|
|
|
TRACE("%p decreasing refcount to %u.\n", state, refcount);
|
2009-10-30 20:11:35 +01:00
|
|
|
|
|
|
|
if (!refcount)
|
|
|
|
{
|
2015-09-27 18:49:56 +02:00
|
|
|
struct d3d_device *device = impl_from_ID3D11Device(state->device);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2016-09-20 11:41:35 +02:00
|
|
|
wine_rb_remove(&device->rasterizer_states, &state->entry);
|
2016-07-27 23:33:42 +02:00
|
|
|
wined3d_rasterizer_state_decref(state->wined3d_state);
|
2015-03-10 11:41:54 +01:00
|
|
|
wined3d_private_store_cleanup(&state->private_store);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2016-07-27 23:33:42 +02:00
|
|
|
ID3D11Device_Release(state->device);
|
2013-01-02 12:07:27 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, state);
|
2009-10-30 20:11:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
2015-09-27 18:49:56 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d11_rasterizer_state_GetDevice(ID3D11RasterizerState *iface,
|
|
|
|
ID3D11Device **device)
|
|
|
|
{
|
|
|
|
struct d3d_rasterizer_state *state = impl_from_ID3D11RasterizerState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
|
|
|
|
|
|
|
*device = state->device;
|
|
|
|
ID3D11Device_AddRef(*device);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_rasterizer_state_GetPrivateData(ID3D11RasterizerState *iface,
|
|
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
|
|
{
|
|
|
|
struct d3d_rasterizer_state *state = impl_from_ID3D11RasterizerState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %p, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
|
|
|
return d3d_get_private_data(&state->private_store, guid, data_size, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_rasterizer_state_SetPrivateData(ID3D11RasterizerState *iface,
|
|
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
|
|
{
|
|
|
|
struct d3d_rasterizer_state *state = impl_from_ID3D11RasterizerState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %u, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
|
|
|
return d3d_set_private_data(&state->private_store, guid, data_size, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_rasterizer_state_SetPrivateDataInterface(ID3D11RasterizerState *iface,
|
|
|
|
REFGUID guid, const IUnknown *data)
|
|
|
|
{
|
|
|
|
struct d3d_rasterizer_state *state = impl_from_ID3D11RasterizerState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
|
|
|
|
|
|
|
|
return d3d_set_private_data_interface(&state->private_store, guid, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d11_rasterizer_state_GetDesc(ID3D11RasterizerState *iface,
|
|
|
|
D3D11_RASTERIZER_DESC *desc)
|
|
|
|
{
|
2015-09-27 18:49:57 +02:00
|
|
|
struct d3d_rasterizer_state *state = impl_from_ID3D11RasterizerState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
|
|
|
|
*desc = state->desc;
|
2015-09-27 18:49:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D11RasterizerStateVtbl d3d11_rasterizer_state_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
d3d11_rasterizer_state_QueryInterface,
|
|
|
|
d3d11_rasterizer_state_AddRef,
|
|
|
|
d3d11_rasterizer_state_Release,
|
|
|
|
/* ID3D11DeviceChild methods */
|
|
|
|
d3d11_rasterizer_state_GetDevice,
|
|
|
|
d3d11_rasterizer_state_GetPrivateData,
|
|
|
|
d3d11_rasterizer_state_SetPrivateData,
|
|
|
|
d3d11_rasterizer_state_SetPrivateDataInterface,
|
|
|
|
/* ID3D11RasterizerState methods */
|
|
|
|
d3d11_rasterizer_state_GetDesc,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ID3D10RasterizerState methods */
|
|
|
|
|
|
|
|
static inline struct d3d_rasterizer_state *impl_from_ID3D10RasterizerState(ID3D10RasterizerState *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct d3d_rasterizer_state, ID3D10RasterizerState_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IUnknown methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_rasterizer_state_QueryInterface(ID3D10RasterizerState *iface,
|
|
|
|
REFIID riid, void **object)
|
|
|
|
{
|
|
|
|
struct d3d_rasterizer_state *state = impl_from_ID3D10RasterizerState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
|
|
|
|
|
|
|
|
return d3d11_rasterizer_state_QueryInterface(&state->ID3D11RasterizerState_iface, riid, object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d10_rasterizer_state_AddRef(ID3D10RasterizerState *iface)
|
|
|
|
{
|
|
|
|
struct d3d_rasterizer_state *state = impl_from_ID3D10RasterizerState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
return d3d11_rasterizer_state_AddRef(&state->ID3D11RasterizerState_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d10_rasterizer_state_Release(ID3D10RasterizerState *iface)
|
|
|
|
{
|
|
|
|
struct d3d_rasterizer_state *state = impl_from_ID3D10RasterizerState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p.\n", state);
|
|
|
|
|
|
|
|
return d3d11_rasterizer_state_Release(&state->ID3D11RasterizerState_iface);
|
|
|
|
}
|
|
|
|
|
2009-10-30 20:11:35 +01:00
|
|
|
/* ID3D10DeviceChild methods */
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d10_rasterizer_state_GetDevice(ID3D10RasterizerState *iface, ID3D10Device **device)
|
|
|
|
{
|
2015-09-27 18:49:54 +02:00
|
|
|
struct d3d_rasterizer_state *state = impl_from_ID3D10RasterizerState(iface);
|
2014-02-17 11:24:32 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
|
|
|
|
2015-09-27 18:49:56 +02:00
|
|
|
ID3D11Device_QueryInterface(state->device, &IID_ID3D10Device, (void **)device);
|
2009-10-30 20:11:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_rasterizer_state_GetPrivateData(ID3D10RasterizerState *iface,
|
|
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
|
|
{
|
2015-09-27 18:49:54 +02:00
|
|
|
struct d3d_rasterizer_state *state = impl_from_ID3D10RasterizerState(iface);
|
2015-03-10 11:41:56 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %p, data %p.\n",
|
2009-10-30 20:11:35 +01:00
|
|
|
iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_get_private_data(&state->private_store, guid, data_size, data);
|
2009-10-30 20:11:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_rasterizer_state_SetPrivateData(ID3D10RasterizerState *iface,
|
|
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
|
|
{
|
2015-09-27 18:49:54 +02:00
|
|
|
struct d3d_rasterizer_state *state = impl_from_ID3D10RasterizerState(iface);
|
2015-03-10 11:41:54 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %u, data %p.\n",
|
2009-10-30 20:11:35 +01:00
|
|
|
iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_set_private_data(&state->private_store, guid, data_size, data);
|
2009-10-30 20:11:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_rasterizer_state_SetPrivateDataInterface(ID3D10RasterizerState *iface,
|
|
|
|
REFGUID guid, const IUnknown *data)
|
|
|
|
{
|
2015-09-27 18:49:54 +02:00
|
|
|
struct d3d_rasterizer_state *state = impl_from_ID3D10RasterizerState(iface);
|
2009-10-30 20:11:35 +01:00
|
|
|
|
2015-03-10 11:41:55 +01:00
|
|
|
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_set_private_data_interface(&state->private_store, guid, data);
|
2009-10-30 20:11:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10RasterizerState methods */
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d10_rasterizer_state_GetDesc(ID3D10RasterizerState *iface,
|
|
|
|
D3D10_RASTERIZER_DESC *desc)
|
|
|
|
{
|
2015-09-27 18:49:54 +02:00
|
|
|
struct d3d_rasterizer_state *state = impl_from_ID3D10RasterizerState(iface);
|
2013-01-02 12:07:26 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
|
2015-09-27 18:49:57 +02:00
|
|
|
memcpy(desc, &state->desc, sizeof(*desc));
|
2009-10-30 20:11:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D10RasterizerStateVtbl d3d10_rasterizer_state_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
d3d10_rasterizer_state_QueryInterface,
|
|
|
|
d3d10_rasterizer_state_AddRef,
|
|
|
|
d3d10_rasterizer_state_Release,
|
|
|
|
/* ID3D10DeviceChild methods */
|
|
|
|
d3d10_rasterizer_state_GetDevice,
|
|
|
|
d3d10_rasterizer_state_GetPrivateData,
|
|
|
|
d3d10_rasterizer_state_SetPrivateData,
|
|
|
|
d3d10_rasterizer_state_SetPrivateDataInterface,
|
|
|
|
/* ID3D10RasterizerState methods */
|
|
|
|
d3d10_rasterizer_state_GetDesc,
|
|
|
|
};
|
|
|
|
|
2015-09-27 18:49:54 +02:00
|
|
|
HRESULT d3d_rasterizer_state_init(struct d3d_rasterizer_state *state, struct d3d_device *device,
|
2015-09-27 18:49:57 +02:00
|
|
|
const D3D11_RASTERIZER_DESC *desc)
|
2009-10-30 20:11:35 +01:00
|
|
|
{
|
2016-07-27 23:33:42 +02:00
|
|
|
struct wined3d_rasterizer_state_desc wined3d_desc;
|
|
|
|
HRESULT hr;
|
|
|
|
|
2015-09-27 18:49:56 +02:00
|
|
|
state->ID3D11RasterizerState_iface.lpVtbl = &d3d11_rasterizer_state_vtbl;
|
2011-06-02 11:22:49 +02:00
|
|
|
state->ID3D10RasterizerState_iface.lpVtbl = &d3d10_rasterizer_state_vtbl;
|
2009-10-30 20:11:35 +01:00
|
|
|
state->refcount = 1;
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2015-03-10 11:41:54 +01:00
|
|
|
wined3d_private_store_init(&state->private_store);
|
2013-01-02 12:07:26 +01:00
|
|
|
state->desc = *desc;
|
2009-10-30 20:11:35 +01:00
|
|
|
|
2016-07-27 23:33:42 +02:00
|
|
|
wined3d_desc.front_ccw = desc->FrontCounterClockwise;
|
|
|
|
if (FAILED(hr = wined3d_rasterizer_state_create(device->wined3d_device,
|
|
|
|
&wined3d_desc, &state->wined3d_state)))
|
|
|
|
{
|
|
|
|
WARN("Failed to create wined3d rasterizer state, hr %#x.\n", hr);
|
|
|
|
wined3d_private_store_cleanup(&state->private_store);
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2013-01-02 12:07:27 +01:00
|
|
|
if (wine_rb_put(&device->rasterizer_states, desc, &state->entry) == -1)
|
|
|
|
{
|
|
|
|
ERR("Failed to insert rasterizer state entry.\n");
|
2015-03-10 11:41:54 +01:00
|
|
|
wined3d_private_store_cleanup(&state->private_store);
|
2016-07-27 23:33:42 +02:00
|
|
|
wined3d_rasterizer_state_decref(state->wined3d_state);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2013-01-02 12:07:27 +01:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2013-01-02 12:07:27 +01:00
|
|
|
|
2016-07-27 23:33:42 +02:00
|
|
|
ID3D11Device_AddRef(state->device = &device->ID3D11Device_iface);
|
2014-02-17 11:24:32 +01:00
|
|
|
|
2009-10-30 20:11:35 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
2009-10-30 20:11:36 +01:00
|
|
|
|
2015-11-06 01:28:25 +01:00
|
|
|
struct d3d_rasterizer_state *unsafe_impl_from_ID3D11RasterizerState(ID3D11RasterizerState *iface)
|
|
|
|
{
|
|
|
|
if (!iface)
|
|
|
|
return NULL;
|
|
|
|
assert(iface->lpVtbl == &d3d11_rasterizer_state_vtbl);
|
|
|
|
|
|
|
|
return impl_from_ID3D11RasterizerState(iface);
|
|
|
|
}
|
|
|
|
|
2015-09-27 18:49:54 +02:00
|
|
|
struct d3d_rasterizer_state *unsafe_impl_from_ID3D10RasterizerState(ID3D10RasterizerState *iface)
|
2012-10-01 22:48:09 +02:00
|
|
|
{
|
|
|
|
if (!iface)
|
|
|
|
return NULL;
|
|
|
|
assert(iface->lpVtbl == &d3d10_rasterizer_state_vtbl);
|
|
|
|
|
|
|
|
return impl_from_ID3D10RasterizerState(iface);
|
|
|
|
}
|
|
|
|
|
2015-10-13 09:13:32 +02:00
|
|
|
/* ID3D11SampleState methods */
|
|
|
|
|
|
|
|
static inline struct d3d_sampler_state *impl_from_ID3D11SamplerState(ID3D11SamplerState *iface)
|
2011-06-02 11:23:54 +02:00
|
|
|
{
|
2015-10-13 09:13:32 +02:00
|
|
|
return CONTAINING_RECORD(iface, struct d3d_sampler_state, ID3D11SamplerState_iface);
|
2011-06-02 11:23:54 +02:00
|
|
|
}
|
|
|
|
|
2015-10-13 09:13:32 +02:00
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_sampler_state_QueryInterface(ID3D11SamplerState *iface,
|
2009-10-30 20:11:36 +01:00
|
|
|
REFIID riid, void **object)
|
|
|
|
{
|
2015-10-13 09:13:32 +02:00
|
|
|
struct d3d_sampler_state *state = impl_from_ID3D11SamplerState(iface);
|
|
|
|
|
2009-10-30 20:11:36 +01:00
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
|
|
|
|
|
2015-10-13 09:13:32 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_ID3D11SamplerState)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D11DeviceChild)
|
2009-10-30 20:11:36 +01:00
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
2015-10-13 09:13:32 +02:00
|
|
|
ID3D11SamplerState_AddRef(iface);
|
2009-10-30 20:11:36 +01:00
|
|
|
*object = iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-10-13 09:13:32 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_ID3D10SamplerState)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D10DeviceChild))
|
|
|
|
{
|
|
|
|
ID3D10SamplerState_AddRef(&state->ID3D10SamplerState_iface);
|
|
|
|
*object = &state->ID3D10SamplerState_iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2009-10-30 20:11:36 +01:00
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
|
|
|
|
|
|
|
*object = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2015-10-13 09:13:32 +02:00
|
|
|
static ULONG STDMETHODCALLTYPE d3d11_sampler_state_AddRef(ID3D11SamplerState *iface)
|
2009-10-30 20:11:36 +01:00
|
|
|
{
|
2015-10-13 09:13:32 +02:00
|
|
|
struct d3d_sampler_state *state = impl_from_ID3D11SamplerState(iface);
|
|
|
|
ULONG refcount = InterlockedIncrement(&state->refcount);
|
2009-10-30 20:11:36 +01:00
|
|
|
|
2015-10-13 09:13:32 +02:00
|
|
|
TRACE("%p increasing refcount to %u.\n", state, refcount);
|
2009-10-30 20:11:36 +01:00
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
2015-10-13 09:13:32 +02:00
|
|
|
static ULONG STDMETHODCALLTYPE d3d11_sampler_state_Release(ID3D11SamplerState *iface)
|
2009-10-30 20:11:36 +01:00
|
|
|
{
|
2015-10-13 09:13:32 +02:00
|
|
|
struct d3d_sampler_state *state = impl_from_ID3D11SamplerState(iface);
|
2012-12-11 22:27:31 +01:00
|
|
|
ULONG refcount = InterlockedDecrement(&state->refcount);
|
2009-10-30 20:11:36 +01:00
|
|
|
|
2012-12-11 22:27:31 +01:00
|
|
|
TRACE("%p decreasing refcount to %u.\n", state, refcount);
|
2009-10-30 20:11:36 +01:00
|
|
|
|
|
|
|
if (!refcount)
|
|
|
|
{
|
2015-10-13 09:13:32 +02:00
|
|
|
struct d3d_device *device = impl_from_ID3D11Device(state->device);
|
2014-02-17 11:24:29 +01:00
|
|
|
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2012-12-11 22:27:31 +01:00
|
|
|
wined3d_sampler_decref(state->wined3d_sampler);
|
2016-09-20 11:41:35 +02:00
|
|
|
wine_rb_remove(&device->sampler_states, &state->entry);
|
2015-10-13 09:13:32 +02:00
|
|
|
ID3D11Device_Release(state->device);
|
2015-03-10 11:41:57 +01:00
|
|
|
wined3d_private_store_cleanup(&state->private_store);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2012-12-11 22:27:31 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, state);
|
2009-10-30 20:11:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
2015-10-13 09:13:32 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d11_sampler_state_GetDevice(ID3D11SamplerState *iface,
|
|
|
|
ID3D11Device **device)
|
|
|
|
{
|
|
|
|
struct d3d_sampler_state *state = impl_from_ID3D11SamplerState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
|
|
|
|
|
|
|
*device = state->device;
|
|
|
|
ID3D11Device_AddRef(*device);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_sampler_state_GetPrivateData(ID3D11SamplerState *iface,
|
|
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
|
|
{
|
|
|
|
struct d3d_sampler_state *state = impl_from_ID3D11SamplerState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %p, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
|
|
|
return d3d_get_private_data(&state->private_store, guid, data_size, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_sampler_state_SetPrivateData(ID3D11SamplerState *iface,
|
|
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
|
|
{
|
|
|
|
struct d3d_sampler_state *state = impl_from_ID3D11SamplerState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %u, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
|
|
|
return d3d_set_private_data(&state->private_store, guid, data_size, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_sampler_state_SetPrivateDataInterface(ID3D11SamplerState *iface,
|
|
|
|
REFGUID guid, const IUnknown *data)
|
|
|
|
{
|
|
|
|
struct d3d_sampler_state *state = impl_from_ID3D11SamplerState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
|
|
|
|
|
|
|
|
return d3d_set_private_data_interface(&state->private_store, guid, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d11_sampler_state_GetDesc(ID3D11SamplerState *iface,
|
|
|
|
D3D11_SAMPLER_DESC *desc)
|
|
|
|
{
|
2015-10-13 09:13:33 +02:00
|
|
|
struct d3d_sampler_state *state = impl_from_ID3D11SamplerState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
|
|
|
|
*desc = state->desc;
|
2015-10-13 09:13:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D11SamplerStateVtbl d3d11_sampler_state_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
d3d11_sampler_state_QueryInterface,
|
|
|
|
d3d11_sampler_state_AddRef,
|
|
|
|
d3d11_sampler_state_Release,
|
|
|
|
/* ID3D11DeviceChild methods */
|
|
|
|
d3d11_sampler_state_GetDevice,
|
|
|
|
d3d11_sampler_state_GetPrivateData,
|
|
|
|
d3d11_sampler_state_SetPrivateData,
|
|
|
|
d3d11_sampler_state_SetPrivateDataInterface,
|
|
|
|
/* ID3D11SamplerState methods */
|
|
|
|
d3d11_sampler_state_GetDesc,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ID3D10SamplerState methods */
|
|
|
|
|
|
|
|
static inline struct d3d_sampler_state *impl_from_ID3D10SamplerState(ID3D10SamplerState *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct d3d_sampler_state, ID3D10SamplerState_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IUnknown methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_sampler_state_QueryInterface(ID3D10SamplerState *iface,
|
|
|
|
REFIID riid, void **object)
|
|
|
|
{
|
|
|
|
struct d3d_sampler_state *state = impl_from_ID3D10SamplerState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
|
|
|
|
|
|
|
|
return d3d11_sampler_state_QueryInterface(&state->ID3D11SamplerState_iface, riid, object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d10_sampler_state_AddRef(ID3D10SamplerState *iface)
|
|
|
|
{
|
|
|
|
struct d3d_sampler_state *state = impl_from_ID3D10SamplerState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
return d3d11_sampler_state_AddRef(&state->ID3D11SamplerState_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d10_sampler_state_Release(ID3D10SamplerState *iface)
|
|
|
|
{
|
|
|
|
struct d3d_sampler_state *state = impl_from_ID3D10SamplerState(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
return d3d11_sampler_state_Release(&state->ID3D11SamplerState_iface);
|
|
|
|
}
|
|
|
|
|
2009-10-30 20:11:36 +01:00
|
|
|
/* ID3D10DeviceChild methods */
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d10_sampler_state_GetDevice(ID3D10SamplerState *iface, ID3D10Device **device)
|
|
|
|
{
|
2015-10-13 09:13:31 +02:00
|
|
|
struct d3d_sampler_state *state = impl_from_ID3D10SamplerState(iface);
|
2014-02-17 11:24:29 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
|
|
|
|
2015-10-13 09:13:32 +02:00
|
|
|
ID3D11Device_QueryInterface(state->device, &IID_ID3D10Device, (void **)device);
|
2009-10-30 20:11:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_sampler_state_GetPrivateData(ID3D10SamplerState *iface,
|
|
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
|
|
{
|
2015-10-13 09:13:31 +02:00
|
|
|
struct d3d_sampler_state *state = impl_from_ID3D10SamplerState(iface);
|
2015-03-11 11:13:50 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %p, data %p.\n",
|
2009-10-30 20:11:36 +01:00
|
|
|
iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_get_private_data(&state->private_store, guid, data_size, data);
|
2009-10-30 20:11:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_sampler_state_SetPrivateData(ID3D10SamplerState *iface,
|
|
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
|
|
{
|
2015-10-13 09:13:31 +02:00
|
|
|
struct d3d_sampler_state *state = impl_from_ID3D10SamplerState(iface);
|
2015-03-10 11:41:57 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %u, data %p.\n",
|
2009-10-30 20:11:36 +01:00
|
|
|
iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_set_private_data(&state->private_store, guid, data_size, data);
|
2009-10-30 20:11:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_sampler_state_SetPrivateDataInterface(ID3D10SamplerState *iface,
|
|
|
|
REFGUID guid, const IUnknown *data)
|
|
|
|
{
|
2015-10-13 09:13:31 +02:00
|
|
|
struct d3d_sampler_state *state = impl_from_ID3D10SamplerState(iface);
|
2009-10-30 20:11:36 +01:00
|
|
|
|
2015-03-10 11:41:58 +01:00
|
|
|
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_set_private_data_interface(&state->private_store, guid, data);
|
2009-10-30 20:11:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10SamplerState methods */
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d10_sampler_state_GetDesc(ID3D10SamplerState *iface,
|
|
|
|
D3D10_SAMPLER_DESC *desc)
|
|
|
|
{
|
2015-10-13 09:13:31 +02:00
|
|
|
struct d3d_sampler_state *state = impl_from_ID3D10SamplerState(iface);
|
2012-12-11 22:27:30 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
|
2015-10-13 09:13:33 +02:00
|
|
|
memcpy(desc, &state->desc, sizeof(*desc));
|
2009-10-30 20:11:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D10SamplerStateVtbl d3d10_sampler_state_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
d3d10_sampler_state_QueryInterface,
|
|
|
|
d3d10_sampler_state_AddRef,
|
|
|
|
d3d10_sampler_state_Release,
|
|
|
|
/* ID3D10DeviceChild methods */
|
|
|
|
d3d10_sampler_state_GetDevice,
|
|
|
|
d3d10_sampler_state_GetPrivateData,
|
|
|
|
d3d10_sampler_state_SetPrivateData,
|
|
|
|
d3d10_sampler_state_SetPrivateDataInterface,
|
|
|
|
/* ID3D10SamplerState methods */
|
|
|
|
d3d10_sampler_state_GetDesc,
|
|
|
|
};
|
|
|
|
|
2015-10-13 09:13:33 +02:00
|
|
|
static enum wined3d_texture_address wined3d_texture_address_from_d3d11(enum D3D11_TEXTURE_ADDRESS_MODE t)
|
2015-01-15 17:19:03 +01:00
|
|
|
{
|
|
|
|
return (enum wined3d_texture_address)t;
|
|
|
|
}
|
|
|
|
|
2015-10-13 09:13:33 +02:00
|
|
|
static enum wined3d_texture_filter_type wined3d_texture_filter_mip_from_d3d11(enum D3D11_FILTER f)
|
2015-01-15 17:19:03 +01:00
|
|
|
{
|
2015-10-13 09:13:33 +02:00
|
|
|
if (D3D11_DECODE_MIP_FILTER(f) == D3D11_FILTER_TYPE_LINEAR)
|
2015-01-15 17:19:03 +01:00
|
|
|
return WINED3D_TEXF_LINEAR;
|
|
|
|
return WINED3D_TEXF_POINT;
|
|
|
|
}
|
|
|
|
|
2015-10-13 09:13:33 +02:00
|
|
|
static enum wined3d_texture_filter_type wined3d_texture_filter_mag_from_d3d11(enum D3D11_FILTER f)
|
2015-01-15 17:19:03 +01:00
|
|
|
{
|
2015-10-13 09:13:33 +02:00
|
|
|
if (D3D11_DECODE_MAG_FILTER(f) == D3D11_FILTER_TYPE_LINEAR)
|
2015-01-15 17:19:03 +01:00
|
|
|
return WINED3D_TEXF_LINEAR;
|
|
|
|
return WINED3D_TEXF_POINT;
|
|
|
|
}
|
|
|
|
|
2015-10-13 09:13:33 +02:00
|
|
|
static enum wined3d_texture_filter_type wined3d_texture_filter_min_from_d3d11(enum D3D11_FILTER f)
|
2015-01-15 17:19:03 +01:00
|
|
|
{
|
2015-10-13 09:13:33 +02:00
|
|
|
if (D3D11_DECODE_MIN_FILTER(f) == D3D11_FILTER_TYPE_LINEAR)
|
2015-01-15 17:19:03 +01:00
|
|
|
return WINED3D_TEXF_LINEAR;
|
|
|
|
return WINED3D_TEXF_POINT;
|
|
|
|
}
|
|
|
|
|
2015-10-13 09:13:33 +02:00
|
|
|
static BOOL wined3d_texture_compare_from_d3d11(enum D3D11_FILTER f)
|
2015-01-15 17:19:03 +01:00
|
|
|
{
|
2015-10-13 09:13:33 +02:00
|
|
|
return D3D11_DECODE_IS_COMPARISON_FILTER(f);
|
2015-01-15 17:19:03 +01:00
|
|
|
}
|
|
|
|
|
2015-10-13 09:13:33 +02:00
|
|
|
static enum wined3d_cmp_func wined3d_cmp_func_from_d3d11(D3D11_COMPARISON_FUNC f)
|
2015-01-15 17:19:03 +01:00
|
|
|
{
|
|
|
|
return (enum wined3d_cmp_func)f;
|
|
|
|
}
|
|
|
|
|
2015-10-13 09:13:31 +02:00
|
|
|
HRESULT d3d_sampler_state_init(struct d3d_sampler_state *state, struct d3d_device *device,
|
2015-10-13 09:13:33 +02:00
|
|
|
const D3D11_SAMPLER_DESC *desc)
|
2009-10-30 20:11:36 +01:00
|
|
|
{
|
2015-01-15 17:19:03 +01:00
|
|
|
struct wined3d_sampler_desc wined3d_desc;
|
2012-12-05 21:01:47 +01:00
|
|
|
HRESULT hr;
|
|
|
|
|
2015-10-13 09:13:32 +02:00
|
|
|
state->ID3D11SamplerState_iface.lpVtbl = &d3d11_sampler_state_vtbl;
|
2011-06-02 11:23:54 +02:00
|
|
|
state->ID3D10SamplerState_iface.lpVtbl = &d3d10_sampler_state_vtbl;
|
2009-10-30 20:11:36 +01:00
|
|
|
state->refcount = 1;
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2015-03-10 11:41:57 +01:00
|
|
|
wined3d_private_store_init(&state->private_store);
|
2012-12-11 22:27:30 +01:00
|
|
|
state->desc = *desc;
|
2009-10-30 20:11:36 +01:00
|
|
|
|
2015-10-13 09:13:33 +02:00
|
|
|
wined3d_desc.address_u = wined3d_texture_address_from_d3d11(desc->AddressU);
|
|
|
|
wined3d_desc.address_v = wined3d_texture_address_from_d3d11(desc->AddressV);
|
|
|
|
wined3d_desc.address_w = wined3d_texture_address_from_d3d11(desc->AddressW);
|
2015-01-15 17:19:03 +01:00
|
|
|
memcpy(wined3d_desc.border_color, desc->BorderColor, sizeof(wined3d_desc.border_color));
|
2015-10-13 09:13:33 +02:00
|
|
|
wined3d_desc.mag_filter = wined3d_texture_filter_mag_from_d3d11(desc->Filter);
|
|
|
|
wined3d_desc.min_filter = wined3d_texture_filter_min_from_d3d11(desc->Filter);
|
|
|
|
wined3d_desc.mip_filter = wined3d_texture_filter_mip_from_d3d11(desc->Filter);
|
2015-01-15 17:19:03 +01:00
|
|
|
wined3d_desc.lod_bias = desc->MipLODBias;
|
|
|
|
wined3d_desc.min_lod = desc->MinLOD;
|
|
|
|
wined3d_desc.max_lod = desc->MaxLOD;
|
2015-10-13 09:13:33 +02:00
|
|
|
wined3d_desc.max_anisotropy = D3D11_DECODE_IS_ANISOTROPIC_FILTER(desc->Filter) ? desc->MaxAnisotropy : 1;
|
|
|
|
wined3d_desc.compare = wined3d_texture_compare_from_d3d11(desc->Filter);
|
|
|
|
wined3d_desc.comparison_func = wined3d_cmp_func_from_d3d11(desc->ComparisonFunc);
|
2016-02-08 00:04:38 +01:00
|
|
|
wined3d_desc.srgb_decode = TRUE;
|
2015-01-15 17:19:03 +01:00
|
|
|
|
2015-01-15 17:19:06 +01:00
|
|
|
if (FAILED(hr = wined3d_sampler_create(device->wined3d_device, &wined3d_desc, state, &state->wined3d_sampler)))
|
2012-12-05 21:01:47 +01:00
|
|
|
{
|
|
|
|
WARN("Failed to create wined3d sampler, hr %#x.\n", hr);
|
2015-03-10 11:41:57 +01:00
|
|
|
wined3d_private_store_cleanup(&state->private_store);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2012-12-05 21:01:47 +01:00
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2012-12-11 22:27:31 +01:00
|
|
|
if (wine_rb_put(&device->sampler_states, desc, &state->entry) == -1)
|
|
|
|
{
|
|
|
|
ERR("Failed to insert sampler state entry.\n");
|
|
|
|
wined3d_sampler_decref(state->wined3d_sampler);
|
2015-03-10 11:41:57 +01:00
|
|
|
wined3d_private_store_cleanup(&state->private_store);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2012-12-11 22:27:31 +01:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2012-12-11 22:27:31 +01:00
|
|
|
|
2015-10-13 09:13:32 +02:00
|
|
|
state->device = &device->ID3D11Device_iface;
|
|
|
|
ID3D11Device_AddRef(state->device);
|
2014-02-17 11:24:29 +01:00
|
|
|
|
2009-10-30 20:11:36 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
2012-12-05 21:01:47 +01:00
|
|
|
|
2015-11-06 18:38:10 +01:00
|
|
|
struct d3d_sampler_state *unsafe_impl_from_ID3D11SamplerState(ID3D11SamplerState *iface)
|
|
|
|
{
|
|
|
|
if (!iface)
|
|
|
|
return NULL;
|
|
|
|
assert(iface->lpVtbl == &d3d11_sampler_state_vtbl);
|
|
|
|
|
|
|
|
return impl_from_ID3D11SamplerState(iface);
|
|
|
|
}
|
|
|
|
|
2015-10-13 09:13:31 +02:00
|
|
|
struct d3d_sampler_state *unsafe_impl_from_ID3D10SamplerState(ID3D10SamplerState *iface)
|
2012-12-05 21:01:47 +01:00
|
|
|
{
|
|
|
|
if (!iface)
|
|
|
|
return NULL;
|
|
|
|
assert(iface->lpVtbl == &d3d10_sampler_state_vtbl);
|
|
|
|
|
|
|
|
return impl_from_ID3D10SamplerState(iface);
|
|
|
|
}
|