diff options
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_vbo.c')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_vbo.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv50/nv50_vbo.c b/src/gallium/drivers/nv50/nv50_vbo.c index 0ce19bec4af..ef01e61172d 100644 --- a/src/gallium/drivers/nv50/nv50_vbo.c +++ b/src/gallium/drivers/nv50/nv50_vbo.c @@ -351,6 +351,10 @@ nv50_vertex_arrays_validate(struct nv50_context *nv50) for (; i < nv50->state.num_vtxelts; ++i) { BEGIN_RING(chan, RING_3D(VERTEX_ARRAY_ATTRIB(i)), 1); OUT_RING (chan, NV50_3D_VERTEX_ATTRIB_INACTIVE); + if (unlikely(nv50->state.instance_elts & (1 << i))) { + BEGIN_RING(chan, RING_3D(VERTEX_ARRAY_PER_INSTANCE(i)), 1); + OUT_RING (chan, 0); + } BEGIN_RING(chan, RING_3D(VERTEX_ARRAY_FETCH(i)), 1); OUT_RING (chan, 0); } |