Commit ccb30415 authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

d3d11: Set immediate_context to NULL in d3d11_device_GetImmediateContext().

parent e4f32c3c
......@@ -425,6 +425,8 @@ static void STDMETHODCALLTYPE d3d11_device_GetImmediateContext(ID3D11Device *ifa
ID3D11DeviceContext **immediate_context)
{
FIXME("iface %p, immediate_context %p stub!\n", iface, immediate_context);
*immediate_context = NULL;
}
static HRESULT STDMETHODCALLTYPE d3d11_device_SetExceptionMode(ID3D11Device *iface, UINT flags)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment