Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-12-17 | gallium: incorporate alpha state into depth_stencil state object. | Keith Whitwell | |
2007-10-29 | Make it compile under linux. | Michal Krol | |
Move pipe_region/surface_reference functions to pipe/p_inlines.h. Remove #include "p_util.h" from pipe/p_context.h. | |||
2007-10-29 | Make gallium compile in win32. | Michal Krol | |
Use FREE, MALLOC, CALLOC, GETENV wrappers. Silence compiler warnings. Add proper copyrights. | |||
2007-10-03 | Make softpipe behave more like a real driver by always allocating something | Zack Rusin | |
in the state functions. | |||
2007-09-21 | Make the alpha test state a cso. | Zack Rusin | |
2007-09-20 | Convert depth_stencil state to the new semantics. | Zack Rusin | |
2007-09-19 | Avoid redundant reallocation of the template. | Zack Rusin | |
cso already allocated the template for us. Returning 0 means we have no driver specific representation and just want the template on the bind. | |||
2007-09-19 | Redo the cso cache to map driver data in a lot more pleasing way. | Zack Rusin | |
Drivers can now create whatever they want from the state template. We use cso_state object to store the template (necessary during lookups), and the driver data. Convert blend state to the new semantics. | |||
2007-09-18 | Combing depth and stencil objects and making them immutable. | Zack Rusin | |
Converting depth and stencil objects into a single state object (d3d10 like) and making it immutable. | |||
2007-09-18 | Fix the warning. | Zack Rusin | |
The const is there to enforce the immutable state of the object, which is in reality owned by the pipe so just cast away the constness. | |||
2007-09-18 | First stab at immutable state objects (create/bind/delete) | Zack Rusin | |
We want our state objects to be immutable, handled via the create/bind/delete calls instead of struct propagation. Only implementing the blend state to see how it would look like and work. | |||
2007-08-14 | Continue reducing dependencies on core mesa include files. | Keith Whitwell | |
Mainly down to the support for legacy TNL processing now. | |||
2007-07-10 | Begin hooking up stenciling. | Brian | |
2007-07-09 | Rename G_NEW_* tokens to SP_NEW_* | Brian | |
2007-07-09 | New 'draw' module for primitive drawing (clipping, culling, etc). | Brian | |
2007-07-03 | hook in state tracking for blend color | Brian | |
2007-06-20 | checkpoint: implement z/depth testing | Brian | |
2007-06-20 | quad blending works now, but many blend terms need to be added in blend_quad(). | Brian | |