Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mesa: Remove SWcontext::_FogMode, use gl_context::gl_fog_attrib::Mode everywhere | Ian Romanick | 2011-04-25 | 1 | -1/+1 |
| | | | | Reviewed-by: Brian Paul <[email protected]> | ||||
* | Drop GLcontext typedef and use struct gl_context instead | Kristian Høgsberg | 2010-10-13 | 1 | -2/+2 |
| | |||||
* | swrast: Remove unnecessary headers. | Vinson Lee | 2010-07-31 | 1 | -1/+0 |
| | |||||
* | swrast: Remove _swrast_fog_ci_span and associated code | Ian Romanick | 2010-03-03 | 1 | -85/+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: silence double->float assignment warnings | Brian Paul | 2010-01-27 | 1 | -6/+6 |
| | | | | Reported by Karl Schultz. | ||||
* | swrast: replace macro with inline function | Brian Paul | 2009-01-30 | 1 | -2/+2 |
| | |||||
* | mesa: prefix a bunch of #include lines with "main/". | Brian Paul | 2008-09-18 | 1 | -4/+4 |
| | | | | | This is another step toward removing a whole bunch of -I flags from the cc commands. Still need to address driver code... | ||||
* | Implement gl_PointCoord attribute for GLSL fragment shaders. | Brian | 2007-10-24 | 1 | -1/+0 |
| | | | | Contains the normalized fragment position within a point sprite. | ||||
* | Overhaul/simplify SWvertex and SWspan attribute handling. | Brian | 2007-05-20 | 1 | -194/+141 |
| | | | | | Instead of separate fog/specular/texcoord/varying code, just treat all of them as generic attributes. Simplifies the point/line/triangle functions. | ||||
* | Replace color, z, w, texture interpolants with new generic attrib interpolants. | Brian | 2007-02-02 | 1 | -10/+10 |
| | |||||
* | New span attrStart/attrStepX/attrStepY fields to replace fog, specular, etc. ↵ | Brian | 2007-02-02 | 1 | -10/+10 |
| | | | | fields. More to come. | ||||
* | New SWspanarrays attribs[] array. | Brian | 2007-02-01 | 1 | -9/+9 |
| | | | | | | | Replace texcoord[], varying[], etc. arrays with single attribs[] array, indexed by FRAG_ATTRIB_* values. Eliminates need to copy data into fragment program machine input registers. Will lead to future clean-ups. | ||||
* | remove temp code | Brian Paul | 2006-10-19 | 1 | -22/+15 |
| | |||||
* | fix fog color bug | Brian Paul | 2006-10-17 | 1 | -3/+18 |
| | |||||
* | New SWspan and SWspanarrays typedefs. | Brian Paul | 2006-10-01 | 1 | -2/+2 |
| | |||||
* | Initial work for supporting different renderbuffer color depths at runtime. | Brian Paul | 2006-09-25 | 1 | -90/+139 |
| | |||||
* | additional wrapper updates, bug 4468 | Brian Paul | 2005-09-19 | 1 | -6/+6 |
| | |||||
* | use FABSF(fogCoord) to fix fog calculation problem (Soju Matsumoto) | Brian Paul | 2005-01-17 | 1 | -3/+3 |
| | |||||
* | Fix minor fog / fragment program state bug. | Brian Paul | 2004-10-13 | 1 | -6/+3 |
| | | | | Don't add diffuse and specular colors when using fragment program. | ||||
* | A few more tweaks to fog code. | Brian Paul | 2004-02-17 | 1 | -4/+8 |
| | | | | | Remove unneeded FABSF() macros. Added blend factor clamping in a few spots. | ||||
* | A bit of an overhaul of the fog code. | Brian Paul | 2004-02-17 | 1 | -189/+202 |
| | | | | | | glFogCoord didn't always work reliably. ARB fragment program fog options work now. Per-fragment fog computations are now perspective corrected. | ||||
* | Removed all RCS / CVS tags (Id, Header, Date, etc.) from everything. | Ian Romanick | 2003-06-05 | 1 | -1/+0 |
| | |||||
* | replace _mesa_ prefix with _swrast_, remove s_histogram.[ch] | Brian Paul | 2003-03-25 | 1 | -7/+7 |
| | |||||
* | Killed mmath.[ch]. Moved low-level functions/assembly code into imports.[ch] | Brian Paul | 2003-03-01 | 1 | -2/+1 |
| | | | | | Moved type conversion and interpolation macros into macros.h Updated all the files that used to include mmath.h | ||||
* | struct sw_span is again allocated on the stack, but the arrays of span | Brian Paul | 2002-08-07 | 1 | -10/+16 |
| | | | | | | | data are broken out into a new struct span_arrays which is allocated per-context (to avoid huge stack allocations - a problem on Windows). This lets us use span.redStep instead of span->redStep (for example) to hopefully get slightly better performance in the triangle functions. | ||||
* | Simplified fog code. | Brian Paul | 2002-02-17 | 1 | -146/+80 |
| | |||||
* | Converted line drawing over to new span code, pb no longer used. | Brian Paul | 2002-02-02 | 1 | -92/+7 |
| | | | | | Big clean-up of line drawing code. Removed many obsolete span processing functions. | ||||
* | More span improvements. Removed _mesa_write_monocolor_span(). | Brian Paul | 2002-01-28 | 1 | -4/+4 |
| | | | | | Removed last of span.filled* flags and Klaus's macros. More simplification of triangle functions. | ||||
* | More span clean-up, mostly texture-related. | Brian Paul | 2002-01-28 | 1 | -9/+2 |
| | | | | | _mesa_rasterize_span() is gone, replaced by new _mesa_write_textured_span(). Removed some unneeded triangle functions - more simplification possible. | ||||
* | LOTS of changes, building upon Klaus's work. | Brian Paul | 2002-01-27 | 1 | -17/+20 |
| | | | | | struct sw_span is used throughout span/fragment processing. This is leading to less code and more chances for optimization. | ||||
* | Klaus's latest patches and some clean-up | Brian Paul | 2002-01-21 | 1 | -13/+73 |
| | |||||
* | Replace old matrix stacks with new code based on struct matrix_stack. | Brian Paul | 2001-12-18 | 1 | -4/+5 |
| | | | | | | Moved vertex program hash table into shared context state. Implemented reference counting for vertex programs. Replaced tnl "ProjectedClip" with "Ndc" (normalized device coordinates). | ||||
* | first checkpoint commit of Klaus's new span code (struct sw_span) | Brian Paul | 2001-12-17 | 1 | -7/+111 |
| | |||||
* | silence compiler warnings (last batch for src) | Karl Schultz | 2001-09-19 | 1 | -12/+12 |
| | |||||
* | fix glDraw/CopyPixels w/ fog bug. minor fog code clean-ups. | Brian Paul | 2001-06-18 | 1 | -22/+56 |
| | |||||
* | interpolate fog valus as floats, not fixed - fixed the swrast fog problem | Brian Paul | 2001-05-03 | 1 | -28/+17 |
| | |||||
* | Consistent copyright info (version number, date) across all files. | Gareth Hughes | 2001-03-12 | 1 | -13/+12 |
| | |||||
* | fixed a bunch of g++ warnings/errors. Compiling with g++ can help find lots ↵ | Brian Paul | 2001-03-07 | 1 | -2/+2 |
| | | | | of potential problems | ||||
* | lots of gl_*() to _mesa_*() namespace clean-up | Brian Paul | 2001-03-03 | 1 | -2/+2 |
| | |||||
* | added divide by zero checks | Brian Paul | 2001-01-03 | 1 | -3/+12 |
| | |||||
* | More color macro clean-ups. | Brian Paul | 2001-01-03 | 1 | -4/+6 |
| | | | | FLOAT_TO_CHAN() macro removed. | ||||
* | minor GLchan-related changes | Brian Paul | 2001-01-02 | 1 | -9/+22 |
| | |||||
* | minor fog clean-ups (Klaus Niederkrueger) | Brian Paul | 2000-12-15 | 1 | -16/+19 |
| | |||||
* | replaced GLfixed with GLfloat in _mesa_fog_ci_pixels() (Klaus Niederkrueger) | Brian Paul | 2000-12-13 | 1 | -2/+2 |
| | |||||
* | rewrite of _mesa_win_fog_coords_from_z() so that both perspective and ↵ | Brian Paul | 2000-11-15 | 1 | -24/+85 |
| | | | | orthographic projection are handled correctly | ||||
* | Reorganized software rasterizer as a module which manages its own state, | Keith Whitwell | 2000-11-05 | 1 | -3/+4 |
| | | | | | | with tighter interfaces with the rest of the world. Proper documentation to come. | ||||
* | Moved software rasterizer functionality to new directory. | Keith Whitwell | 2000-10-31 | 1 | -0/+188 |