diff options
author | Christoph Bumiller <[email protected]> | 2011-01-21 16:52:17 +0100 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2011-01-23 13:03:10 +0100 |
commit | bf1df06773d6eca8b71a687f838edccd1a6c9cb8 (patch) | |
tree | 1073728717fc0db82ccaba265b6ee889672a866f /src/gallium/drivers/nvc0/nvc0_fence.c | |
parent | 49f16c96f150b192bfd6828ae4ba03afe3a7b8f3 (diff) |
nvc0: add MARK_RING where missing to avoid too many relocs errors
Diffstat (limited to 'src/gallium/drivers/nvc0/nvc0_fence.c')
-rw-r--r-- | src/gallium/drivers/nvc0/nvc0_fence.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/nvc0/nvc0_fence.c b/src/gallium/drivers/nvc0/nvc0_fence.c index 9d2c48cf14d..3a3dd75c152 100644 --- a/src/gallium/drivers/nvc0/nvc0_fence.c +++ b/src/gallium/drivers/nvc0/nvc0_fence.c @@ -55,6 +55,7 @@ nvc0_fence_emit(struct nvc0_fence *fence) assert(fence->state == NVC0_FENCE_STATE_AVAILABLE); + MARK_RING (chan, 5, 2); BEGIN_RING(chan, RING_3D(QUERY_ADDRESS_HIGH), 4); OUT_RELOCh(chan, screen->fence.bo, 0, NOUVEAU_BO_WR); OUT_RELOCl(chan, screen->fence.bo, 0, NOUVEAU_BO_WR); |