Commit d8062038 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

dxgi: Implement IDXGIOutput5 and IDXGIOutput6 stubs.

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