Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-06-29 | simplify INIT_SPAN code | Brian | |
2007-05-20 | Overhaul/simplify SWvertex and SWspan attribute handling. | Brian | |
Instead of separate fog/specular/texcoord/varying code, just treat all of them as generic attributes. Simplifies the point/line/triangle functions. | |||
2007-04-28 | additional checks that attr is a texcoord | Keith Packard | |
2007-04-24 | s/DO_TEXVAR/DO_ATTRIBS/ | Brian | |
2007-04-23 | remove SWvertex->fog field, use attrib field | Brian | |
2007-04-23 | Improve the code for interpolating fragment attributes a little. More to ↵ | Brian | |
come... | |||
2007-02-05 | Merge SWvertex texcoord and varying fields into attrib[] array field. | Brian | |
Fragment texcoords and varying code is now unified in the point/line/triangle rasterization code. In the future, merge color, fog, etc. attribs. | |||
2007-02-01 | New SWspanarrays attribs[] array. | Brian | |
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. | |||
2006-10-01 | New SWspan and SWspanarrays typedefs. | Brian Paul | |
2005-09-20 | compute z[i] as GLuint | Brian Paul | |
2005-08-25 | removed GL_HP_occlusion_test extension | Brian Paul | |
2004-12-18 | Consolidate _swrast_write_texture_span() into _swrast_write_rgba_span(). | Brian Paul | |
2004-03-09 | remove unneeded casts | Brian Paul | |
2004-01-27 | Consolidate texObj->Pos/Neg/X/Y/Z and texObj->Image into a single | Keith Whitwell | |
array, texObj->Image[face][level]. | |||
2003-09-18 | s/_backface_sign/_BackfaceSign/ | Brian Paul | |
2003-06-05 | Removed all RCS / CVS tags (Id, Header, Date, etc.) from everything. | Ian Romanick | |
2003-03-25 | replace _mesa_ prefix with _swrast_, remove s_histogram.[ch] | Brian Paul | |
2003-02-21 | use IROUND to convert depth values from float to int (bug 690728) | Brian Paul | |
2003-01-28 | move ltor computation | Brian Paul | |
2003-01-20 | use COPY_CHAN4 macro | Brian Paul | |
2003-01-20 | use R/G/B/ACOMP indexes (Evgeny Kotsuba) | Brian Paul | |
2003-01-14 | First batch of code for GL_NV_fragment_program. | Brian Paul | |
Re-org of some GL_NV_vertex_program code. Replace MAX_TEXTURE_UNITS with MAX_TEXTURE_COORD_UNITS and MAX_TEXTURE_IMAGE_UNITS. | |||
2002-08-07 | struct sw_span is again allocated on the stack, but the arrays of span | Brian Paul | |
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. | |||
2002-04-19 | Allocate a sw_span struct in the swrast context instead of allocating it | Brian Paul | |
on the stack frame in the point/line/triangle functions. (Klaus Niederkrueger) This should solve the performance problem Karl found on Windows. | |||
2002-04-12 | Klaus Niederkrueger's latest changes: use INIT_SPAN() to init span primitive | Brian Paul | |
type, width, interp mask and array mask. | |||
2002-03-16 | New mipmap lambda calculation. Previously, trilinear filtering could | Brian Paul | |
result in _very_ blurry textures. Still need to do some optimization of the new code in s_span.c | |||
2002-01-28 | More span improvements. Removed _mesa_write_monocolor_span(). | Brian Paul | |
Removed last of span.filled* flags and Klaus's macros. More simplification of triangle functions. | |||
2002-01-28 | More span clean-up, mostly texture-related. | Brian Paul | |
_mesa_rasterize_span() is gone, replaced by new _mesa_write_textured_span(). Removed some unneeded triangle functions - more simplification possible. | |||
2002-01-27 | LOTS of changes, building upon Klaus's work. | Brian Paul | |
struct sw_span is used throughout span/fragment processing. This is leading to less code and more chances for optimization. | |||
2001-12-17 | first checkpoint commit of Klaus's new span code (struct sw_span) | Brian Paul | |
2001-12-05 | add inf and nan tests to swrast functions | Keith Whitwell | |
2001-09-19 | silence compiler warnings (last batch for src) | Karl Schultz | |
2001-07-13 | undo previous check-in (unfinished code) | Brian Paul | |
2001-07-13 | assorted changes for supporting GLfloat color channels (not done) | Brian Paul | |
2001-06-05 | minor clean-ups | Brian Paul | |
2001-05-30 | GLubyte -> GLchan fix | Brian Paul | |
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-15 | minor clean-ups and more comments | Brian Paul | |
2001-05-10 | redo previous change in a more defensive way | Brian Paul | |
2001-05-10 | added check for zero-length spans, avoids potential problems later | Brian Paul | |
2001-05-07 | sample plane equations at fragment centers, not lower-left corner | Brian Paul | |
2001-05-03 | interpolate fog valus as floats, not fixed - fixed the swrast fog problem | Brian Paul | |
2001-03-28 | check for startX off the right edge of the window | Brian Paul | |
2001-03-12 | Consistent copyright info (version number, date) across all files. | Gareth Hughes | |
2001-03-07 | fixed a bunch of g++ warnings/errors. Compiling with g++ can help find lots ↵ | Brian Paul | |
of potential problems | |||
2001-03-03 | lots of gl_*() to _mesa_*() namespace clean-up | Brian Paul | |
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-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-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. |