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

dxgi: Implement IDXGIOutput4.

parent 7f593aa7
......@@ -139,7 +139,7 @@ static HRESULT STDMETHODCALLTYPE dxgi_adapter_EnumOutputs(IWineDXGIAdapter *ifac
return hr;
}
*output = &output_object->IDXGIOutput_iface;
*output = (IDXGIOutput *)&output_object->IDXGIOutput4_iface;
TRACE("Returning output %p.\n", *output);
......
......@@ -136,7 +136,7 @@ HRESULT dxgi_device_init(struct dxgi_device *device, struct dxgi_device_layer *l
/* IDXGIOutput */
struct dxgi_output
{
IDXGIOutput IDXGIOutput_iface;
IDXGIOutput4 IDXGIOutput4_iface;
LONG refcount;
struct wined3d_private_store private_store;
struct dxgi_adapter *adapter;
......
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