diff options
author | Eric Anholt <[email protected]> | 2007-06-18 12:20:07 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2007-06-18 12:20:07 -0700 |
commit | bf0ae055de73e0cf66085e02ad4881bea497e4cb (patch) | |
tree | 86ae1f2388790ccc550bfd3734d733ea14444317 /src/mesa/drivers | |
parent | 1ddbfd779b2e11131d3c86406497fe970d8f816b (diff) |
Fix TTM static allocation flags.
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/common/dri_bufmgr_ttm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/common/dri_bufmgr_ttm.c b/src/mesa/drivers/dri/common/dri_bufmgr_ttm.c index 508d4f50539..47ea42ad553 100644 --- a/src/mesa/drivers/dri/common/dri_bufmgr_ttm.c +++ b/src/mesa/drivers/dri/common/dri_bufmgr_ttm.c @@ -150,7 +150,7 @@ dri_ttm_alloc_static(dri_bufmgr *bufmgr, const char *name, * pass all of the allocation class flags. */ flags = location_mask | DRM_BO_FLAG_READ | DRM_BO_FLAG_WRITE | - DRM_BO_FLAG_EXE | DRM_BO_FLAG_NO_EVICT | DRM_BO_FLAG_NO_MOVE; + DRM_BO_FLAG_EXE | DRM_BO_FLAG_NO_MOVE; /* No hints we want to use. */ hint = 0; |