Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-03-03 | mesa/tnl_dd: Remove color-index support from t_dd_unfilled.h | Ian Romanick | |
The code removal and the re-indent were done together for this one because the cause of the affected code blocks is much, much smaller than in t_dd_tritmp.h. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-03 | mesa/tnl_dd: White-space / indentation fixes after previous commit | Ian Romanick | |
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-03 | mesa/tnl_dd: Remove color-index support from t_dd_tritmp.h | Ian Romanick | |
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
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 FogCoordPtr with AttribPtr[_TNL_ATTRIB_FOG] | Eric Anholt | |
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-11-19 | tnl: Replace deprecated TexCoordPtr with AttribPtr[_TNL_ATTRIB_TEX*] | Eric Anholt | |
2009-12-15 | unichrome: Silence compiler warnings. | Vinson Lee | |
2009-12-12 | t_dd_dmatmp.h: Silence unused value warning in render_poly_elts. | Vinson Lee | |
2009-12-12 | t_dd_dmatmp2.h: Silence unused value warnings. | Vinson Lee | |
2009-12-12 | t_dd_dmatmp.h: Silence unused value warnings in render_line_loop_elts. | Vinson Lee | |
2009-12-12 | t_dd_dmatmp.h: Silence unused value warning in render_tri_fan_elts. | Vinson Lee | |
2009-12-12 | t_dd_dmatmp.h: Silence unused value warning in render_poly_verts. | Vinson Lee | |
2009-12-12 | t_dd_dmatmp.h: Silence unused value warning in render_quads_verts. | Vinson Lee | |
2009-12-12 | t_dd_dmatmp.h: Silence unused value warning in render_tri_fan_verts. | Vinson Lee | |
2009-12-12 | t_dd_dmatmp.h: Silence unused value warning in render_line_loop_verts. | Vinson Lee | |
2009-12-12 | t_dd_dmatmp.h: Silence unused value warning in render_line_loop_verts. | Vinson Lee | |
2009-02-28 | mesa: add a prototype to silence warnings | Brian Paul | |
2008-07-04 | mesa: fix polygon offset issue (bug #12061) | Xiang, Haihao | |
2008-06-21 | Rename quad function to quadr to avoid clash with Solaris quad typedef | Daniel Zhu | |
Signed-off-by: Brian Paul <brian.paul@tungstengraphics.com> | |||
2007-11-30 | fix-build: remove ctx->_Facing assignment | Brian | |
2007-07-21 | Remove ctx->Point._Size and ctx->Line._Width. | Brian | |
The clamping for these values depends on whether we're drawing AA or non-AA points, lines. Defer clamping until drawing time. Drivers could compute and keep clamped AA and clamped non-AA values if desired. | |||
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-24 | s/fog/attrib[FRAG_ATTRIB_FOGC][0]/ | Brian | |
2007-02-23 | SWvertex no longer has texcoord field, use attrib field instead | Brian | |
2006-07-28 | Fix build failure in the savage driver. | Eric Anholt | |
2006-07-20 | Instead of testing ctx->_TriangleCaps for flat/smooth shading, just use ↵ | Brian Paul | |
ctx->Light.ShadeModel | |||
2005-07-18 | Wrap every place that accesses a dispatch table with a macro. A new script- | Ian Romanick | |
generated file, called src/mesa/glapi/dispatch.h, is added. This file contains three macros for each API function. It contains a GET, a SET, and a CALL. Each of the macros take a pointer to the context and a pointer to the dispatch table. In several threads on mesa3d-dev we discussed replacing _glapi_add_entrypoint with a new function called _glapi_add_dispatch. For this discussion, the important difference between the two is that the caller of _glapi_add_dispatch does *not* know what the dispatch offset will be at compile time. Because of this callers need to track the dispatch offset returned by _glapi_add_dispatch. http://marc.theaimsgroup.com/?t=111947074700001&r=1&w=2 The downside is that driver code then has to access the dispatch table two different ways. It accesses it using structure tags (e.g., exec->Begin) for functions with fixed offsets and via a remap table (e.g., exec[ remap->NewExtensionFunction ]) for functions without fixed offsets. Yuck! Using the macros allows both types of functions to be accessed identically. If a driver needs to set a pointer for Begin, it does 'SET_Begin(ctx, exec, my_begin_function)'. If it needs to set a pointer for NewExtensionFunction, it does 'SET_NewExtensionFunction(ctx, exec, my_NewExtensionFunction_function)'. Furthermore, if at some point in the future a static offset is assigned for NewExtensionFunction, only the macros need to change (instead of every single place that accesses a table for that function). This code differs slightly from the originally posted patches in that the CALL, GET, and SET marcos no longer take a context pointer as a parameter. Brian Paul had suggested that the remap table could be stored as a global since it would be set at CreateScreen time and would be constant for all contexts. This change reflects that feedback. http://marc.theaimsgroup.com/?t=112087194700001&r=1&w=2 | |||
2005-05-25 | Provide initial values for some variables. | Keith Whitwell | |
2005-05-04 | Major check-in of changes for GL_EXT_framebuffer_object extension. | Brian Paul | |
Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested. | |||
2005-02-14 | fix signed vs unsigned comparison warnings in tnl_dd | Dave Airlie | |
2005-01-23 | My last attempt to fix polygon offsets with the reversed viewport depth | Felix Kuehling | |
range used by the savage driver by negating ctx->MRD broke polygon offsets with software fallbacks. This one adds a REVERSE_DEPTH parameter to t_dd_tritmp.h (defaults to 0) that allows reversing polygon offsets for hardware rendering but not for software fallbacks. For software fallbacks depth values are reversed after polygon offsets have been applied by the depth span functions. | |||
2005-01-13 | Fix loop for quads-as-triangles. | Keith Whitwell | |
2005-01-10 | More changes to cope with color stride == 0 | Keith Whitwell | |
2005-01-05 | Improve some quad paths, gives gears a little boost. | Keith Whitwell | |
2004-11-12 | fix quads to use GL_QUADS instead of GL_TRIANGLES as primitive | Roland Scheidegger | |
2004-11-12 | wip hack for EXT_stencil_two_side | Daniel Borca | |
2004-11-12 | make render_quads_verts call EMIT_PRIM with the arguments in the right order, | Adam Jackson | |
and enable hardware quads on r200 and radeon. samples/prim renders quads correctly now. | |||
2004-11-01 | fixed compilation error | Daniel Borca | |
2004-10-29 | make sure we don't generate random alpha | Daniel Borca | |
2004-10-16 | Removed two unnecessary variables. | Ville Syrjala | |
2004-10-02 | Add an option for vertices emitted to be swapped CPU_TO_LE32, to be used by the | Eric Anholt | |
r128 code. | |||
2004-07-20 | fix compare w/ zero warnings (bug 988766) | Brian Paul | |
2004-07-01 | Rename the various function types in t_context.h to include a tnl_ prefix. | Keith Whitwell | |
2004-05-10 | Add EXT_vertex_cull support to mesa | Keith Whitwell | |
2004-02-04 | Fix off-by-one in calculations for wrapped trifan, polygon primitives | Keith Whitwell | |
2003-12-11 | Don't evaluate GET_CURRENT_VB_MAX_VERTS() until after calling INIT() | Keith Whitwell | |
2003-12-11 | Updates to tnl_dd_dmatmp.h | Keith Whitwell | |
- Allocate vertices explicitly, rather than trying to talk about dma buffers. - Clean up the various Flush() operations. - Don't allow fallbacks any longer. Provide a support function to detect them ahead o ftime Updates to tnl_dd_vbtmp.h - Get rid of power-of-two vertex strides. Pack all vertices tightly. - Get texunit 2,3 emit working coorrectly. Other stuff: - Get rid of lingering Ubyte color support. - Fix a few compiler warnings. | |||
2003-12-09 | Fix incorrect removal of PRIM_PARITY code (ie remove the parity code, not the | Keith Whitwell | |
non-parity code). |