diff options
author | Axel Davy <[email protected]> | 2016-03-05 19:06:29 +0100 |
---|---|---|
committer | Axel Davy <[email protected]> | 2016-05-18 23:37:14 +0200 |
commit | c4af3099731f48eb348b1b9a4919bbff14a459ca (patch) | |
tree | 9ec8d78d1dfb0b3e8ca6018bf1c26c7d2c8655ab /src | |
parent | 3e9d01ff3989963f10d6dfa567c23afcaef3f6e8 (diff) |
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 <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/state_trackers/nine/device9.c | 3 |
1 files changed, 1 insertions, 2 deletions
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); |