mirror of
https://github.com/reactos/wine.git
synced 2024-12-03 01:12:25 +00:00
d3d10core: Implement d3d10_vertex_shader_SetPrivateDataInterface().
This commit is contained in:
parent
fe06bb1492
commit
e8dc68a8e4
@ -220,9 +220,11 @@ static HRESULT STDMETHODCALLTYPE d3d10_vertex_shader_SetPrivateData(ID3D10Vertex
|
||||
static HRESULT STDMETHODCALLTYPE d3d10_vertex_shader_SetPrivateDataInterface(ID3D10VertexShader *iface,
|
||||
REFGUID guid, const IUnknown *data)
|
||||
{
|
||||
FIXME("iface %p, guid %s, data %p stub!\n", iface, debugstr_guid(guid), data);
|
||||
struct d3d10_vertex_shader *shader = impl_from_ID3D10VertexShader(iface);
|
||||
|
||||
return E_NOTIMPL;
|
||||
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
|
||||
|
||||
return d3d10_set_private_data_interface(&shader->private_store, guid, data);
|
||||
}
|
||||
|
||||
static const struct ID3D10VertexShaderVtbl d3d10_vertex_shader_vtbl =
|
||||
|
Loading…
Reference in New Issue
Block a user