summaryrefslogtreecommitdiff
path: root/libdrm
diff options
context:
space:
mode:
authorThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-09-20 16:31:15 +0200
committerThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-09-20 16:31:15 +0200
commitfa511a3ff5150d932fd963594d1ef67a94bb8b1f (patch)
treebda4ce612c43e638777a53a7b549482e751a4876 /libdrm
parentaac918e7c72a46a1b0f2329380e2d6b4196d04e4 (diff)
Allow for 64-bit map handles of ttms and buffer objects.
Diffstat (limited to 'libdrm')
-rw-r--r--libdrm/xf86mm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libdrm/xf86mm.h b/libdrm/xf86mm.h
index a62aef47..c0e4f1b6 100644
--- a/libdrm/xf86mm.h
+++ b/libdrm/xf86mm.h
@@ -103,7 +103,7 @@ typedef struct _drmFence{
typedef struct _drmTTM{
unsigned handle;
- drm_handle_t user_token;
+ drm_u64_t user_token;
unsigned flags;
unsigned long size;
void *virtual;
@@ -113,7 +113,7 @@ typedef struct _drmTTM{
typedef struct _drmBO{
drm_bo_type_t type;
unsigned handle;
- drm_handle_t mapHandle;
+ drm_u64_t mapHandle;
unsigned flags;
unsigned mask;
unsigned mapFlags;