Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Don't cast the return value of malloc/realloc | Matt Turner | 2012-09-05 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch has been generated by the following Coccinelle semantic patch: // Don't cast the return value of malloc/realloc. // // Casting the return value of malloc/realloc only stands to hide // errors. @@ type T; expression E1, E2; @@ - (T) ( _mesa_align_calloc(E1, E2) | _mesa_align_malloc(E1, E2) | calloc(E1, E2) | malloc(E1) | realloc(E1, E2) ) | ||||
* | r300g: simplify WRITE_RELOC API and cleanup | Marek Olšák | 2011-02-10 | 1 | -21/+33 |
| | |||||
* | r300g: rebuild winsys and command submission to support multiple contexts | Marek Olšák | 2010-07-16 | 1 | -3/+0 |
| | |||||
* | r300g: introduce VAP invariant state | Marek Olšák | 2010-06-26 | 1 | -1/+1 |
| | | | | Unlike other invariant states, this one must be emitted after VAP flush. | ||||
* | r300g: optimize the immediate mode emission path a bit | Marek Olšák | 2010-06-22 | 1 | -0/+3 |
| | |||||
* | r300g: count CS dwords on debug builds only | Marek Olšák | 2010-06-14 | 1 | -8/+14 |
| | |||||
* | r300g: add API for building command buffers | Marek Olšák | 2010-06-13 | 1 | -0/+133 |
The idea is to build a hardware command buffer for every CSO and memcpy the buffer to a command stream at bind time (or dirty-state-emission time, to be precise). |