aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/softpipe/sp_state_derived.c
Commit message (Collapse)AuthorAgeFilesLines
* remove usage of vertex_headerKeith Whitwell2008-04-101-11/+2
|
* gallium: use new framebuffer width, height fieldsBrian2008-03-201-2/+2
|
* gallium: added fb_width/height fields to softpipe contextBrian Paul2008-03-191-11/+2
| | | | | These are convenience fields. Otherwise, we have to check cbuf[0] or zsbuf in various places.
* gallium: fix some compiler warningsKeith Whitwell2008-03-141-1/+3
|
* gallium: in softpipe_get_vertex_info() generate a vbuf vertex_info with real ↵Brian2008-03-131-0/+12
| | | | | | attribs Can't use the EMIT_ALL shortcut/optimization anymore because of passthrough mode.
* gallium: added draw_num_vs_outputs() to query number of post-transform ↵Brian2008-02-271-2/+2
| | | | vertex attribs
* gallium: remove unused varBrian2008-02-261-1/+0
|
* gallium: added tgsi_shader_field to sp_fragment_shaderBrian2008-02-261-4/+5
| | | | | Use the shader semantic info from there, instead of from pipe_shader_state. Carry this idea to draw module and other drivers...
* softpipe: use draw_find_vs_output() directlyBrian2008-02-251-32/+7
|
* gallium: antialiased line drawingBrian2008-02-181-7/+10
| | | | | | New draw/prim stage: draw_aaline. When installed, lines are replaced by textured quads to do antialiasing. The current user-defined fragment shader is modified to do a texture fetch and modulate fragment alpha.
* Code reorganization: update build.José Fonseca2008-02-151-3/+3
| | | | | | | | | Update the Makefiles and includes for the new paths. Note that there hasn't been no separation of the Makefiles yet, and make is jumping all over the place. That will be taken care shortly. But for now, make should work. It was tested with linux and linux-dri. Linux-cell and linux-llvm might require some minor tweaks.
* Code reorganization: move files into their places.José Fonseca2008-02-151-0/+235
This is in a separate commit to ensure renames are properly preserved.