summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/Makefile
AgeCommit message (Collapse)Author
2009-01-30gallium: add a convience wrapper for simple screensZack Rusin
forwards screen calls to the winsys
2008-12-22Merge commit 'origin/gallium-0.1' into gallium-0.2José Fonseca
Conflicts: src/gallium/auxiliary/util/Makefile
2008-12-19gallium: Simple and efficient cache.José Fonseca
Fixed size hash table. Collisions are handled by simply destroying the previous entry. It hasn't received much testing yet.
2008-11-24util: Add generic tile and detile functionsJakob Bornecrantz
2008-10-07gallium: added general-purpose key->data map/lookup containerBrian Paul
2008-09-08util: Rip-off trace's os-independent stream code.José Fonseca
2008-09-01add u_timed_winsys.[ch]Keith Whitwell
2008-08-24gallium: refactor/replace p_util.h with util/u_memory.h and util/u_math.hBrian Paul
Also, rename p_tile.[ch] to u_tile.[ch]
2008-08-22gallium: rename p_util.c to u_rect.c (it only contains rect copy/fill helpers)Brian Paul
2008-08-22gallium: new u_math.[ch] files for math functionsBrian Paul
So far, optimized/low-precision versions of exp(), exp2(), log2(), pow().
2008-06-18gallium: remove duplicated u_mm.c in file listBrian Paul
2008-04-13gallium: Add u_time.cJosé Fonseca
2008-04-13gallium: OS independent time-manipulation functions.José Fonseca
2008-03-18gallium: new pixel blit codeBrian
Copy rectangular region from one surface to another w/ scaling. Disables most fragment operations.
2008-03-18added u_simple_shaders.cBrian
2008-03-17gallium: added new u_draw_quad.c and u_gen_mipmap.c files.Brian
2008-03-13gallium: General purpose hash table, which is actually just a convenient ↵José Fonseca
frontend to cso_hash.
2008-03-12gallium: Generic handle table.José Fonseca
2008-03-08gallium: Document debug_printf usage.José Fonseca
2008-02-19Simplify makefile boilerplate code.José Fonseca
Don't define ASM_SOURCES variable globally -- reserve that variable to be defined locally by makefiles, together with C_SOURCES and CPP_SOURCES.
2008-02-19Move mm.c code into util module.José Fonseca
Using the u_ prefix to distingish the c source files that support gallium interfaces and those that have really no relation with gallium itself.
2008-02-18Code reorganization: split gallium and mesa makefiles.José Fonseca
In other words, don't build src/gallium source code from within src/mesa/Makefile. Also, allow to customize which gallium auxiliary dirs, driver driver, winsys dirs get built from the config/* files.