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

dxgi: Return S_OK from dxgi_output_SetGammaControl() stub.

parent ad76b1fb
...@@ -320,10 +320,11 @@ static HRESULT STDMETHODCALLTYPE dxgi_output_SetGammaControl(IDXGIOutput4 *iface ...@@ -320,10 +320,11 @@ static HRESULT STDMETHODCALLTYPE dxgi_output_SetGammaControl(IDXGIOutput4 *iface
{ {
FIXME("iface %p, gamma_control %p stub!\n", iface, gamma_control); FIXME("iface %p, gamma_control %p stub!\n", iface, gamma_control);
return E_NOTIMPL; return S_OK;
} }
static HRESULT STDMETHODCALLTYPE dxgi_output_GetGammaControl(IDXGIOutput4 *iface, DXGI_GAMMA_CONTROL *gamma_control) static HRESULT STDMETHODCALLTYPE dxgi_output_GetGammaControl(IDXGIOutput4 *iface,
DXGI_GAMMA_CONTROL *gamma_control)
{ {
FIXME("iface %p, gamma_control %p stub!\n", iface, gamma_control); FIXME("iface %p, gamma_control %p stub!\n", iface, gamma_control);
......
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