summaryrefslogtreecommitdiff
path: root/src/mesa/main
AgeCommit message (Collapse)Author
2004-03-21Implemented support for software-based AUX color buffers.Brian Paul
Only available with Xlib driver for now. Assorted clean-ups related to Draw/ReadBuffer(). Renamed FRONT_LEFT_BIT -> DD_FRONT_LEFT_BIT, etc.
2004-03-20minor clean-upsBrian Paul
2004-03-20make null-terminated copy of program string so that parse works correctlyBrian Paul
2004-03-19add missing else statementsBrian Paul
2004-03-18remove redundant call to ctx->Driver.Viewport(), and clean-upsBrian Paul
2004-03-13Implementation of GL_EXT_pixel_buffer_object extension.Brian Paul
Note: extension may not be finalized yet - subject to change! Note: implementation not fully suitable for h/w implementation yet.
2004-03-13more descriptive error messages for matrix stack over/underflowsBrian Paul
2004-03-11Adjustments to make everything use IOCTL/sarea defines in DRM insteadJon Smirl
of glx/mini. removes glx/mini/drm.h glx/mini/sarea.h
2004-03-10don't futz with GL_CLIENT_ACTIVE_TEXTURE in glClientActiveTexture (Robert ↵Brian Paul
Merrill)
2004-03-04plug in _mesa_BlendFunc into dispatch tableBrian Paul
2004-03-04yet another take on VBO deleting and reference countingBrian Paul
2004-03-03comments, capitalization, misc-clean-upsBrian Paul
2004-03-03more changes to VBO reference counting and deletionBrian Paul
2004-03-02added missing error check in _mesa_BeginQueryARB (Cedric Gautier). minor ↵Brian Paul
clean-ups.
2004-02-28Remove clamp parameter from _mesa_unpack_color_span_float(). Pass theBrian Paul
IMAGE_CLAMP_BIT if needed. Added ClampVertexColors and ClampFragmentColors to GLcontext in anticipation of upcoming extensions (not fully used yet).
2004-02-28minor clean-upsBrian Paul
2004-02-28consolidate image transfer operations in new _mesa_apply_rgba_transfer_ops() ↵Brian Paul
function
2004-02-28rename some span pack/unpack functions for better uniformityBrian Paul
2004-02-28move _swrast_texture_table_lookup() to _mesa_lookup_rgba_chan()Brian Paul
2004-02-28consolidate some codeBrian Paul
2004-02-28replace color table FloatTable boolean with Type enumBrian Paul
2004-02-28paltex demo from recent texcombine changes. Minor clean-upsBrian Paul
2004-02-26check for null paramListBrian Paul
2004-02-26check for invalid fragment program in glDrawPixels, glCopyPixels and glBitmapBrian Paul
2004-02-24jump through dispatch table instead of calling gl functions directlyBrian Paul
2004-02-24fix incorrect texcoord attribute indexBrian Paul
2004-02-24added some GLAPIENTRY keywords, minor clean-upsBrian Paul
2004-02-24Yet another revision of _ae_update_state(). Issue both conventional ANDBrian Paul
generic vertex attribute commands, ignoring ctx->VertexProgram.Enabled since this function may be used during display list compilation.
2004-02-24added some const keywordsBrian Paul
2004-02-24glDrawArrays loop was wrongBrian Paul
2004-02-17some debug codeBrian Paul
2004-02-17added FogOption to fragment_program structBrian Paul
2004-02-17added FixedToDouble() macroBrian Paul
2004-02-17Added TRIANGLE_WALK_DOUBLE to optionally walk triangle edges with GLdoublesBrian Paul
instead of GLfixed. (Justin Novosad)
2004-02-14Remove debugKeith Whitwell
2004-02-14Make it easier for drivers to create "subclasses" of the existingKeith Whitwell
program struct hierarchy. Add driver callbacks to enable the above and make it possible to track more changes to program objects.
2004-02-13init secondary color to (0,0,0,1). remove some redundant initializations.Brian Paul
2004-02-13set buffer object default Usage and AccessBrian Paul
2004-02-12Minor re-org of state for fog and precision options.Brian Paul
2004-02-11Fix the problem found with UT after I had added support for glVertexAttrib.Brian Paul
The problem came from using the _glapi_Dispatch->VertexAttrib*fvNV pointers since they can change from one glArrayElement call to the next.
2004-02-11Do more bookkeeping of vertex buffer object reference counts.Brian Paul
Incr/decr counts when doing glPush/PopClientAttrib(GL_CLIENT_VERTEX_ARRAY_BIT).
2004-02-11revert to version 1.18 for now to fix segfaults in some applicationsRoland Scheidegger
2004-02-09Restore some of the previous code for handling conventional vertex attributesBrian Paul
more efficiently. Remove switches/conditionals from vertex attribute wrappers. glMultiTexCoord is implemented in terms of glVertexAttrib.
2004-02-08Updated to handle generic vertex attributes accessed vi glArrayElement().Brian Paul
In fact, handle all conventional vertex attributes in terms of generic attributes (execept for edge flags and color indexes).
2004-02-08fully parameterize the macros for fixed-point arithmeticBrian Paul
2004-02-08added an additional comment about mipmap generationBrian Paul
2004-02-06Refactor "class" texture environments to be implemented in terms ofIan Romanick
ARB_texture_env_combine state.
2004-02-06inform driver of changed wrap/filter parameters due to binding of nv_texrect ↵Roland Scheidegger
texture
2004-02-06Added flags for _all_ extensions to the gl_extensions struct so that driversBrian Paul
can disable any extension if necessary.
2004-02-04fix stores to vertex state program registersBrian Paul