summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/i915tex/intel_buffer_objects.c
AgeCommit message (Collapse)Author
2007-09-24Move i915tex driver into place as just i915.Eric Anholt
2007-07-05Fix copy'n'pasteo that broke display lists.Eric Anholt
2007-05-24Replace the flags/hint arguments to bo_alloc{,_static} with a location mask.Eric Anholt
Now, allocations only take locations, rather than a variety of unused flags. The only interesting flag before was the no_move/no_evict pair for scanout and similar buffers, which the DRI drivers don't use. That will be readded when we get to using this code for display buffer allocation, by adding a pin/unpin call (dynamic pinning/unpinning may be useful for VT switching and root window resizing). This commit changes one instance of DRM_BO_FLAG_MEM_LOCAL with DRM_BO_FLAG_MEM_TT, which appeared to have been unintentional.
2007-05-17Convert i915tex to the new interface and make it compile.Eric Anholt
2007-02-19i915tex: Fix performance regression with new vbo code and latest drm.Thomas Hellstrom
With current memory preferences, vbos ended up in AGP space where reading from them got a bit slow. Make sure buffer objects are initially created in system memory.
2006-11-01Import texmem i915 driver to its new location as i915tex.Keith Whitwell