summaryrefslogtreecommitdiffstats
path: root/src/mesa/swrast
Commit message (Collapse)AuthorAgeFilesLines
* swrast: Remove redundant test of the visual's accumulation buffer sizeIan Romanick2010-03-051-5/+1
| | | | | | | | | | If the visual doesn't have an accumulation buffer, the renderbuffer passed into _swrast_clear_accum_buffer will be NULL anyway. There is no reason the check the visual. Moreover, the test erroneously checks the context's visual instead of the visual of the current DrawBuffer. With FBOs these may be different. Signed-off-by: Ian Romanick <[email protected]>
* swrast: Adjust colors based on ReadBuffer visual, not context visualIan Romanick2010-03-051-9/+9
| | | | | | | | In the presence of FBOs, the visual of the context may not match the, possibly fake, visual of the current ReadBuffer. Note that the caller of adjust_colors correctly uses the visual of the ReadBuffer. Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove stray comment that mentions ctx->VisualIan Romanick2010-03-051-1/+0
| | | | Signed-off-by: Ian Romanick <[email protected]>
* mesa: Eliminate index parameter to _mesa_feedback_vertexIan Romanick2010-03-031-1/+1
| | | | Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove _swrast_logicop_ci_spanIan Romanick2010-03-032-33/+0
| | | | | | | After all the recent color-index rendering removal, _swrast_logicop_ci_span is no longer used anywhere. Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove color-index rendering support from s_spantemp.hIan Romanick2010-03-031-15/+1
| | | | Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove SPAN_INDEXIan Romanick2010-03-031-7/+6
| | | | | | Also adjust the bits that appear after it to fill in the gap. Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove _swrast_read_index_spanIan Romanick2010-03-032-72/+0
| | | | | | | After all the recent color-index rendering removal, _swrast_read_index_span is no longer used anywhere. Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove _swrast_mask_ci_spanIan Romanick2010-03-032-36/+0
| | | | | | | After all the recent color-index rendering removal, _swrast_mask_ci_span is no longer used anywhere. Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove _swrast_fog_ci_span and associated codeIan Romanick2010-03-032-89/+0
| | | | | | | After all the recent color-index rendering removal, _swrast_fog_ci_span is no longer used anywhere. Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove _swrast_write_index_span and associated codeIan Romanick2010-03-032-278/+0
| | | | | | | After all the recent color-index rendering removal, _swrast_write_index_span is no longer used anywhere. Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove remaining color-index state tracking infrastructureIan Romanick2010-03-032-63/+39
| | | | Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove support for ReadPixels from a color-index bufferIan Romanick2010-03-031-65/+2
| | | | Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove support for Clear into a color-index bufferIan Romanick2010-03-031-103/+6
| | | | Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove support for rendering antialiased lines into a color-index bufferIan Romanick2010-03-032-73/+9
| | | | Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove support for rendering antialiased triangles into a ↵Ian Romanick2010-03-032-71/+1
| | | | | | color-index buffer Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove support for rendering lines into a color-index bufferIan Romanick2010-03-032-61/+5
| | | | Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove support for rendering points into a color-index bufferIan Romanick2010-03-031-40/+16
| | | | Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove support for rendering triangles into a color-index bufferIan Romanick2010-03-032-75/+4
| | | | Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove support for Bitmap into a color-index bufferIan Romanick2010-03-031-12/+3
| | | | Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove _swrast_write_zoomed_index_span and associated codeIan Romanick2010-03-032-50/+2
| | | | | | | | After removing support for CopyPixels and DrawPixels involving color-index buffers, _swrast_write_zoomed_index_span is no longer used. Removed it and all the support for COLOR_INDEX formats in zoom_span. Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove support for CopyPixels to / from a color-index bufferIan Romanick2010-03-031-112/+5
| | | | Signed-off-by: Ian Romanick <[email protected]>
* swrast: Remove support for DrawPixels into a color-index bufferIan Romanick2010-03-031-79/+2
| | | | Signed-off-by: Ian Romanick <[email protected]>
* swrast: add 0.5 bias in tex_array_slice() per the specBrian Paul2010-02-251-1/+1
|
* swrast: the only wrap mode for selecting texture array slices is clampBrian Paul2010-02-251-9/+20
|
* Replace the _mesa_*printf() wrappers with the plain libc versionsKristian Høgsberg2010-02-191-1/+1
|
* Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versionsKristian Høgsberg2010-02-194-44/+44
|
* mesa: replace _mesa_bzero() with memset()Brian Paul2010-02-193-12/+11
|
* mesa: replace old MEMCPY macro with memcpyBrian Paul2010-02-191-4/+4
|
* Remove _mesa_memset in favor of plain memset.Kenneth Graunke2010-02-193-5/+5
| | | | This may break the SUNOS4 build, but it's no longer relevant.
* Remove _mesa_memcpy in favor of plain memcpy.Kenneth Graunke2010-02-195-21/+21
| | | | This may break the SUNOS4 build, but it's no longer relevant.
* swrast: fix left side clippingBrian Paul2010-02-181-3/+36
| | | | | | | Fixes bug 26623. Original patch was submitted by Mathias Frohlich and modified by Brian. (cherry picked from commit 7c34c237a2f6732b2c013543523617e375c1f534)
* mesa: Fix compiler warningsKarl Schultz2010-02-134-6/+6
| | | | | Add explicit casts, fix constant types, fix variable types. Fixes about 340 warnings in MSFT Visual Studio.
* swrast: s/FIXED_TO_FLOAT/FixedToFloat/Brian Paul2010-01-271-2/+2
|
* swrast: silence double->float assignment warningsBrian Paul2010-01-2711-52/+53
| | | | Reported by Karl Schultz.
* swrast: Implement ARB_fragment_coord_conventions but don't enable.Eric Anholt2010-01-261-0/+10
| | | | | | | | | | | This brings swrast's support up to the state of gallium, and fixes the default center behavior of fragment.position.xy in piglit fp-arb-fragment-coord-conventions-none. The extension is not enabled currently because the GLSL part of the extension isn't supported, so piglit glsl-arb-fragment-coord-conventions-define fails as would any serious test of the GLSL part.
* Merge branch 'mesa_7_7_branch'Brian Paul2010-01-222-14/+34
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/gallium/auxiliary/draw/draw_context.c src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c src/gallium/auxiliary/pipebuffer/Makefile src/gallium/auxiliary/pipebuffer/SConscript src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c src/gallium/auxiliary/tgsi/tgsi_scan.c src/gallium/drivers/i915/i915_surface.c src/gallium/drivers/i915/i915_texture.c src/gallium/drivers/llvmpipe/lp_setup.c src/gallium/drivers/llvmpipe/lp_tex_sample_c.c src/gallium/drivers/llvmpipe/lp_texture.c src/gallium/drivers/softpipe/sp_prim_vbuf.c src/gallium/state_trackers/xorg/xorg_dri2.c src/gallium/winsys/drm/intel/gem/intel_drm_api.c src/gallium/winsys/drm/nouveau/drm/nouveau_drm_api.c src/gallium/winsys/drm/radeon/core/radeon_drm.c src/gallium/winsys/drm/vmware/core/vmw_screen_dri.c src/mesa/state_tracker/st_cb_clear.c
| * swrast: add missing call to _swrast_depth_bounds_test()Brian Paul2010-01-151-0/+7
| | | | | | | | | | | | | | | | We were calling this from the CI span function, but not the RGBA span function. I don't know of a test program for the GL_EXT_depth_bounds_test extension...
| * swrast: fix broken _swrast_depth_clamp_span()Brian Paul2010-01-151-14/+27
| | | | | | | | | | | | | | | | | | | | The integer Z clamping range depends on the number of bits in the Z buffer because that's the scale factor used when we transform NDC coords by the viewport/depth range. Fixes fd.o bug #25972 but only for Z buffers up to a depth of 30 bits. Beyond that we get into messy integer overflow issues and things fall apart.
* | Merge remote branch 'origin/opengl-es-v2'Chia-I Wu2010-01-201-6/+0
|\ \
| * \ Merge branch 'master' into opengl-es-v2Chia-I Wu2010-01-1215-104/+140
| |\ \ | | | | | | | | | | | | | | | | Conflicts: src/mesa/main/dd.h
| * | | mesa/main: Add more OpenGL ES types to glheader.h.Chia-I Wu2009-11-051-6/+0
| | | | | | | | | | | | | | | | Signed-off-by: Chia-I Wu <[email protected]>
* | | | Merge branch 'mesa_7_7_branch'Jakob Bornecrantz2010-01-1412-13/+0
|\ \ \ \ | |_|/ / |/| | / | | |/ | |/| | | | | | | Conflicts: src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c src/gallium/auxiliary/util/Makefile src/gallium/drivers/r300/r300_state_derived.c
| * | swrast: Remove unnecessary header from s_accum.c.Vinson Lee2010-01-131-1/+0
| | |
| * | swrast: Remove unnecessary header from s_atifragshader.c.Vinson Lee2010-01-131-1/+0
| | |
| * | swrast: Remove unnecessary header from s_bitmap.c.Vinson Lee2010-01-131-1/+0
| | |
| * | swrast: Remove unnecessary headers from s_copypix.c.Vinson Lee2010-01-131-2/+0
| | |
| * | swrast: Remove unnecessary header from s_depth.c.Vinson Lee2010-01-131-1/+0
| | |
| * | swrast: Remove unnecessary header from s_drawpix.c.Vinson Lee2010-01-131-1/+0
| | |
| * | swrast: Remove unnecessary header from s_feedback.c.Vinson Lee2010-01-131-1/+0
| | |