Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mesa: remove outdated version lines in comments | Rico Schüller | 2013-06-05 | 1 | -1/+0 |
| | | | | Signed-off-by: Brian Paul <[email protected]> | ||||
* | mesa: Restore 78-column wrapping of license text in C-style comments. | Kenneth Graunke | 2013-04-23 | 1 | -3/+4 |
| | | | | | | | | | | | | | | The previous commit introduced extra words, breaking the formatting. This text transformation was done automatically via the following shell command: $ git grep 'THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY' | sed 's/:.*$//' | xargs -I {} sh -c 'vim -e -s {} < vimscript where 'vimscript' is a file containing: /THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY/;/\*\// !fmt -w 78 -p ' * ' :wq Reviewed-by: Brian Paul <[email protected]> | ||||
* | mesa: Add "OR COPYRIGHT HOLDERS" to license text disclaiming liability. | Kenneth Graunke | 2013-04-23 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | This brings the license text in line with the MIT License as published on the Open Source Initiative website: http://opensource.org/licenses/mit-license.php Generated automatically be the following shell command: $ git grep 'THE AUTHORS BE LIABLE' | sed 's/:.*$//g' | xargs -I '{}' \ sed -i 's/THE AUTHORS/THE AUTHORS OR COPYRIGHT HOLDERS/' {} This introduces some wrapping issues, to be fixed in the next commit. Reviewed-by: Brian Paul <[email protected]> | ||||
* | mesa: Change "BRIAN PAUL" to "THE AUTHORS" in license text. | Kenneth Graunke | 2013-04-23 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Generated automatically be the following shell command: $ git grep 'BRIAN PAUL BE LIABLE' | sed 's/:.*$//g' | xargs -I '{}' \ sed -i 's/BRIAN PAUL/THE AUTHORS/' {} The intention here is to protect all authors, not just Brian Paul. I believe that was already the sensible interpretation, but spelling it out is probably better. More practically, it also prevents people from accidentally copy & pasting the license into a new file which says Brian is not liable when he isn't even one of the authors. Reviewed-by: Brian Paul <[email protected]> | ||||
* | Replace gl_frag_attrib enum with gl_varying_slot. | Paul Berry | 2013-03-15 | 1 | -100/+100 |
| | | | | | | | | | | | | This patch makes the following search-and-replace changes: gl_frag_attrib -> gl_varying_slot FRAG_ATTRIB_* -> VARYING_SLOT_* FRAG_BIT_* -> VARYING_BIT_* Reviewed-by: Kenneth Graunke <[email protected]> Reviewed-by: Eric Anholt <[email protected]> Tested-by: Brian Paul <[email protected]> | ||||
* | swast: replace renderbuffer->GetPointer() with _swrast_pixel_address() | Brian Paul | 2011-12-24 | 1 | -1/+1 |
| | | | | Reviewed-by: Eric Anholt <[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 triangles into a color-index buffer | Ian Romanick | 2010-03-03 | 1 | -50/+0 |
| | | | | Signed-off-by: Ian Romanick <[email protected]> | ||||
* | fix span->facing computation and gl_FrontFacing initialization | Brian | 2007-12-04 | 1 | -5/+4 |
| | |||||
* | fix broken two-sided stencil | Brian | 2007-11-30 | 1 | -4/+5 |
| | |||||
* | fix StepX/StepY typo | Brian | 2007-07-03 | 1 | -1/+1 |
| | |||||
* | simplify INIT_SPAN code | Brian | 2007-06-29 | 1 | -1/+1 |
| | |||||
* | Overhaul/simplify SWvertex and SWspan attribute handling. | Brian | 2007-05-20 | 1 | -472/+158 |
| | | | | | Instead of separate fog/specular/texcoord/varying code, just treat all of them as generic attributes. Simplifies the point/line/triangle functions. | ||||
* | fix some StepX/StepY mix-ups in alpha interpolation | Brian | 2007-05-02 | 1 | -6/+6 |
| | |||||
* | s/INTERP_TEX/INTERP_ATTRIBS/ | Brian | 2007-04-24 | 1 | -9/+10 |
| | |||||
* | remove SWvertex->fog field, use attrib field | Brian | 2007-04-23 | 1 | -6/+6 |
| | |||||
* | Improve the code for interpolating fragment attributes a little. More to ↵ | Brian | 2007-04-23 | 1 | -26/+12 |
| | | | | come... | ||||
* | fix some CHAN_TYPE==GL_FLOAT breakage | Richard Hughes | 2007-04-07 | 1 | -3/+3 |
| | |||||
* | init span.y=0 to silence warnings | Brian | 2007-04-04 | 1 | -0/+1 |
| | |||||
* | Merge SWvertex texcoord and varying fields into attrib[] array field. | Brian | 2007-02-05 | 1 | -157/+72 |
| | | | | | Fragment texcoords and varying code is now unified in the point/line/triangle rasterization code. In the future, merge color, fog, etc. attribs. | ||||
* | Replace color, z, w, texture interpolants with new generic attrib interpolants. | Brian | 2007-02-02 | 1 | -101/+107 |
| | |||||
* | New span attrStart/attrStepX/attrStepY fields to replace fog, specular, etc. ↵ | Brian | 2007-02-02 | 1 | -40/+40 |
| | | | | fields. More to come. | ||||
* | only setup varying vars that will be used | Brian | 2007-01-24 | 1 | -3/+9 |
| | |||||
* | s/attribute/varying/ | Brian | 2006-12-21 | 1 | -4/+5 |
| | |||||
* | varying var changes | Brian | 2006-12-15 | 1 | -11/+11 |
| | |||||
* | New SWspan and SWspanarrays typedefs. | Brian Paul | 2006-10-01 | 1 | -1/+1 |
| | |||||
* | More GLSL code: | Michal Krol | 2006-04-11 | 1 | -1/+65 |
| | | | | | | | | | | | | - use macros to access and modify render inputs bit-field; - un-alias generic vertex attributes for ARB vertex calls; - use MAX_VERTEX_PROGRAM_ATTRIBS (NV code) or MAX_VERTEX_ATTRIBS (ARB code) in place of VERT_ATTRIB_MAX; - define VERT_ATTRIB_GENERIC0..15 for un-aliased vertex attributes for ARB_vertex_shader; - fix generic attribute index range check in arbprogparse.c; - interface GLSL varyings between vertex and fragment shader; - use 64-bit optimised bitset (bitset.h) for render inputs; | ||||
* | put braces around RENDER_SPAN macro when called, not when defined. Fixes ↵ | Brian Paul | 2006-03-29 | 1 | -2/+4 |
| | | | | -pedantic warnings in x11 driver | ||||
* | fix color interpolation problem reported on VMS | Brian Paul | 2005-11-15 | 1 | -64/+38 |
| | |||||
* | check span.y >=0 (bug 4842) | Brian Paul | 2005-10-21 | 1 | -1/+4 |
| | |||||
* | Change zLeft and zval to GLuint. Seems to fix 32-bit Z computation | Brian Paul | 2005-09-20 | 1 | -6/+9 |
| | |||||
* | Major check-in of changes for GL_EXT_framebuffer_object extension. | Brian Paul | 2005-05-04 | 1 | -4/+5 |
| | | | | | | | Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested. | ||||
* | undef DEPTH_TYPE at end | Brian Paul | 2005-04-22 | 1 | -0/+1 |
| | |||||
* | silence warning | Brian Paul | 2004-12-03 | 1 | -1/+1 |
| | |||||
* | added cast to fix AIX color interpolation problem (bug 983144) | Brian Paul | 2004-07-05 | 1 | -14/+14 |
| | |||||
* | fix HP occlusion testing when using generic span path | Brian Paul | 2004-06-24 | 1 | -4/+0 |
| | |||||
* | more TRIANGLE_WALK_DOUBLE tweaks (Justin Novosad) | Brian Paul | 2004-03-14 | 1 | -25/+80 |
| | |||||
* | Fix color index mode rendering. | Brian Paul | 2004-03-09 | 1 | -3/+6 |
| | | | | Changed SWvertex's index field to GLfloat and fix a few other bits. | ||||
* | A bit of an overhaul of the fog code. | Brian Paul | 2004-02-17 | 1 | -0/+10 |
| | | | | | | glFogCoord didn't always work reliably. ARB fragment program fog options work now. Per-fragment fog computations are now perspective corrected. | ||||
* | Added TRIANGLE_WALK_DOUBLE to optionally walk triangle edges with GLdoubles | Brian Paul | 2004-02-17 | 1 | -34/+91 |
| | | | | instead of GLfixed. (Justin Novosad) | ||||
* | some code clean-ups | Brian Paul | 2004-02-15 | 1 | -64/+67 |
| | |||||
* | Minor clean-ups of variable scopes, initializations, etc. | Brian Paul | 2004-02-15 | 1 | -29/+51 |
| | | | | | New comments discussing FIXED_FRAC_BITS, SUB_PIXEL_BITS, max viewport size and rasterization accuracy. | ||||
* | init vars to silence warnings | Brian Paul | 2003-12-13 | 1 | -1/+1 |
| | |||||
* | s/_backface_sign/_BackfaceSign/ | Brian Paul | 2003-09-18 | 1 | -1/+1 |
| | |||||
* | Silence compiler warnings about implicit casts or conversions by supplying ↵ | Karl Schultz | 2003-08-30 | 1 | -11/+34 |
| | | | | explicit casts and/or tweaking constant and variable definitions. | ||||
* | Removed all RCS / CVS tags (Id, Header, Date, etc.) from everything. | Ian Romanick | 2003-06-05 | 1 | -3/+0 |
| | |||||
* | Added ctx->Texture._EnabledCoordUnits bitfield. | Brian Paul | 2003-04-08 | 1 | -2/+2 |
| | | | | | | Fixed some vertex array / vertex program glitches with glDrawElements. Fixed some fragment program runtime bugs. Non-trivial Cg programs are running now. | ||||
* | replace _mesa_ prefix with _swrast_, remove s_histogram.[ch] | Brian Paul | 2003-03-25 | 1 | -2/+2 |
| | |||||
* | Store partial derivative values in sw_span structure. | Brian Paul | 2003-03-16 | 1 | -179/+187 |
| | | | | | Implemented DDX and DDY fragment program instructions (whew!) Not fully tested yet. | ||||
* | use TEX_UNIT_LOOP macro to coalesce some code | Brian Paul | 2003-03-16 | 1 | -156/+80 |
| |