summaryrefslogtreecommitdiff
path: root/src/mesa/main/mm.c
AgeCommit message (Collapse)Author
2010-07-31mesa: Add headers containing sybmols used by mm.c.Vinson Lee
2010-02-19Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versionsKristian Høgsberg
2008-09-22Remove incorrect test from mmAllocMem.Michel Dänzer
0 is a perfectly valid alignment shift, see e.g. driTexturesGone() which was broken by this.
2008-09-21mesa: More signed/unsigned float/integer fixes.José Fonseca
2008-09-21mesa: Use appropriate unsigned/signed, float/integer types.José Fonseca
2008-06-17mesa: make mm.c use unsigned ints for offsets.Dave Airlie
If you have a GPU using this code and it has the offsets up in this space, this fails.
2006-09-22Remove unused variable.Keith Whitwell
2006-09-07Add some asserts, fix some not-quite-bugs.Keith Whitwell
2006-08-02Fix mmFindBlock function.Michal Krol
2006-05-22Speedup the venerable mm.[ch] allocator with doubly linked lists and aKeith Whitwell
separate list of free segments.
2005-11-28Remove the many aliases for 'struct mem_block' in mm.hKeith Whitwell
2005-10-18Lots of clean-ups. Replace __inline__ with INLINE macro. Use theBrian Paul
_mesa_calloc(), _mesa_free() functions. Clean-up formatting, doxygen-style comments.
2005-10-18Add _mesa_exec_malloc() and _mesa_exec_free() for allocatingKeith Whitwell
executable memory. Based on Thomas Hellstrom's patch. TODO: glapi.c also needs this, but cannot access this code.