Mesa (nvc0): nvc0: fence.bo is mappable, mark it as such

Ben Skeggs darktama at kemper.freedesktop.org
Tue Dec 21 06:43:28 UTC 2010


Module: Mesa
Branch: nvc0
Commit: e4e1a85bf8126d67fa0b9bf64b8d094ec1fbe2f8
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=e4e1a85bf8126d67fa0b9bf64b8d094ec1fbe2f8

Author: Ben Skeggs <bskeggs at redhat.com>
Date:   Tue Dec 21 06:32:13 2010 +1000

nvc0: fence.bo is mappable, mark it as such

---

 src/gallium/drivers/nvc0/nvc0_screen.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/gallium/drivers/nvc0/nvc0_screen.c b/src/gallium/drivers/nvc0/nvc0_screen.c
index 2493721..7936ef3 100644
--- a/src/gallium/drivers/nvc0/nvc0_screen.c
+++ b/src/gallium/drivers/nvc0/nvc0_screen.c
@@ -375,7 +375,8 @@ nvc0_screen_create(struct pipe_winsys *ws, struct nouveau_device *dev)
    screen->base.vertex_buffer_flags = NOUVEAU_BO_GART;
    screen->base.index_buffer_flags = 0;
 
-   ret = nouveau_bo_new(dev, NOUVEAU_BO_GART, 0, 4096, &screen->fence.bo);
+   ret = nouveau_bo_new(dev, NOUVEAU_BO_GART | NOUVEAU_BO_MAP, 0, 4096,
+                        &screen->fence.bo);
    if (ret)
       goto fail;
    nouveau_bo_map(screen->fence.bo, NOUVEAU_BO_RDWR);




More information about the mesa-commit mailing list