| Commit message (Expand) | Author | Age | Files | Lines |
* | Header file clean-up: | Brian Paul | 2002-10-24 | 1 | -2/+2 |
* | Another round of glRead/DrawBuffer() clean-ups and simplifications. | Brian Paul | 2002-10-11 | 1 | -25/+7 |
* | finished up GL_EXT_stencil_two_side | Brian Paul | 2002-10-02 | 1 | -7/+4 |
* | GL_EXT_stencil_two_side extension, not 100% complete yet. | Brian Paul | 2002-09-06 | 1 | -12/+10 |
* | struct sw_span is again allocated on the stack, but the arrays of span | Brian Paul | 2002-08-07 | 1 | -120/+130 |
* | Overhaul of glRead/DrawBuffer() code. Now, swrast->Driver.SetBuffer() | Brian Paul | 2002-07-09 | 1 | -19/+19 |
* | Implemented GL_NV_texture_rectangle extension. | Brian Paul | 2002-06-15 | 1 | -7/+7 |
* | Added ctx parameter to _mesa_debug() | Brian Paul | 2002-06-15 | 1 | -1/+23 |
* | Implemented GL_ARB_texture_env_crossbar. | Brian Paul | 2002-05-02 | 1 | -3/+3 |
* | fixed Width/Height cut&paste typo | Brian Paul | 2002-04-20 | 1 | -3/+3 |
* | removed a stray debug printf | Brian Paul | 2002-04-19 | 1 | -2/+1 |
* | casts to fix GLint/GLuint mismatches | Brian Paul | 2002-04-19 | 1 | -16/+21 |
* | Klaus Niederkrueger's latest changes: use INIT_SPAN() to init span primitive | Brian Paul | 2002-04-12 | 1 | -20/+26 |
* | New mipmap lambda calculation. Previously, trilinear filtering could | Brian Paul | 2002-03-16 | 1 | -138/+121 |
* | Simplified fog code. | Brian Paul | 2002-02-17 | 1 | -40/+9 |
* | Optimized the interpolate_texcoords() function: | Brian Paul | 2002-02-17 | 1 | -38/+148 |
* | GL_ARB_window_pos fog fix | Brian Paul | 2002-02-15 | 1 | -5/+2 |
* | minor clean-up | Brian Paul | 2002-02-14 | 1 | -6/+7 |
* | added an assertion, fix typo | Brian Paul | 2002-02-06 | 1 | -3/+7 |
* | Clean-up and remove dead code related to depth/stecil testing. | Brian Paul | 2002-02-04 | 1 | -22/+21 |
* | Converted line drawing over to new span code, pb no longer used. | Brian Paul | 2002-02-02 | 1 | -9/+59 |
* | sw_span can now hold x/y arrays of fragment positions - getting ready to | Brian Paul | 2002-02-02 | 1 | -161/+249 |
* | Clean-up and optimize alpha test code. | Brian Paul | 2002-01-31 | 1 | -17/+16 |
* | Still more texture/span simplification and clean-up. | Brian Paul | 2002-01-28 | 1 | -7/+6 |
* | More span improvements. Removed _mesa_write_monocolor_span(). | Brian Paul | 2002-01-28 | 1 | -263/+136 |
* | More span clean-up, mostly texture-related. | Brian Paul | 2002-01-28 | 1 | -729/+126 |
* | LOTS of changes, building upon Klaus's work. | Brian Paul | 2002-01-27 | 1 | -902/+478 |
* | Klaus's latest patches and some clean-up | Brian Paul | 2002-01-21 | 1 | -51/+56 |
* | latest changes from Klaus | Brian Paul | 2002-01-16 | 1 | -1/+141 |
* | Klaus's latest patches: change texcoord[3] to texcoord[4] everywhere | Brian Paul | 2002-01-10 | 1 | -5/+5 |
* | first checkpoint commit of Klaus's new span code (struct sw_span) | Brian Paul | 2001-12-17 | 1 | -556/+878 |
* | More span rendering optimizations from Klaus Niederkrueger | Brian Paul | 2001-11-19 | 1 | -15/+667 |
* | added a few comments | Brian Paul | 2001-10-17 | 1 | -1/+9 |
* | Fixes for 32-bit GLchans: smooth/flat/textured triangles seem to work now. | Brian Paul | 2001-08-14 | 1 | -3/+3 |
* | don't clamp colors if GLchan==GLfloat in add_colors() | Brian Paul | 2001-07-23 | 1 | -1/+8 |
* | fix glDraw/CopyPixels w/ fog bug. minor fog code clean-ups. | Brian Paul | 2001-06-18 | 1 | -1/+3 |
* | Apply antialiasing coverage factor to alpha after texture application, | Brian Paul | 2001-05-15 | 1 | -59/+113 |
* | interpolate fog valus as floats, not fixed - fixed the swrast fog problem | Brian Paul | 2001-05-03 | 1 | -7/+7 |
* | Split driver struct into swrast/tnl/core components. | Keith Whitwell | 2001-03-19 | 1 | -13/+16 |
* | Consistent copyright info (version number, date) across all files. | Gareth Hughes | 2001-03-12 | 1 | -26/+26 |
* | lots of gl_*() to _mesa_*() namespace clean-up | Brian Paul | 2001-03-03 | 1 | -9/+9 |
* | Implemented GL_SGIX_shadow and GL_SGIX_shadow_texture. | Brian Paul | 2001-02-20 | 1 | -7/+9 |
* | minor scissor optimizations (Klaus Niederkrueger) | Brian Paul | 2001-02-15 | 1 | -20/+24 |
* | removed a misplaced _mesa_logicop_ci_span() call | Brian Paul | 2001-02-14 | 1 | -6/+2 |
* | Fixed bug in MinMagThresh computation. | Brian Paul | 2001-01-05 | 1 | -6/+7 |
* | clipping, fog, texture optimizations (Klaus Niederkrueger) | Brian Paul | 2000-12-12 | 1 | -127/+156 |
* | Removed Driver.Color() and Driver.Index() functions. | Brian Paul | 2000-11-14 | 1 | -3/+3 |
* | Cleanup of derived state calculation prior to seperating software T&L | Keith Whitwell | 2000-11-13 | 1 | -11/+14 |
* | Reorganized software rasterizer as a module which manages its own state, | Keith Whitwell | 2000-11-05 | 1 | -30/+38 |
* | Moved software rasterizer functionality to new directory. | Keith Whitwell | 2000-10-31 | 1 | -0/+1109 |