summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-05-10gallium: optimize the flush_spans() functionBrian
2008-05-10gallium: remove unused codeBrian
2008-05-09draw: Fix number of vertices allocated in draw_pt_emit().Michel Dänzer
2008-05-09draw: mimize cost of translate key compares, use cache universallyKeith Whitwell
2008-05-09translate: helper functions for mimizing cost of key comparesKeith Whitwell
2008-05-08draw: only fill in / compare the part of the translate key we're using.Keith Whitwell
It's quite a big struct & we examine it a lot (too much). Reduce the impact of this by just looking at the active part where possible.
2008-05-08xlib: more SP_NO_RAST supportKeith Whitwell
For some resaon normal (non-display-buffer) buffers are being allocated through Xshm... Bypass at least for SP_NO_RAST
2008-05-08softpipe: don't calc det if NO_RAST setKeith Whitwell
2008-05-08cso_cache: Fix test for currently bound blend state.Michel Dänzer
2008-05-07mesa: update/add newer GL ES headersBrian Paul
2008-05-06mesa: free shader program data before deleting shader objects.Brian
Picked from master. Fixes mem corruption seen when glean/api2 test exits.
2008-05-06gallium: implement full reference counting for vertex/fragment programsBrian
Use _mesa_reference_vert/fragprog() wherever we assign program pointers. Fixes a memory corruption bug found with glean/api2 test. Another memory bug involving shaders yet to be fixed...
2008-05-06mesa: comments, whitespaceBrian
2008-05-06gallium: change calculate_first_last_level() to match gallium-tex-surfaces ↵Brian Paul
branch
2008-05-05fix _mesa_ffs for alternative compilersAlan Hourihane
2008-05-05declare atoms as externAlan Hourihane
2008-05-03gallium: fix warningsBrian Paul
2008-05-03Press <space> to reset limit/bias values, clean-up limit/bias printfBrian Paul
2008-05-03gallium: fix sampler->max_lod computationBrian Paul
2008-05-03gallium: fix computation of sampler->min_lodBrian Paul
The texture BaseLevel is accounted for in texture layout so it doesn't factor in here. May also need to adjust max_lod...
2008-05-02gallium: remove 0.5 vertex biases in set_vertex_data()Brian Paul
These should not be needed and were causing garbage to appear along the edges of the mipmap images.
2008-05-02gallium: remove obsolete PIPE_CAP_BITMAP_TEXCOORD_BIASBrian Paul
2008-05-02gallium: minor code, comments clean-upBrian Paul
2008-05-02gallium: in st_finalize_texture() check texture dimensionsBrian Paul
Check dimensions in addition to target, format, etc. Fixes a bug where we failed to detect a change in texture image sizes and wound up using the old texture data.
2008-05-02gallium: new debug code (disabled)Brian Paul
2008-05-02gallium: fix typos, comments, whitespaceBrian Paul
2008-05-02gallium: remove ^M (CR) charsBrian Paul
2008-05-02gallium: code movement (XSHM code)Brian Paul
2008-05-02set TextureID = NULL after deleting the arrayBrian Paul
2008-05-02gallium: comments, clean-upsBrian Paul
2008-05-02gallium: Reallocate pipe_texture in st_TexImage if the texture object was used.Michel Dänzer
Fixes problems with interleaved glTexImage and rendering calls.
2008-05-02snprintf -> util_snprintfAlan Hourihane
2008-05-02tgsi: Enable fast high precision rsqrt.Michal Krol
2008-05-02tgsi: Implement fast rsqrtf. Not tested, inactive.Keith Whitwell
2008-05-02revert mode change back to 644Alan Hourihane
2008-05-02inline -> INLINEAlan Hourihane
2008-05-02Some changed for non-C99 compilersAlan Hourihane
2008-05-02tgsi: Do not assume IN and OUT registers are declared sequentially.Michal Krol
2008-05-02tgsi: Fix build on Win32.Michal Krol
2008-05-02tgsi: Dump destination register modulate modifier.Michal Krol
2008-05-01gallium: temporarily disable broken SSE2 code for ARL opcodeBrian
2008-05-01gallium: implement TGSI_OPCODE_EXPBrian
2008-05-01gallium: implement TGSI_OPCODE_LOGBrian
2008-05-01added cast for MSVCBrian Paul
2008-05-01gallium: remove the unused softpipe_winsys codeBrian Paul
The struct is still there though until all winsys layers are updated
2008-05-01tgsi: remove some bogus win vs. linux crudKeith Whitwell
Pass arguments properly in linux now. Still need to change this to use a single calling convention on both platforms.
2008-05-01rtasm: learn another version of pushKeith Whitwell
2008-05-01draw: label fn args -- shouldn't this be defined where the fn is created?Keith Whitwell
2008-05-01rtasm: fix labels after (not so) recent change to allow dynamic fn growthKeith Whitwell
Using char * for labels doesn't work if you realloc the function during assembly and free the old storage...
2008-05-01i915: avoid crashing on bad parameterKeith Whitwell