Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-07-23 | GLchan and GL_ADD clamping changes (Klaus Niederkrueger) | Brian Paul | |
2001-07-14 | more work on float colors (still not finished) | Brian Paul | |
2001-07-13 | assorted changes for supporting GLfloat color channels (not done) | Brian Paul | |
2001-07-09 | fixed flat shading bug in affine_ and persp_textured_triangle() functions | Brian Paul | |
2001-07-09 | added missing \'s | Brian Paul | |
2001-06-26 | optimized texture triangle updates (Klaus Niederkrueger) | Brian Paul | |
2001-05-17 | Fix order of decomposition of quad. | Keith Whitwell | |
Remove 'swrast->_MultiTexEnabled' derived value. | |||
2001-05-16 | use DEFARRAY, etc macros to work around 32k data limit on Macs (Tom Goon) | Brian Paul | |
2001-05-15 | Apply antialiasing coverage factor to alpha after texture application, | Brian Paul | |
not before. | |||
2001-05-14 | New triangle rasterization code. Store per-span initial/step values in the | Brian Paul | |
new triangle_span struct. Much cleaner code and possibilities for future optimizations. | |||
2001-05-03 | interpolate fog valus as floats, not fixed - fixed the swrast fog problem | Brian Paul | |
2001-03-29 | Removed DD_Z_NEVER. | Brian Paul | |
Replaced SEPERATE with SEPARATE. Renumbered _NEW_ flags. Removed _NEW_COLORTABLE. | |||
2001-03-28 | simplify test for specific texture formats | Brian Paul | |
2001-03-28 | More texture format updates. Drivers now need only plug an appropriate | Gareth Hughes | |
format into texImage->TexFormat, the rest is handled by core Mesa. | |||
2001-03-22 | clean-up in _swrast_choose_triangle() | Brian Paul | |
2001-03-19 | Split driver struct into swrast/tnl/core components. | Keith Whitwell | |
2001-03-17 | Remove dead #define. | Keith Whitwell | |
Add case for triangles culled front and back -- not handled by the culling code inside swrast triangle routines. | |||
2001-03-12 | Consistent copyright info (version number, date) across all files. | Gareth Hughes | |
2001-03-08 | do fog interpolation if INTERP_FOG is defined, not when INTERP_Z is defined | Brian Paul | |
2001-03-08 | More g++ warning fixes. Fixes for CHAN_BITS==16, it seems to work. | Brian Paul | |
2001-03-03 | lots of gl_*() to _mesa_*() namespace clean-up | Brian Paul | |
2001-03-03 | optimized lambda calculation (Klaus Niederkrueger) | Brian Paul | |
2001-02-16 | Allow swrast to cope (fairly) cleanly with GL_SEPERATE_SPECULAR when | Keith Whitwell | |
texturing is not enabled, and without requiring the two colors be added externally. As a part of this, collapsed the decomposition of quads into triangles inside swrast to be hardwired into _swrast_Quad; removed s_quads.[ch]. Removed checks on texture state from t_vb_light.c, which was previously required by swrast. Moved the t_dd_ templates to a new directory. | |||
2001-02-07 | added divide by zero checks | Brian Paul | |
2001-02-06 | Overhaul of texture image handling. | Brian Paul | |
1. gl_texture_image struct's Data pointer points to images in driver's format. 2. Added FetchTexel() function pointer to struct gl_texture_image. 3. Changed Driver Tex[Sub]Image functions, return void now. 4. Texture storage/fetch code in new texstore.c file. 5. Removed texture.[ch] - functions moved to state.c Note: FX driver updates not finished yet. | |||
2001-01-29 | optimized lambda computation (Klaus Niederkrueger) | Brian Paul | |
2001-01-23 | Replaced struct gl_visual with struct __GLcontextModesRec from glcore.h. | Brian Paul | |
Replace "RGBAMode" with "rgbMode", etc. Other minor clean-ups. | |||
2001-01-05 | Remove 'pv' parameter from Line/Tri/Point funcs. The provoking vertex | Keith Whitwell | |
is always the last vertex parameter. Modify clipping to preserve pv colors. Modify swrast and X11 driver to expect the pv in the last vertex (was looking in the first vertex previously). Remove all handling of flatshading from swrast_setup. Allow drivers to override the unclipped render tabs in tnl_render_stage directly. (Like in 3.4). Removed fxsimplerender stage. Modified t_vb_rendertmp.h to remove the need for 'parity' arguments in RENDER_TRI macros. | |||
2000-12-12 | disabled two optimized textured triangle functions because of texcoord ↵ | Brian Paul | |
interpolation errors | |||
2000-11-21 | minor clean-ups | Brian Paul | |
2000-11-19 | Replaced Texture.CurrentD[] with separate Texture.Current1/2/3D vars. | Brian Paul | |
Completely removed the dirty texture object list. Set texObj->Complete to GL_FALSE to indicate dirty. Made point/line/triangle/quad SWvertex parameters const. Minor code clean-ups. | |||
2000-11-14 | Removed Driver.Color() and Driver.Index() functions. | Brian Paul | |
Pass color or color index directly to WriteMono*() span functions. Updated current s/w drivers accordingly. Clean-up of X gc handling in XMesa driver. | |||
2000-11-13 | Cleanup of derived state calculation prior to seperating software T&L | Keith Whitwell | |
into a new directory. Specifically the handling of changes to lighting lighting space (light in model vs. light in eye) have been revamped. Moved several derived values used only by swrast into that directory. Removed direct calls to swrast_flush() from vbrender.c -- pushed into ctx->Driver.RenderFinish. Optimized flat-shading case in swrast_setup. | |||
2000-11-05 | Reorganized software rasterizer as a module which manages its own state, | Keith Whitwell | |
with tighter interfaces with the rest of the world. Proper documentation to come. | |||
2000-10-31 | Moved software rasterizer functionality to new directory. | Keith Whitwell | |