include: Fix the IDXGISwapChain::ResizeBuffers() arguments.

This commit is contained in:
Henri Verbeet 2017-06-14 14:02:29 +02:00
parent f8c42d3148
commit 09ff8b57c1
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ interface IDXGISwapChain : IDXGIDeviceSubObject
HRESULT SetFullscreenState(BOOL fullscreen, IDXGIOutput *target);
HRESULT GetFullscreenState(BOOL *fullscreen, IDXGIOutput **target);
HRESULT GetDesc(DXGI_SWAP_CHAIN_DESC *desc);
HRESULT ResizeBuffers(const DXGI_MODE_DESC *desc);
HRESULT ResizeBuffers(UINT buffer_count, UINT width, UINT height, DXGI_FORMAT format, UINT flags);
HRESULT ResizeTarget(const DXGI_MODE_DESC *desc);
HRESULT GetContainingOutput(IDXGIOutput **output);
HRESULT GetFrameStatistics(DXGI_FRAME_STATISTICS *stats);