summaryrefslogtreecommitdiff
path: root/src/mesa/shader/slang/slang_mem.c
AgeCommit message (Collapse)Author
2010-06-10mesa: move shader/slang/* sources to main/slang/*Brian Paul
Reduce the source tree depth a bit.
2010-02-19Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versionsKristian Høgsberg
2010-02-19Remove _mesa_memcpy in favor of plain memcpy.Kenneth Graunke
This may break the SUNOS4 build, but it's no longer relevant.
2010-02-19Remove _mesa_strlen in favor of plain strlen.Kenneth Graunke
2010-02-19Remove _mesa_strcpy in favor of plain strcpy.Kenneth Graunke
2009-01-20glsl: silence unused var warningsBrian Paul
2008-08-16mesa: import latest GLSL code from gallium-0.1 branchBrian Paul
2007-04-21Use new memory pool allocator. Lots of debug code still in place...Brian
2007-04-21Memory pool manager.Brian
Instead of doing intricate malloc/free tracking during compiling, allocate everything (which would be discarded after compiling) from a pool that can be freed en masse when done.