History log of /external/mesa3d/src/gallium/drivers/r300/r300_cb.h
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
2b7a972e3f36bfcdc6fbe2b59d7ffdcde49c9405 04-Sep-2012 Matt Turner <mattst88@gmail.com> Don't cast the return value of malloc/realloc

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)
)
/external/mesa3d/src/gallium/drivers/r300/r300_cb.h
ce9c0d280104c8001a3ee360b07218ad3d260e46 10-Feb-2011 Marek Olšák <maraeo@gmail.com> r300g: simplify WRITE_RELOC API and cleanup
/external/mesa3d/src/gallium/drivers/r300/r300_cb.h
fe3caa91d3f637bf9cf9f9e7adb992aa8c7ef8e4 14-Jul-2010 Marek Olšák <maraeo@gmail.com> r300g: rebuild winsys and command submission to support multiple contexts
/external/mesa3d/src/gallium/drivers/r300/r300_cb.h
fcacc6a076ee5bc894eb7f5a7943715ff1ddf9ee 25-Jun-2010 Marek Olšák <maraeo@gmail.com> r300g: introduce VAP invariant state

Unlike other invariant states, this one must be emitted after VAP flush.
/external/mesa3d/src/gallium/drivers/r300/r300_cb.h
eb7ef433bbbeabda963e74adf0ef61c47883f292 22-Jun-2010 Marek Olšák <maraeo@gmail.com> r300g: optimize the immediate mode emission path a bit
/external/mesa3d/src/gallium/drivers/r300/r300_cb.h
c1f18bff3e40cb5a5534974eb41558e169065a8b 13-Jun-2010 Marek Olšák <maraeo@gmail.com> r300g: count CS dwords on debug builds only
/external/mesa3d/src/gallium/drivers/r300/r300_cb.h
a062156bb27d604abb19b4ad6a3668c42b1334ab 13-Jun-2010 Marek Olšák <maraeo@gmail.com> r300g: add API for building command buffers

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).
/external/mesa3d/src/gallium/drivers/r300/r300_cb.h