aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/softpipe/sp_state_fs.c
Commit message (Collapse)AuthorAgeFilesLines
* gallium: rework CSO-related code in state trackerBrian2008-03-111-1/+2
| | | | | | | | | | Use the code in cso_context.c rather than st_cache.c. Basically, binding of state objects now goes through the CSO module. But Vertex/fragment shaders go through pipe->bind_fs/vs_state() since they're not cached by the CSO module at this time. Also, update softpipe driver to handle NULL state objects in various places. This happens during context destruction. May need to update other drivers...
* gallium: remove uses_kill field from softpipe_shaderBrian2008-02-271-3/+0
|
* gallium: added tgsi_shader_field to sp_fragment_shaderBrian2008-02-261-6/+10
| | | | | Use the shader semantic info from there, instead of from pipe_shader_state. Carry this idea to draw module and other drivers...
* gallium: disable early Z test if fragment shader contains KIL instruction.Brian2008-02-231-9/+13
| | | | | Use tgsi_scan_shader() to determine if the fragment shader uses KIL or writes fragment.z
* Merge commit 'origin/gallium-0.1' into gallium-0.1Keith Whitwell2008-02-151-46/+23
| | | | | | | | Conflicts: src/gallium/drivers/softpipe/sp_quad_fs.c src/gallium/drivers/softpipe/sp_state.h src/gallium/drivers/softpipe/sp_state_fs.c
* Code reorganization: update build.José Fonseca2008-02-151-4/+4
| | | | | | | | | 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/+179
This is in a separate commit to ensure renames are properly preserved.