summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/util/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* util: Rip-off trace's os-independent stream code.José Fonseca2008-09-081-0/+2
|
* add u_timed_winsys.[ch]Keith Whitwell2008-09-011-1/+2
|
* gallium: refactor/replace p_util.h with util/u_memory.h and util/u_math.hBrian Paul2008-08-241-1/+1
| | | | Also, rename p_tile.[ch] to u_tile.[ch]
* gallium: rename p_util.c to u_rect.c (it only contains rect copy/fill helpers)Brian Paul2008-08-221-1/+1
|
* gallium: new u_math.[ch] files for math functionsBrian Paul2008-08-221-0/+1
| | | | So far, optimized/low-precision versions of exp(), exp2(), log2(), pow().
* gallium: remove duplicated u_mm.c in file listBrian Paul2008-06-181-2/+1
|
* gallium: Add u_time.cJosé Fonseca2008-04-131-0/+1
|
* gallium: OS independent time-manipulation functions.José Fonseca2008-04-131-1/+2
|
* gallium: new pixel blit codeBrian2008-03-181-0/+1
| | | | | Copy rectangular region from one surface to another w/ scaling. Disables most fragment operations.
* added u_simple_shaders.cBrian2008-03-181-0/+1
|
* gallium: added new u_draw_quad.c and u_gen_mipmap.c files.Brian2008-03-171-0/+2
|
* gallium: General purpose hash table, which is actually just a convenient ↵José Fonseca2008-03-131-0/+1
| | | | frontend to cso_hash.
* gallium: Generic handle table.José Fonseca2008-03-121-0/+1
|
* gallium: Document debug_printf usage.José Fonseca2008-03-081-1/+2
|
* Simplify makefile boilerplate code.José Fonseca2008-02-191-7/+1
| | | | | Don't define ASM_SOURCES variable globally -- reserve that variable to be defined locally by makefiles, together with C_SOURCES and CPP_SOURCES.
* Move mm.c code into util module.José Fonseca2008-02-191-1/+2
| | | | | Using the u_ prefix to distingish the c source files that support gallium interfaces and those that have really no relation with gallium itself.
* Code reorganization: split gallium and mesa makefiles.José Fonseca2008-02-181-0/+20
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.