summaryrefslogtreecommitdiff
path: root/libdrm/xf86mm.h
diff options
context:
space:
mode:
authorThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-08-30 15:08:40 +0200
committerThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-08-30 15:08:40 +0200
commit14a835be616183e733a2d6a7dcc697b8a6f46caf (patch)
treeadaa844d3d5955681442df5032c4ef8b76683f1d /libdrm/xf86mm.h
parente47a4fda2ef7aada45b7799ad20e8012102dc12e (diff)
Buffer object mapping and mapping synchronization for multiple clients.
Diffstat (limited to 'libdrm/xf86mm.h')
-rw-r--r--libdrm/xf86mm.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libdrm/xf86mm.h b/libdrm/xf86mm.h
index 8711a144..c811892f 100644
--- a/libdrm/xf86mm.h
+++ b/libdrm/xf86mm.h
@@ -85,17 +85,17 @@ typedef struct _drmMMListHead
typedef struct _drmBO{
drm_bo_type_t type;
unsigned handle;
- drm_handle_t map_handle;
+ drm_handle_t mapHandle;
unsigned flags;
unsigned mask;
unsigned hint;
- unsigned map_flags;
+ unsigned mapFlags;
unsigned long size;
unsigned long offset;
unsigned long start;
void *virtual;
- void *map_virtual;
- int map_count;
+ void *mapVirtual;
+ int mapCount;
drmTTM *ttm;
} drmBO;