Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | pb: remove unused variable, squash warning | Keith Whitwell | 2008-04-28 | 1 | -2/+0 |
| | |||||
* | pipebuffer: Be extra cautious with the incoming buffers. | José Fonseca | 2008-04-27 | 1 | -3/+17 |
| | | | | | A common mistake is trying to fence user or malloc buffers. So don't let the crash happen inside pipebuffer lib. | ||||
* | gallium: Windows user mode portability fixes. | José Fonseca | 2008-04-25 | 1 | -4/+7 |
| | |||||
* | pipebuffer: New function to flush the buffer cache. | José Fonseca | 2008-04-24 | 2 | -3/+12 |
| | |||||
* | pipebuffer: Temporarily allow simultaneous CPU writes. | José Fonseca | 2008-04-22 | 1 | -1/+17 |
| | | | | Also, fast path for re-fencing the same buffer multiple times with the same fence. | ||||
* | gallium: Fix seg fault (James Vogt). | José Fonseca | 2008-04-15 | 1 | -2/+6 |
| | |||||
* | gallium: Several fixes to buffer caching. | José Fonseca | 2008-04-15 | 3 | -25/+68 |
| | |||||
* | gallium: Allow to use a single slab. | José Fonseca | 2008-04-15 | 2 | -128/+209 |
| | | | | | We often want to use a pool of equally sized buffers, so this makes the slab suballocator a drop-in replacement. | ||||
* | gallium: Serialize buffers writes. | José Fonseca | 2008-04-15 | 1 | -5/+76 |
| | | | | | Allow concurrent reads from buffers by the CPU/GPU, but serialize all writes. | ||||
* | gallium: Buffer cache. | José Fonseca | 2008-04-13 | 4 | -3/+318 |
| | |||||
* | gallium: Initial port of Thomas slab suballocator to pipebuffer. | José Fonseca | 2008-04-13 | 4 | -0/+440 |
| | | | | | | | | 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. | ||||
* | gallium: Fix overzealous assert. | José Fonseca | 2008-04-08 | 1 | -1/+5 |
| | |||||
* | gallium: Keep fenced buffers list ordered. | José Fonseca | 2008-04-05 | 1 | -53/+99 |
| | | | | This allows to keep the list small without the overhead of full walks. | ||||
* | gallium: Fix typo. | José Fonseca | 2008-04-05 | 1 | -1/+1 |
| | |||||
* | gallium: Do not assume that buffers are freed in the same order they are fenced. | José Fonseca | 2008-04-01 | 1 | -18/+21 |
| | | | | | | | | Also free buffers as soon as possible. This short term fix corrects the fenced list behavior but it will impact on performance. The long term fix is probably replace the linked list (legacy from the bufpool code) by a binary tree. | ||||
* | gallium: Make headers C++ friendly. | José Fonseca | 2008-02-27 | 3 | -3/+30 |
| | |||||
* | gallium: MSVC fixes. | José Fonseca | 2008-02-24 | 1 | -0/+2 |
| | |||||
* | Bring in several forgotten MSVC fixes. | José Fonseca | 2008-02-23 | 2 | -2/+3 |
| | |||||
* | Remove src/mesa and src/mesa/main from gallium source include paths. | José Fonseca | 2008-02-19 | 4 | -97/+3 |
| | |||||
* | Simplify makefile boilerplate code. | José Fonseca | 2008-02-19 | 1 | -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é Fonseca | 2008-02-19 | 1 | -301/+1 |
| | | | | | Using the u_ prefix to distingish the c source files that support gallium interfaces and those that have really no relation with gallium itself. | ||||
* | Standardize on using the pipe/ include prefix. | José Fonseca | 2008-02-18 | 4 | -16/+16 |
| | |||||
* | Update scons build for new code layout. | José Fonseca | 2008-02-18 | 1 | -0/+14 |
| | |||||
* | Code reorganization: s/aux/auxiliary/. | José Fonseca | 2008-02-15 | 11 | -0/+2167 |
"aux" is a reserved name on Windows (X_X) |