d3d10core: Implement d3d10_query_SetPrivateDataInterface().
This commit is contained in:
parent
14643cf8d4
commit
9c97e156e8
|
@ -116,9 +116,11 @@ static HRESULT STDMETHODCALLTYPE d3d10_query_SetPrivateData(ID3D10Query *iface,
|
|||
static HRESULT STDMETHODCALLTYPE d3d10_query_SetPrivateDataInterface(ID3D10Query *iface,
|
||||
REFGUID guid, const IUnknown *data)
|
||||
{
|
||||
FIXME("iface %p, guid %s, data %p stub!\n", iface, debugstr_guid(guid), data);
|
||||
struct d3d10_query *query = impl_from_ID3D10Query(iface);
|
||||
|
||||
return E_NOTIMPL;
|
||||
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
|
||||
|
||||
return d3d10_set_private_data_interface(&query->private_store, guid, data);
|
||||
}
|
||||
|
||||
/* ID3D10Asynchronous methods */
|
||||
|
|
Loading…
Reference in New Issue