summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/nv50/nv50_screen.c
diff options
context:
space:
mode:
authorMarcin Slusarz <[email protected]>2011-10-09 00:10:47 +0200
committerMarcin Slusarz <[email protected]>2011-10-09 14:49:30 +0200
commitf03810fbdd41012422f6920c2026c49927bcb820 (patch)
tree467a2ba37ab96d9d785b788adad261bd3549f587 /src/gallium/drivers/nv50/nv50_screen.c
parent9849f366cbfd781ebeca725058029b70c96836f9 (diff)
nv50,nvc0: avoid unnecessary flushes
Relocations don't consume pushbuffer space, so there is no need to ensure there is any space in pushbuffer.
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_screen.c')
-rw-r--r--src/gallium/drivers/nv50/nv50_screen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv50/nv50_screen.c b/src/gallium/drivers/nv50/nv50_screen.c
index 7ff11ea4b0b..fe8712d1765 100644
--- a/src/gallium/drivers/nv50/nv50_screen.c
+++ b/src/gallium/drivers/nv50/nv50_screen.c
@@ -641,7 +641,7 @@ nv50_screen_make_buffers_resident(struct nv50_screen *screen)
const unsigned flags = NOUVEAU_BO_VRAM | NOUVEAU_BO_RD;
- MARK_RING(chan, 5, 5);
+ MARK_RING(chan, 0, 5);
nouveau_bo_validate(chan, screen->code, flags);
nouveau_bo_validate(chan, screen->uniforms, flags);
nouveau_bo_validate(chan, screen->txc, flags);