summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/softpipe/sp_context.h
Commit message (Collapse)AuthorAgeFilesLines
* gallium: fix invalid call to draw_set_mapped_constant_buffer()Brian Paul2008-06-201-1/+1
| | | | | | We were indexing sp_constants[i] outside the loop so i was 2. Replace i with PIPE_SHADER_VERTEX. Also, replace magic '2' with PIPE_SHADER_TYPES in a few places.
* gallium: remove the unused softpipe_winsys codeBrian Paul2008-05-011-2/+0
| | | | The struct is still there though until all winsys layers are updated
* softpipe: implement SP_NO_RAST env varKeith Whitwell2008-04-221-0/+2
|
* gallium: take reduced prim, fill modes into account when cullingBrian Paul2008-04-141-0/+2
|
* gallium: keep track of num_vertex_attribs/buffers for shorter loopsBrian2008-04-081-0/+2
|
* gallium: get rid of bufloop quad stageBrian2008-04-071-1/+0
|
* gallium: begin reworking quad stages for multiple color outputsBrian2008-04-071-2/+0
|
* gallium: replace PIPE_ATTRIB_MAX with PIPE_MAX_ATTRIBSBrian2008-03-271-3/+3
| | | | | The later follows the naming scheme of other limits. Keep the old definition until all possible usage is updated.
* gallium: use new framebuffer width, height fieldsBrian2008-03-201-2/+0
|
* gallium: added fb_width/height fields to softpipe contextBrian Paul2008-03-191-0/+2
| | | | | These are convenience fields. Otherwise, we have to check cbuf[0] or zsbuf in various places.
* gallium: michel's patch to rework texture/sampler binding interfaceKeith Whitwell2008-03-051-0/+3
| | | | | Bind all the samplers/textures at once rather than piecemeal. This is easier for drivers to understand.
* gallium: new draw stage for polygon stipple.Brian2008-02-211-0/+7
| | | | | | | | For hardware without native polygon stipple. Create a 32x32 alpha texture that encodes the stipple pattern. Modify the user's fragment program to sample the texture (with gl_FragCoord) and kill the fragment according to the texel value. Temporarily enabled in softpipe driver, replacing the sp_quad_stipple.c step.
* gallium: replace some ordinary assignments with pipe_reference_texture()Brian2008-02-201-1/+1
| | | | This fixes at least one instance of dereferencing an invalid texture pointer.
* Merge commit 'origin/gallium-0.1' into gallium-0.1Keith Whitwell2008-02-151-4/+4
| | | | | | | | 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-1/+1
| | | | | | | | | 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/+152
This is in a separate commit to ensure renames are properly preserved.