diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-03-15 05:05:56 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-03-15 05:05:56 +0000 |
commit | 880a96039ec4356b26ff7cd9f71c92855b979176 (patch) | |
tree | 66853a8a6cacf33d15e604da0a5b5284ed9c68db /lib/libdrm/intel/intel_bufmgr.h | |
parent | c023620ef389e48543a15135bf11534b784cf9bf (diff) |
update to libdrm 2.4.52
ok matthieu@
Diffstat (limited to 'lib/libdrm/intel/intel_bufmgr.h')
-rw-r--r-- | lib/libdrm/intel/intel_bufmgr.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/libdrm/intel/intel_bufmgr.h b/lib/libdrm/intel/intel_bufmgr.h index 2eb9742ba..9383c722e 100644 --- a/lib/libdrm/intel/intel_bufmgr.h +++ b/lib/libdrm/intel/intel_bufmgr.h @@ -61,9 +61,8 @@ struct _drm_intel_bo { unsigned long align; /** - * Last seen card virtual address (offset from the beginning of the - * aperture) for the object. This should be used to fill relocation - * entries when calling drm_intel_bo_emit_reloc() + * Deprecated field containing (possibly the low 32-bits of) the last + * seen virtual card address. Use offset64 instead. */ unsigned long offset; @@ -84,6 +83,13 @@ struct _drm_intel_bo { * MM-specific handle for accessing object */ int handle; + + /** + * Last seen card virtual address (offset from the beginning of the + * aperture) for the object. This should be used to fill relocation + * entries when calling drm_intel_bo_emit_reloc() + */ + uint64_t offset64; }; enum aub_dump_bmp_format { |