diff options
author | Dave Airlie <airlied@linux.ie> | 2005-01-16 05:40:12 +0000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2005-01-16 05:40:12 +0000 |
commit | 354dd17d2505fd3b9754f6ccc960671e1f9363d9 (patch) | |
tree | 43351403eceef4946e00ae3f25e1e64121e86565 /libdrm | |
parent | 9514ee39f7e5063383b99de580e7e3115645e886 (diff) |
The patch makes drmAddBufs/drmMapBufs can handle buffers in video memory
The attached patch adds a new buffer type DRM_FB_BUFFER. It works like AGP
memory but uses video memory.
From: austinyuan@viatech.com.cn (fd.o bug 1668) Signed-off-by: Dave Airlie
<airlied@linux.ie>
Diffstat (limited to 'libdrm')
-rw-r--r-- | libdrm/xf86drm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libdrm/xf86drm.h b/libdrm/xf86drm.h index b33d525e..7521e341 100644 --- a/libdrm/xf86drm.h +++ b/libdrm/xf86drm.h @@ -148,7 +148,8 @@ typedef enum { typedef enum { DRM_PAGE_ALIGN = 0x01, DRM_AGP_BUFFER = 0x02, - DRM_SG_BUFFER = 0x04 + DRM_SG_BUFFER = 0x04, + DRM_FB_BUFFER = 0x08 } drmBufDescFlags; typedef enum { |