Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-12-25 | swrast: Clean up header file inclusion in ss_vb.h. | Vinson Lee | |
2010-12-25 | swrast: Clean up header file inclusion in ss_triangle.h. | Vinson Lee | |
2010-10-13 | Drop GLcontext typedef and use struct gl_context instead | Kristian Høgsberg | |
2010-08-13 | swrast: Clean up header file inclusion in ss_vb.h. | Vinson Lee | |
Remove unnecessary header swrast_setup.h. | |||
2010-08-12 | swrast: Clean up header file inclusion in ss_triangle.h. | Vinson Lee | |
Remove ss_context.h. Include mtypes.h for GLcontext symbol. | |||
2010-08-12 | swrast: Clean up header file inclusion in ss_context.h. | Vinson Lee | |
Remove mtypes.h and swrast_setup.h. Include glheader.h for GL symbols. | |||
2010-06-21 | swrast: fix incorrect specular highlights on backfaces | Tim Evans | |
See bug 28577 for details. NOTE: this is a candidate for the 7.8 branch. Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-05-09 | swrast: fix 16-bit/channel rendering | Brian Paul | |
NOTE: This is a candidate for the 7.8 stable branch | |||
2010-03-03 | tnl: Remove color-index TNL support | Ian Romanick | |
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-03 | swrast_setup: Remove more color-index rendering support | Ian Romanick | |
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-02-13 | mesa: Fix compiler warnings | Karl Schultz | |
Add explicit casts, fix constant types, fix variable types. Fixes about 340 warnings in MSFT Visual Studio. | |||
2010-02-10 | swrast: Silence uninitialized variable warnings in ss_tritmp.h. | Vinson Lee | |
2009-12-21 | Merge branch 'mesa_7_7_branch' | Brian Paul | |
Conflicts: src/mesa/main/version.h src/mesa/state_tracker/st_atom_shader.c | |||
2009-11-19 | tnl: Replace deprecated ColorPtr[] with AttribPtr or new BackfaceColorPtr. | Eric Anholt | |
2009-11-19 | tnl: Replace deprecated IndexPtr[] with AttribPtr[] or new BackfaceIndexPtr | Eric Anholt | |
2009-12-12 | swrast: Silence uninitialized variable warnings in ss_tritmp.h. | Vinson Lee | |
2009-03-19 | swrast: Silence compiler warnings, give better structure to the code as a ↵ | Michal Krol | |
result. | |||
2008-10-08 | mesa: fix vertex format/attribute bug | Brian Paul | |
If the tnl output attributes matches the swsetup input attributes we still need to check if the desired vertex color type (float vs. chan) has changed so that we use the right emit functions. Fixes a conformance failure found with logicop test at pathlevel 3. | |||
2008-09-21 | mesa: Prefix main includes with dir to avoid conflicts. | José Fonseca | |
Eliminate a couple of differences with gallium-0.2 | |||
2008-09-18 | mesa: prefix a bunch of #include lines with "main/". | Brian Paul | |
This is another step toward removing a whole bunch of -I flags from the cc commands. Still need to address driver code... | |||
2008-04-23 | glcore: drop outdated sources files intented for xorg | George Sapountzis | |
2007-12-18 | simplify update two-side lighting test (follow-on to previous ↵ | Brian | |
front/back-face changes) | |||
2007-11-30 | fix broken two-sided stencil | Brian | |
2007-11-30 | Merge branch 'master' of git+ssh://joukj@git.freedesktop.org/git/mesa/mesa | joukj | |
2007-11-05 | Check for NULL VB->EdgeFlag array. | Brian | |
There might be a bug elsewhere, but this is a simple work-around for now. See bug 12614 | |||
2007-10-03 | Update of OpenVMS makefiles for the use of "new" include file convention | Jouk | |
2007-07-25 | Merge branch 'master' of git+ssh://joukj@git.freedesktop.org/git/mesa/mesa | Jouk | |
2007-07-11 | Minor clean-up of polygon offset logic. Properly compute _MRD field. | Brian | |
2007-07-06 | In _swsetup_Translate(), update dest->attrib[FRAG_ATTRIB_COL0]. | Brian | |
Also, check if we're in RGB vs. CI mode. This fixes a problem with incorrect rendering color seen with the redbook/polys demo. | |||
2007-06-28 | added comment, remove dead code | Brian | |
2007-06-22 | Fix feedback color bug #11332. In feedback mode, produce float colors. | Brian | |
2007-06-08 | Merge branch 'master' of git+ssh://joukj@git.freedesktop.org/git/mesa/mesa | Jouk | |
2007-05-23 | Fix problem w/ two-sided lighting and fragment programs (depth-peel regression) | 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-05-10 | Updated OpenVMS makefiles | J.Jansen | |
modified: src/mesa/descrip.mms modified: src/mesa/drivers/osmesa/descrip.mms modified: src/mesa/drivers/x11/descrip.mms modified: src/mesa/main/descrip.mms modified: src/mesa/shader/descrip.mms modified: src/mesa/shader/slang/descrip.mms modified: src/mesa/swrast/descrip.mms modified: src/mesa/swrast_setup/descrip.mms modified: src/mesa/tnl/descrip.mms | |||
2007-05-02 | Document a deficiency in the _swrast_Translate() function with regard to ↵ | Brian | |
point size. | |||
2007-04-28 | use EMIT_1F or EMIT_4F for fog depending on fragment program (bug 10788) | Brian | |
2007-04-23 | remove SWvertex->fog field, use attrib field | Brian | |
2007-04-23 | some re-org, clean-up | Brian | |
2007-04-18 | fig segment fault issue in TAG(triangle), (see bug 10589) | Xiang, Haihao | |
Bit SS_TWOSIDE_BIT is set if gl_FrontFacing lives in fragment input (see commit 10b5895597d5e069183cb647d17eb412effceb4f). However, VB->ColorPtr[1] isn't assigned after that. | |||
2007-03-10 | Implement gl_FrontFacing for fragment shaders. | Brian | |
For the time being, we put the gl_FrontFacing value in the FOGC.Y input register. Combining FOGC and FrontFacing in one register is a bit of a hack and may need to be changed someday. | |||
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. | |||
2006-12-21 | s/attribute/varying/ | Brian | |
2006-12-15 | varying var changes | Brian | |
2006-11-21 | list header files in sources files (Dan Nicholson) | Brian Paul | |
2006-10-11 | List of source (.c) files in each directory. | Brian Paul | |
To be included by X.org Makefile.am files so that lists of files don't need to be hardcoded and frequently updated there. | |||
2006-06-14 | s/ATTRIBUTE/GENERIC/ | Brian Paul | |
2006-06-14 | Rename _TNL_ATTRIB_ATTRIBUTE* to _TNL_ATTRIB_GENERIC* | Brian Paul | |
2006-04-25 | Put color index attribute into the 6th attribute slot. | Brian Paul | |
Update a lot of loops, conditionals to use the _TNL_FIRST/LAST_* values instead of specific vertex attributes. Remove the EdgeFlagv function from the GLvertexformat struct. | |||
2006-04-14 | s/MaxTextureUnits/MaxTextureCoordUnits/ | Brian Paul | |