From c4af3099731f48eb348b1b9a4919bbff14a459ca Mon Sep 17 00:00:00 2001 From: Axel Davy Date: Sat, 5 Mar 2016 19:06:29 +0100 Subject: st/nine: Fix header of GetIndices There is a mistake in the online documentation, the function only has 2 arguments. Signed-off-by: Axel Davy --- src/gallium/state_trackers/nine/device9.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/gallium/state_trackers') diff --git a/src/gallium/state_trackers/nine/device9.c b/src/gallium/state_trackers/nine/device9.c index 279b8352b96..16e19f65553 100644 --- a/src/gallium/state_trackers/nine/device9.c +++ b/src/gallium/state_trackers/nine/device9.c @@ -3676,8 +3676,7 @@ NineDevice9_SetIndices( struct NineDevice9 *This, */ HRESULT NINE_WINAPI NineDevice9_GetIndices( struct NineDevice9 *This, - IDirect3DIndexBuffer9 **ppIndexData /*, - UINT *pBaseVertexIndex */ ) + IDirect3DIndexBuffer9 **ppIndexData) { user_assert(ppIndexData, D3DERR_INVALIDCALL); nine_reference_set(ppIndexData, This->state.idxbuf); -- cgit v1.2.3