d3d10core: Implement d3d10_sampler_state_SetPrivateDataInterface().

oldstable
Henri Verbeet 2015-03-10 11:41:58 +01:00 committed by Alexandre Julliard
parent 21d94883bc
commit 5b5498a8b4
1 changed files with 4 additions and 2 deletions

View File

@ -594,9 +594,11 @@ static HRESULT STDMETHODCALLTYPE d3d10_sampler_state_SetPrivateData(ID3D10Sample
static HRESULT STDMETHODCALLTYPE d3d10_sampler_state_SetPrivateDataInterface(ID3D10SamplerState *iface,
REFGUID guid, const IUnknown *data)
{
FIXME("iface %p, guid %s, data %p stub!\n", iface, debugstr_guid(guid), data);
struct d3d10_sampler_state *state = impl_from_ID3D10SamplerState(iface);
return E_NOTIMPL;
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
return d3d10_set_private_data_interface(&state->private_store, guid, data);
}
/* ID3D10SamplerState methods */