summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/r300/r300_cb.h
Commit message (Collapse)AuthorAgeFilesLines
* Don't cast the return value of malloc/reallocMatt Turner2012-09-051-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 cleanupMarek Olšák2011-02-101-21/+33
|
* r300g: rebuild winsys and command submission to support multiple contextsMarek Olšák2010-07-161-3/+0
|
* r300g: introduce VAP invariant stateMarek Olšák2010-06-261-1/+1
| | | | Unlike other invariant states, this one must be emitted after VAP flush.
* r300g: optimize the immediate mode emission path a bitMarek Olšák2010-06-221-0/+3
|
* r300g: count CS dwords on debug builds onlyMarek Olšák2010-06-141-8/+14
|
* r300g: add API for building command buffersMarek Olšák2010-06-131-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).