mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 20:18:12 +02:00
nv50: Adapt for index bias interface change.
This commit is contained in:
parent
583f51ba4b
commit
f6f7324bbf
3 changed files with 11 additions and 6 deletions
|
|
@ -185,12 +185,12 @@ extern void nv50_draw_arrays_instanced(struct pipe_context *, unsigned mode,
|
|||
unsigned instanceCount);
|
||||
extern void nv50_draw_elements(struct pipe_context *pipe,
|
||||
struct pipe_resource *indexBuffer,
|
||||
unsigned indexSize,
|
||||
unsigned indexSize, int indexBias,
|
||||
unsigned mode, unsigned start,
|
||||
unsigned count);
|
||||
extern void nv50_draw_elements_instanced(struct pipe_context *pipe,
|
||||
struct pipe_resource *indexBuffer,
|
||||
unsigned indexSize,
|
||||
unsigned indexSize, int indexBias,
|
||||
unsigned mode, unsigned start,
|
||||
unsigned count,
|
||||
unsigned startInstance,
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -387,7 +387,7 @@ nv50_draw_elements_inline(struct pipe_context *pipe,
|
|||
void
|
||||
nv50_draw_elements_instanced(struct pipe_context *pipe,
|
||||
struct pipe_resource *indexBuffer,
|
||||
unsigned indexSize,
|
||||
unsigned indexSize, int indexBias,
|
||||
unsigned mode, unsigned start, unsigned count,
|
||||
unsigned startInstance, unsigned instanceCount)
|
||||
{
|
||||
|
|
@ -401,6 +401,8 @@ nv50_draw_elements_instanced(struct pipe_context *pipe,
|
|||
if (!nv50_state_validate(nv50, 13 + 16*3))
|
||||
return;
|
||||
|
||||
assert(indexBias == 0);
|
||||
|
||||
if (nv50->vbo_fifo) {
|
||||
nv50_push_elements_instanced(pipe, indexBuffer, indexSize,
|
||||
mode, start, count, startInstance,
|
||||
|
|
@ -460,10 +462,11 @@ nv50_draw_elements_instanced(struct pipe_context *pipe,
|
|||
|
||||
void
|
||||
nv50_draw_elements(struct pipe_context *pipe,
|
||||
struct pipe_resource *indexBuffer, unsigned indexSize,
|
||||
struct pipe_resource *indexBuffer,
|
||||
unsigned indexSize, int indexBias,
|
||||
unsigned mode, unsigned start, unsigned count)
|
||||
{
|
||||
nv50_draw_elements_instanced(pipe, indexBuffer, indexSize,
|
||||
nv50_draw_elements_instanced(pipe, indexBuffer, indexSize, indexBias,
|
||||
mode, start, count, 0, 1);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue