diff options
author | Ilia Mirkin <imirkin@alum.mit.edu> | 2015-07-03 20:32:53 -0400 |
---|---|---|
committer | Ilia Mirkin <imirkin@alum.mit.edu> | 2015-09-05 23:04:18 -0400 |
commit | 4a025c6bc835387a31007fdf30a130e612e54e19 (patch) | |
tree | d41ffef2e6a0f43e0aaa9850a43a04e4023d8ecf | |
parent | 1f62d36ae21043c472fc182fd4b738ec1d54a2d2 (diff) |
nv50: don't flush vertex arrays when index buffer changes
The index buffer is fed in inline over a pushbuf. It's not related to
vertices or any caching that might be done on them.
Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Cc: mesa-stable@lists.freedesktop.org
-rw-r--r-- | src/gallium/drivers/nouveau/nv50/nv50_vbo.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gallium/drivers/nouveau/nv50/nv50_vbo.c b/src/gallium/drivers/nouveau/nv50/nv50_vbo.c index f35326d419..600b973c5f 100644 --- a/src/gallium/drivers/nouveau/nv50/nv50_vbo.c +++ b/src/gallium/drivers/nouveau/nv50/nv50_vbo.c @@ -836,10 +836,6 @@ nv50_draw_vbo(struct pipe_context *pipe, const struct pipe_draw_info *info) nv50->base.vbo_dirty = true; } - if (!nv50->base.vbo_dirty && nv50->idxbuf.buffer && - nv50->idxbuf.buffer->flags & PIPE_RESOURCE_FLAG_MAP_COHERENT) - nv50->base.vbo_dirty = true; - if (nv50->base.vbo_dirty) { BEGIN_NV04(push, NV50_3D(VERTEX_ARRAY_FLUSH), 1); PUSH_DATA (push, 0); |