diff options
author | José Fonseca <[email protected]> | 2010-04-19 18:17:45 +0200 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-04-19 18:17:45 +0200 |
commit | f6f7324bbf03494dc26e266d96919fec6a1f08ba (patch) | |
tree | 8104a97a02a9ff9201572e957db304255c9364bb /src/gallium/drivers/nv50/nv50_push.c | |
parent | 583f51ba4bb1029d9d4f338ca3c8f4702ab6666c (diff) |
nv50: Adapt for index bias interface change.
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_push.c')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_push.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv50/nv50_push.c b/src/gallium/drivers/nv50/nv50_push.c index 6981e5b919b..c54fed5a36f 100644 --- a/src/gallium/drivers/nv50/nv50_push.c +++ b/src/gallium/drivers/nv50/nv50_push.c @@ -172,7 +172,8 @@ emit_verts(void *priv, unsigned start, unsigned count) void nv50_push_elements_instanced(struct pipe_context *pipe, - struct pipe_resource *idxbuf, unsigned idxsize, + struct pipe_resource *idxbuf, + unsigned idxsize, int idxbias, unsigned mode, unsigned start, unsigned count, unsigned i_start, unsigned i_count) { @@ -269,6 +270,7 @@ nv50_push_elements_instanced(struct pipe_context *pipe, } ctx.idxbuf = bo->map; ctx.idxsize = idxsize; + assert(idxbias == 0); nouveau_bo_unmap(bo); } |