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 /bsd | |
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 'bsd')
-rw-r--r-- | bsd/drmP.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -223,7 +223,8 @@ typedef struct drm_device_dma { unsigned long byte_count; enum { _DRM_DMA_USE_AGP = 0x01, - _DRM_DMA_USE_SG = 0x02 + _DRM_DMA_USE_SG = 0x02, + _DRM_DMA_USE_FB = 0x04 } flags; /* DMA support */ |