diff options
author | Jesse Barnes <jbarnes@virtuousgeek.org> | 2008-09-30 16:35:26 -0700 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2008-09-30 16:35:53 -0700 |
commit | af2323b4b3b76070fb453531147a8956161b3718 (patch) | |
tree | c82d5cbe396980cce516418fd2c2e6aee441108d | |
parent | 7b3aa626482963cc52086da629f682fce2c7322c (diff) |
intel bufmgr: reinstate buffer handle tracking
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.
-rw-r--r-- | libdrm/intel/intel_bufmgr.h | 4 | ||||
-rw-r--r-- | libdrm/intel/intel_bufmgr_gem.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libdrm/intel/intel_bufmgr.h b/libdrm/intel/intel_bufmgr.h index c44d596b..67dba6a1 100644 --- a/libdrm/intel/intel_bufmgr.h +++ b/libdrm/intel/intel_bufmgr.h @@ -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, diff --git a/libdrm/intel/intel_bufmgr_gem.c b/libdrm/intel/intel_bufmgr_gem.c index 4ca49d0a..70cdca74 100644 --- a/libdrm/intel/intel_bufmgr_gem.c +++ b/libdrm/intel/intel_bufmgr_gem.c @@ -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; |