include: SwapChain::GetBackBuffer takes 3 parameters, not 4.
This commit is contained in:
parent
a247e6975f
commit
17662eac6c
|
@ -256,7 +256,7 @@ DECLARE_INTERFACE_(IDirect3DSwapChain8,IUnknown)
|
|||
#define IDirect3DSwapChain8_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IDirect3DSwapChain8 methods ***/
|
||||
#define IDirect3DSwapChain8_Present(p,a,b,c) (p)->lpVtbl->Present(p,a,b,c)
|
||||
#define IDirect3DSwapChain8_GetBackBuffer(p,a,b,c,d) (p)->lpVtbl->GetBackBuffer(p,a,b,c,d)
|
||||
#define IDirect3DSwapChain8_GetBackBuffer(p,a,b,c) (p)->lpVtbl->GetBackBuffer(p,a,b,c)
|
||||
#else
|
||||
/*** IUnknown methods ***/
|
||||
#define IDirect3DSwapChain8_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
|
||||
|
@ -264,7 +264,7 @@ DECLARE_INTERFACE_(IDirect3DSwapChain8,IUnknown)
|
|||
#define IDirect3DSwapChain8_Release(p) (p)->Release()
|
||||
/*** IDirect3DSwapChain8 methods ***/
|
||||
#define IDirect3DSwapChain8_Present(p,a,b,c) (p)->Present(a,b,c)
|
||||
#define IDirect3DSwapChain8_GetBackBuffer(p,a,b,c,d) (p)->GetBackBuffer(a,b,c,d)
|
||||
#define IDirect3DSwapChain8_GetBackBuffer(p,a,b,c) (p)->GetBackBuffer(a,b,c)
|
||||
#endif
|
||||
|
||||
/*****************************************************************************
|
||||
|
|
Loading…
Reference in New Issue