summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/softpipe/sp_context.c
Commit message (Collapse)AuthorAgeFilesLines
* softpipe: Replace GETENV by debug_get_bool_option.José Fonseca2008-06-101-2/+2
|
* gallium: Deprecate GETENV. Replace by debug_get_bool_option.José Fonseca2008-06-101-2/+2
| | | | | | debug_get_bool_option will interpret "n", "no", "0", "f", or "false" as FALSE; and everything else as TRUE. The default value (used when the variable is not set) is received as a parameter.
* draw: draw_range_elements trialKeith Whitwell2008-05-291-0/+1
|
* Merge branch 'gallium-vertex-linear' into gallium-tex-surfacesKeith Whitwell2008-05-281-5/+16
|\
| * softpipe: enable vbuf by defaultKeith Whitwell2008-05-271-3/+5
| | | | | | | | The non-vbuf option is going away...
| * softpipe: add failure paths for context creationKeith Whitwell2008-05-121-2/+11
| |
* | Merge branch 'gallium-0.1' into gallium-tex-surfacesKeith Whitwell2008-05-021-3/+1
|\ \ | |/
| * gallium: remove the unused softpipe_winsys codeBrian Paul2008-05-011-3/+1
| | | | | | | | The struct is still there though until all winsys layers are updated
* | gallium: tex surface checkpointKeith Whitwell2008-05-011-3/+3
|/
* gallium: test for new PIPE_ARCH_X86Brian Paul2008-04-291-1/+1
|
* gallium: plug in softpipe_set_edgeflags() functionBrian Paul2008-04-241-0/+2
|
* softpipe: implement SP_NO_RAST env varKeith Whitwell2008-04-221-0/+3
|
* gallium: get rid of bufloop quad stageBrian2008-04-071-2/+0
|
* gallium: Set vertex state/buffers en-mass.Brian Paul2008-03-291-2/+2
|
* gallium: remove DOS carriage returnsBrian2008-03-141-243/+243
|
* gallium: michel's patch to rework texture/sampler binding interfaceKeith Whitwell2008-03-051-243/+243
| | | | | Bind all the samplers/textures at once rather than piecemeal. This is easier for drivers to understand.
* gallium: move is_format_supported() to pipe_screen structBrian2008-02-271-26/+0
|
* gallium: start removing pipe_context->get_name/vendor/param/paramfBrian2008-02-271-25/+0
| | | | | These are now per-screen functions, not per-context. State tracker updated, code in drivers and p_context.h disabled.
* gallium: implement pipe_screen for softpipe driverBrian2008-02-271-54/+10
|
* gallium: softpipe_init_texture_funcs(), make texture func staticBrian2008-02-271-6/+1
|
* gallium: replace draw_convert_wide_points() with draw_wide_point_threshold()Brian2008-02-261-3/+0
| | | | | | | Specifying a threshold size is a bit more flexible, and allows the option of converting even 1-pixel points to triangles (set threshold=0). Also, remove 0.25 pixel bias in wide_point().
* gallium: new draw stage for polygon stipple.Brian2008-02-211-0/+5
| | | | | | | | 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: new AA point drawing stageBrian2008-02-211-1/+5
| | | | | | | AA points are drawn by converting the point to a quad, then modifying the user's fragment shader to compute a coverage value. The final fragment color's alpha is modulated by the coverage value. Fragments outside the point's radius are killed.
* gallium: new pipe->texture_update() functionBrian2008-02-201-0/+1
| | | | | Called whenever texture data is changed (glTexImage, glTexSubImage, glCopyTexSubImage, etc).
* gallium: antialiased line drawingBrian2008-02-181-0/+3
| | | | | | 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-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/+333
This is in a separate commit to ensure renames are properly preserved.