Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | swrast: define, use SWRAST_MAX_WIDTH/HEIGHT | Brian Paul | 2012-02-24 | 1 | -1/+1 |
| | | | | We'll get rid of MAX_WIDTH, MAX_HEIGHT soon. | ||||
* | swrast: initial multi-threaded span rendering | Andreas Fänger | 2011-08-11 | 1 | -30/+42 |
| | | | | | | | | Optional parallel rendering of spans using OpenMP. Initial implementation for aa triangles. A new option for scons is also provided to activate the openmp support (off by default). Signed-off-by: Brian Paul <[email protected]> | ||||
* | Drop GLcontext typedef and use struct gl_context instead | Kristian Høgsberg | 2010-10-13 | 1 | -1/+1 |
| | |||||
* | swrast: Remove support for rendering antialiased triangles into a ↵ | Ian Romanick | 2010-03-03 | 1 | -52/+0 |
| | | | | | | color-index buffer Signed-off-by: Ian Romanick <[email protected]> | ||||
* | mesa: Fix compiler warnings | Karl Schultz | 2010-02-13 | 1 | -2/+2 |
| | | | | | Add explicit casts, fix constant types, fix variable types. Fixes about 340 warnings in MSFT Visual Studio. | ||||
* | swrast: silence double->float assignment warnings | Brian Paul | 2010-01-27 | 1 | -4/+4 |
| | | | | Reported by Karl Schultz. | ||||
* | fix broken two-sided stencil | Brian | 2007-11-30 | 1 | -1/+4 |
| | |||||
* | fix out-of-bounds array index (ix=-1) | Brian | 2007-11-19 | 1 | -2/+3 |
| | |||||
* | simplify INIT_SPAN code | Brian | 2007-06-29 | 1 | -1/+2 |
| | |||||
* | Overhaul/simplify SWvertex and SWspan attribute handling. | Brian | 2007-05-20 | 1 | -181/+68 |
| | | | | | Instead of separate fog/specular/texcoord/varying code, just treat all of them as generic attributes. Simplifies the point/line/triangle functions. | ||||
* | additional checks that attr is a texcoord | Keith Packard | 2007-04-28 | 1 | -3/+3 |
| | |||||
* | s/DO_TEXVAR/DO_ATTRIBS/ | Brian | 2007-04-24 | 1 | -9/+9 |
| | |||||
* | remove SWvertex->fog field, use attrib field | Brian | 2007-04-23 | 1 | -1/+5 |
| | |||||
* | Improve the code for interpolating fragment attributes a little. More to ↵ | Brian | 2007-04-23 | 1 | -76/+60 |
| | | | | come... | ||||
* | Merge SWvertex texcoord and varying fields into attrib[] array field. | Brian | 2007-02-05 | 1 | -130/+87 |
| | | | | | Fragment texcoords and varying code is now unified in the point/line/triangle rasterization code. In the future, merge color, fog, etc. attribs. | ||||
* | New SWspanarrays attribs[] array. | Brian | 2007-02-01 | 1 | -19/+20 |
| | | | | | | | 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. | ||||
* | New SWspan and SWspanarrays typedefs. | Brian Paul | 2006-10-01 | 1 | -5/+5 |
| | |||||
* | compute z[i] as GLuint | Brian Paul | 2005-09-20 | 1 | -2/+2 |
| | |||||
* | removed GL_HP_occlusion_test extension | Brian Paul | 2005-08-25 | 1 | -6/+2 |
| | |||||
* | Consolidate _swrast_write_texture_span() into _swrast_write_rgba_span(). | Brian Paul | 2004-12-18 | 1 | -11/+6 |
| | |||||
* | remove unneeded casts | Brian Paul | 2004-03-09 | 1 | -2/+2 |
| | |||||
* | Consolidate texObj->Pos/Neg/X/Y/Z and texObj->Image into a single | Keith Whitwell | 2004-01-27 | 1 | -2/+2 |
| | | | | array, texObj->Image[face][level]. | ||||
* | s/_backface_sign/_BackfaceSign/ | Brian Paul | 2003-09-18 | 1 | -1/+1 |
| | |||||
* | 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 |
| | |||||
* | use IROUND to convert depth values from float to int (bug 690728) | Brian Paul | 2003-02-21 | 1 | -3/+3 |
| | |||||
* | move ltor computation | Brian Paul | 2003-01-28 | 1 | -2/+2 |
| | |||||
* | use COPY_CHAN4 macro | Brian Paul | 2003-01-20 | 1 | -3/+3 |
| | |||||
* | use R/G/B/ACOMP indexes (Evgeny Kotsuba) | Brian Paul | 2003-01-20 | 1 | -9/+9 |
| | |||||
* | First batch of code for GL_NV_fragment_program. | Brian Paul | 2003-01-14 | 1 | -7/+8 |
| | | | | | Re-org of some GL_NV_vertex_program code. Replace MAX_TEXTURE_UNITS with MAX_TEXTURE_COORD_UNITS and MAX_TEXTURE_IMAGE_UNITS. | ||||
* | struct sw_span is again allocated on the stack, but the arrays of span | Brian Paul | 2002-08-07 | 1 | -75/+79 |
| | | | | | | | 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. | ||||
* | Allocate a sw_span struct in the swrast context instead of allocating it | Brian Paul | 2002-04-19 | 1 | -76/+75 |
| | | | | | on the stack frame in the point/line/triangle functions. (Klaus Niederkrueger) This should solve the performance problem Karl found on Windows. | ||||
* | Klaus Niederkrueger's latest changes: use INIT_SPAN() to init span primitive | Brian Paul | 2002-04-12 | 1 | -9/+9 |
| | | | | type, width, interp mask and array mask. | ||||
* | New mipmap lambda calculation. Previously, trilinear filtering could | Brian Paul | 2002-03-16 | 1 | -10/+13 |
| | | | | | result in _very_ blurry textures. Still need to do some optimization of the new code in s_span.c | ||||
* | More span improvements. Removed _mesa_write_monocolor_span(). | Brian Paul | 2002-01-28 | 1 | -2/+1 |
| | | | | | 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 | -91/+39 |
| | | | | | _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 | -70/+106 |
| | | | | | struct sw_span is used throughout span/fragment processing. This is leading to less code and more chances for optimization. | ||||
* | first checkpoint commit of Klaus's new span code (struct sw_span) | Brian Paul | 2001-12-17 | 1 | -137/+107 |
| | |||||
* | add inf and nan tests to swrast functions | Keith Whitwell | 2001-12-05 | 1 | -2/+2 |
| | |||||
* | silence compiler warnings (last batch for src) | Karl Schultz | 2001-09-19 | 1 | -4/+4 |
| | |||||
* | undo previous check-in (unfinished code) | Brian Paul | 2001-07-13 | 1 | -274/+246 |
| | |||||
* | assorted changes for supporting GLfloat color channels (not done) | Brian Paul | 2001-07-13 | 1 | -246/+274 |
| | |||||
* | minor clean-ups | Brian Paul | 2001-06-05 | 1 | -11/+10 |
| | |||||
* | GLubyte -> GLchan fix | Brian Paul | 2001-05-30 | 1 | -3/+3 |
| | |||||
* | use DEFARRAY, etc macros to work around 32k data limit on Macs (Tom Goon) | Brian Paul | 2001-05-16 | 1 | -13/+41 |
| | |||||
* | Apply antialiasing coverage factor to alpha after texture application, | Brian Paul | 2001-05-15 | 1 | -49/+62 |
| | | | | not before. | ||||
* | minor clean-ups and more comments | Brian Paul | 2001-05-15 | 1 | -10/+31 |
| | |||||
* | redo previous change in a more defensive way | Brian Paul | 2001-05-10 | 1 | -5/+7 |
| | |||||
* | added check for zero-length spans, avoids potential problems later | Brian Paul | 2001-05-10 | 1 | -1/+7 |
| | |||||
* | sample plane equations at fragment centers, not lower-left corner | Brian Paul | 2001-05-07 | 1 | -37/+41 |
| |