summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/pipebuffer/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* build: Don't build pipebufferMatt Turner2013-01-101-18/+0
| | | | It's already built by src/gallium/auxiliary.
* pipebuffer: Swap buffers out to system memory when running out of memory.José Fonseca2010-01-211-1/+0
|
* gallium: Improve makefiles for librariesJakob Bornecrantz2009-02-201-3/+0
| | | | | | | | The template makefile that most libraries in gallium included was based on dri and had a bunch unrelevant junk in it. Update it and improve the depending makefiles.
* pipebuffer: Drop (most of) pipe winsys stuff.José Fonseca2009-02-011-2/+1
|
* pipebuffer: Ondemand buffer manager.José Fonseca2009-01-291-0/+1
| | | | | A variation of malloc buffers which get transferred to real graphics memory when there is an attempt to validate them.
* Revert "pipebuffer: Ondemand buffer manager."Keith Whitwell2008-12-121-1/+0
| | | | This reverts commit 17849eafaacfbb2124d86f561a91b707317d3b31.
* pipebuffer: Ondemand buffer manager.José Fonseca2008-11-241-0/+1
| | | | | A variation of malloc buffers which get transferred to real graphics memory when there is an attempt to validate them.
* pipebuffer: Debug buffer manager to detect buffer under- and overflows.José Fonseca2008-07-021-0/+1
| | | | It should detect both cpu and gpu buffer overflows.
* pipebuffer: Alternative buffer manager.José Fonseca2008-06-101-0/+1
| | | | | For situations where one has a reserve memory pool, or a faster/slower pool.
* pipebuffer: Preliminary buffer validation.José Fonseca2008-05-081-0/+1
| | | | | | | Use table to store a list of buffers to validate. Unfortunately cso_hash shrinks/regrows the hash every time, so still has to be addressed. Multi-thread validation is still WIP.
* gallium: Buffer cache.José Fonseca2008-04-131-0/+1
|
* gallium: Initial port of Thomas slab suballocator to pipebuffer.José Fonseca2008-04-131-0/+1
| | | | | | | | Not tested yet -- just compiles. This includes only the slab algorithm. Fencing is already implemented in pb_bufmgr_fence and time-based caching will be commited in a separate module shortly.
* 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.
* Code reorganization: s/aux/auxiliary/.José Fonseca2008-02-151-0/+23
"aux" is a reserved name on Windows (X_X)