aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Hellstrom2006-08-30 08:08:40 -0500
committerThomas Hellstrom2006-08-30 08:08:40 -0500
commit14a835be616183e733a2d6a7dcc697b8a6f46caf (patch)
treeadaa844d3d5955681442df5032c4ef8b76683f1d /libdrm/xf86mm.h
parente47a4fda2ef7aada45b7799ad20e8012102dc12e (diff)
downloadlibdrm-14a835be616183e733a2d6a7dcc697b8a6f46caf.tar.gz
libdrm-14a835be616183e733a2d6a7dcc697b8a6f46caf.tar.xz
libdrm-14a835be616183e733a2d6a7dcc697b8a6f46caf.zip
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
85typedef struct _drmBO{ 85typedef struct _drmBO{
86 drm_bo_type_t type; 86 drm_bo_type_t type;
87 unsigned handle; 87 unsigned handle;
88 drm_handle_t map_handle; 88 drm_handle_t mapHandle;
89 unsigned flags; 89 unsigned flags;
90 unsigned mask; 90 unsigned mask;
91 unsigned hint; 91 unsigned hint;
92 unsigned map_flags; 92 unsigned mapFlags;
93 unsigned long size; 93 unsigned long size;
94 unsigned long offset; 94 unsigned long offset;
95 unsigned long start; 95 unsigned long start;
96 void *virtual; 96 void *virtual;
97 void *map_virtual; 97 void *mapVirtual;
98 int map_count; 98 int mapCount;
99 drmTTM *ttm; 99 drmTTM *ttm;
100} drmBO; 100} drmBO;
101 101