d3d10core: Implement d3d10_buffer_SetPrivateDataInterface().

oldstable
Henri Verbeet 2015-02-25 09:34:06 +01:00 committed by Alexandre Julliard
parent bfd4836867
commit 3cf80b7fb7
1 changed files with 4 additions and 2 deletions

View File

@ -122,9 +122,11 @@ static HRESULT STDMETHODCALLTYPE d3d10_buffer_SetPrivateData(ID3D10Buffer *iface
static HRESULT STDMETHODCALLTYPE d3d10_buffer_SetPrivateDataInterface(ID3D10Buffer *iface,
REFGUID guid, const IUnknown *data)
{
FIXME("iface %p, guid %s, data %p stub!\n", iface, debugstr_guid(guid), data);
struct d3d10_buffer *buffer = impl_from_ID3D10Buffer(iface);
return E_NOTIMPL;
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
return d3d10_set_private_data_interface(&buffer->private_store, guid, data);
}
/* ID3D10Resource methods */