summaryrefslogtreecommitdiff
path: root/src/mesa
AgeCommit message (Collapse)Author
2002-01-11Moved _mesa_VertexAttribPointerNV into varray.c.Brian Paul
Removed dead placeholder functions from vpstate.[ch]. Changed gl_client_array's Enabled field to GLuint so it can actually hold the flags we're storing in it! Always do the switch (type) code in the vertex array functions to that <type> gets error checked!
2002-01-10Klaus's latest patches: change texcoord[3] to texcoord[4] everywhereBrian Paul
2002-01-10init whole immediate struct to zeroBrian Paul
2002-01-09fixed int->float conversion bug in _mesa_TexEnviv()Brian Paul
2002-01-09fixed GL_REPLACE / GL_RGB bugBrian Paul
2002-01-09texture env color wasn't used correctly in GL_BLEND modeBrian Paul
2002-01-08work-around for QNX compiler problemBrian Paul
2002-01-06implemented vertex program point size controlBrian Paul
2002-01-06Another vertex program checkpoint: clean-up of vertex attribute storageBrian Paul
in vertex_buffer. Improved vertex program pipeline stage such that output registers can be processed in a loop. Getting closer to where we need to be in order to implement performance optimizations...
2002-01-05minor clean-upsBrian Paul
2002-01-05infrastructure for vertex program attribute evaluatorsBrian Paul
2002-01-05Vertex program checkpoint commit: converted all vertex attributes (color,Brian Paul
normal, texcoords, fogcoord, secondary color, etc) to GLfloat[4] datatype. Aliasing of glVertex, glNormal, glColor, glFogCoord, etc. to glVertexAttrib now complete.
2002-01-05comments, clean-ups, added lots of const qualifiersBrian Paul
2002-01-05comments, clean-ups, added lots of const qualifiersBrian Paul
2002-01-04fix bug 498555 - test for __GNUC__Brian Paul
2002-01-03regenerated from updated glsparcasm.py scriptBrian Paul
2002-01-03don't use macros, just expand them in-lineBrian Paul
2001-12-28Remove warnings about the difference between function pointers andGareth Hughes
(void *) pointers.
2001-12-21add _compat_VertexAttrib4fNVKeith Whitwell
2001-12-20Define finite as _finite for Windows.Karl Schultz
2001-12-20Further help with dri libGL version skewKeith Whitwell
2001-12-20Fix clipping problem on mgaKeith Whitwell
2001-12-19some display list support for vertex program extensionBrian Paul
2001-12-19fix a comment typoBrian Paul
2001-12-19have to clamp color+specular in _swrast_add_spec_terms_triangle()! (fixes ↵Brian Paul
Chimera bug)
2001-12-19remove some cruftBrian Paul
2001-12-18Replace old matrix stacks with new code based on struct matrix_stack.Brian Paul
Moved vertex program hash table into shared context state. Implemented reference counting for vertex programs. Replaced tnl "ProjectedClip" with "Ndc" (normalized device coordinates).
2001-12-17disable prototype matrix stack codeBrian Paul
2001-12-17 Committing in .Jouk Jansen
Update OpenVMS makefile for vertex-routines #ifndef __VMS added for one print statement containing __FUNCTION__ Modified Files: Mesa/src/descrip.mms Mesa/src/tnl/t_imm_api.c ----------------------------------------------------------------------
2001-12-17added some debug printfs (disabled)Brian Paul
2001-12-17first checkpoint commit of Klaus's new span code (struct sw_span)Brian Paul
2001-12-17first checkpoint commit of Klaus's new span code (struct sw_span)Brian Paul
2001-12-17remove conditional in RESET_STIPPLE to fix conformance failureBrian Paul
2001-12-16updated vertex buffer identifiersBrian Paul
2001-12-15divide by W and clipping now work - in pretty good shape nowBrian Paul
2001-12-15temporary hack for divide by WBrian Paul
2001-12-15better api trace/log messagesBrian Paul
2001-12-15vertex program fixesBrian Paul
2001-12-15disable debug printf's, fix a crashBrian Paul
2001-12-15free the NormalLengthPtr if non-null in _tnl_free_immediate()Brian Paul
2001-12-14added newline characters to trace stringsBrian Paul
2001-12-14Remove rules that were put into place to deal with compiling files thatKarl Schultz
are in subdirectories of this directory. The list of rules that were here was out of date for Mesa 4 and would likely get out of date again. It is better to have make handle it (e.g., use pmake -v on IRIX).
2001-12-14minor tweaksBrian Paul
2001-12-14minor dispatach table changesBrian Paul
2001-12-14vertex program check-inBrian Paul
2001-12-14add dispatch offsets for vertex program functionsBrian Paul
2001-12-13Remove const from save_TexParameteri to match prototype for glTexParameteri.Karl Schultz
Allows compilation on IRIX.
2001-12-13fixed errors in feedback for glDraw/CopyPixels and glBitmapBrian Paul
2001-12-13special case blend optmizations (Jeremy Fitzhardinge)Brian Paul
2001-12-13call FLUSH_VERTICES() in _mesaTexParameterfv() (bug 491832)Brian Paul