Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | gallium/drivers: Sanitize NULL checks into canonical form | Edward O'Callaghan | 2015-12-06 | 1 | -1/+1 |
| | | | | | | | | | | Use NULL tests of the form `if (ptr)' or `if (!ptr)'. They do not depend on the definition of the symbol NULL. Further, they provide the opportunity for the accidental assignment, are clear and succinct. Signed-off-by: Edward O'Callaghan <[email protected]> Signed-off-by: Marek Olšák <[email protected]> | ||||
* | llvmpipe: Silence uninitialized variable warning. | Vinson Lee | 2010-02-13 | 1 | -0/+2 |
| | |||||
* | llvmpipe: use new u_ringbuffer for scene queue | Keith Whitwell | 2010-01-17 | 1 | -78/+36 |
| | |||||
* | llvmpipe: rename bins to scene | Keith Whitwell | 2009-12-13 | 1 | -0/+164 |
It was pretty confusing having an entity named "bin" and another named "bins", not least because sometimes there was a need to talk about >1 of the "bins" objects, which couldn't be pluralized any further... Scene is a term used in a bunch of places to talk about what a binner operates on, so it's a decent choice here. |