diff options
author | Brian Paul <[email protected]> | 2010-04-20 09:43:45 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-04-20 09:43:45 -0600 |
commit | 36c9557cae78814b320768697eaccf3cf0e0ebae (patch) | |
tree | 156dfae890b2626e509bb445353aa8952ff8315e /src/gallium/drivers/nv50/nv50_context.h | |
parent | a00f4e864cbd98cc6419a71ab22cb3c7d027f0e9 (diff) |
nv50: add missing idxbias param to nv50_push_elements_instanced()
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_context.h')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_context.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv50/nv50_context.h b/src/gallium/drivers/nv50/nv50_context.h index 4875f833054..61807dd999b 100644 --- a/src/gallium/drivers/nv50/nv50_context.h +++ b/src/gallium/drivers/nv50/nv50_context.h @@ -201,7 +201,8 @@ extern struct nouveau_stateobj *nv50_vbo_validate(struct nv50_context *nv50); /* nv50_push.c */ extern void nv50_push_elements_instanced(struct pipe_context *, struct pipe_resource *, - unsigned idxsize, unsigned mode, unsigned start, + unsigned idxsize, int idxbias, + unsigned mode, unsigned start, unsigned count, unsigned i_start, unsigned i_count); |