OSDN Git Service

intel bufmgr: reinstate buffer handle tracking
authorJesse Barnes <jbarnes@virtuousgeek.org>
Tue, 30 Sep 2008 23:35:26 +0000 (16:35 -0700)
committerJesse Barnes <jbarnes@virtuousgeek.org>
Tue, 30 Sep 2008 23:35:53 +0000 (16:35 -0700)
We need a way of getting at the underlying handle for use with mode
setting.  We can either export it in the dri_bo object or provide a new
callback to get it.

libdrm/intel/intel_bufmgr.h
libdrm/intel/intel_bufmgr_gem.c

index c44d596..67dba6a 100644 (file)
@@ -59,6 +59,10 @@ struct _dri_bo {
 
     /** Buffer manager context associated with this buffer object */
     dri_bufmgr *bufmgr;
+    /**
+     * MM-specific handle for accessing object
+     */
+    int handle;
 };
 
 dri_bo *dri_bo_alloc(dri_bufmgr *bufmgr, const char *name, unsigned long size,
index 4ca49d0..70cdca7 100644 (file)
@@ -316,7 +316,7 @@ dri_gem_bo_alloc(dri_bufmgr *bufmgr, const char *name,
 
        ret = ioctl(bufmgr_gem->fd, DRM_IOCTL_I915_GEM_CREATE, &create);
        bo_gem->gem_handle = create.handle;
-       //bo_gem->bo.handle = bo_gem->gem_handle;
+       bo_gem->bo.handle = bo_gem->gem_handle;
        if (ret != 0) {
            free(bo_gem);
            return NULL;