aboutsummaryrefslogtreecommitdiff
path: root/libdrm/intel/intel_bufmgr.h
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@virtuousgeek.org>2008-09-30 16:35:26 -0700
committerJesse Barnes <jbarnes@virtuousgeek.org>2008-09-30 16:35:53 -0700
commitaf2323b4b3b76070fb453531147a8956161b3718 (patch)
treec82d5cbe396980cce516418fd2c2e6aee441108d /libdrm/intel/intel_bufmgr.h
parent7b3aa626482963cc52086da629f682fce2c7322c (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.
Diffstat (limited to 'libdrm/intel/intel_bufmgr.h')
-rw-r--r--libdrm/intel/intel_bufmgr.h4
1 files changed, 4 insertions, 0 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,