Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | removed GL_HP_occlusion_test extension | Brian Paul | 2005-08-25 | 1 | -20/+2 |
| | |||||
* | Add a set of predicate functions for testing matrices instead of directly | Brian Paul | 2005-06-30 | 1 | -1/+1 |
| | | | | | | testing the flags field. Move definition of all the MAT_FLAGs into the m_matrix.c file since they're now private. | ||||
* | Major check-in of changes for GL_EXT_framebuffer_object extension. | Brian Paul | 2005-05-04 | 1 | -8/+13 |
| | | | | | | | Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested. | ||||
* | Implement software ATI_fragment_shader | Dave Airlie | 2004-12-19 | 1 | -1/+14 |
| | | | | no error detection, slow, may not be 100% correct but a good start | ||||
* | uint*t -> u_int*t changes | Alan Hourihane | 2004-12-14 | 1 | -3/+0 |
| | |||||
* | added DD_TRI_TWOSTENCIL to ease EXT_stencil_two_side in device drivers | Daniel Borca | 2004-11-12 | 1 | -0/+5 |
| | |||||
* | check for either GL_NV_vertex_program or GL_ARB_vertex_program for some enables | Brian Paul | 2004-08-18 | 1 | -12/+13 |
| | |||||
* | Add EXT_vertex_cull support to mesa | Keith Whitwell | 2004-05-10 | 1 | -0/+9 |
| | |||||
* | Added support for EXT_blend_equation_separate / ATI_blend_equation_separate. | Ian Romanick | 2004-01-27 | 1 | -2/+2 |
| | | | | | The internal driver interface was also changed to use BlendEquationSeparate instead of BlendEquation. | ||||
* | Don't set extra bits in FLUSH_VERTICES, fix several state bugs. | Keith Whitwell | 2004-01-23 | 1 | -20/+5 |
| | |||||
* | Ville Syrjala's logic op patch | Brian Paul | 2003-11-12 | 1 | -3/+12 |
| | |||||
* | Added GLAPIENTRY decorations for all first level OpenGL API function entry | Kendall Bennett | 2003-10-21 | 1 | -5/+5 |
| | | | | | points so that the calling conventions will work correctly with the assembler stubs with the Open Watcom compiler. | ||||
* | Trivial changes to add support for GL_ARB_point_sprite, which is a | Ian Romanick | 2003-08-23 | 1 | -1/+7 |
| | | | | subset of GL_NV_point_sprite (which was already supported). | ||||
* | Initial implementation of GL_MESA_program_debug - a vertex/fragment program | Brian Paul | 2003-07-21 | 1 | -0/+18 |
| | | | | debugging extension. | ||||
* | Merge Jose's documentation and core Mesa changes from embedded branch | Keith Whitwell | 2003-07-17 | 1 | -4/+67 |
| | |||||
* | Implemented GL_EXT_depth_bounds_test. | Brian Paul | 2003-04-21 | 1 | -0/+19 |
| | |||||
* | more GL_ARB_vertex/fragment_program bits | Brian Paul | 2003-04-18 | 1 | -2/+15 |
| | |||||
* | fix GL_COLOR_MATERIAL bug | Brian Paul | 2003-03-21 | 1 | -3/+3 |
| | |||||
* | Fix up some fragment program texture enable issues. | Brian Paul | 2003-03-15 | 1 | -2/+2 |
| | | | | Implemented TXD instruction. | ||||
* | Killed mmath.[ch]. Moved low-level functions/assembly code into imports.[ch] | Brian Paul | 2003-03-01 | 1 | -2/+1 |
| | | | | | Moved type conversion and interpolation macros into macros.h Updated all the files that used to include mmath.h | ||||
* | Make GL_SGI_texture_color_table work per-texture unit. | Brian Paul | 2003-01-26 | 1 | -3/+8 |
| | | | | Clean-up and optimize _swrast_texture_table_lookup(). | ||||
* | GL_SGI_texture_color_table extension (Eric Plante) | Brian Paul | 2003-01-21 | 1 | -1/+8 |
| | |||||
* | First batch of code for GL_NV_fragment_program. | Brian Paul | 2003-01-14 | 1 | -2/+18 |
| | | | | | Re-org of some GL_NV_vertex_program code. Replace MAX_TEXTURE_UNITS with MAX_TEXTURE_COORD_UNITS and MAX_TEXTURE_IMAGE_UNITS. | ||||
* | Header file clean-up: | Brian Paul | 2002-10-24 | 1 | -5/+2 |
| | | | | | | | | 1. Remove all.h and PC_HEADER junk. 2. Rolled mem.c and mem.h into imports.c and imports.h 3. Include imports.h instead of mem.h Restore _mesa_create/initialize_context() to be like they were in 4.0.4 New wrappers for a few std C functions: _mesa_atoi(), _mesa_strstr(), etc. | ||||
* | surround vertex program code with #if FEATURE_NV_vertex_program/#endif | Brian Paul | 2002-10-16 | 1 | -4/+8 |
| | |||||
* | GL_EXT_stencil_two_side extension, not 100% complete yet. | Brian Paul | 2002-09-06 | 1 | -1/+16 |
| | |||||
* | Applied Matt Sealey's patch to remove/isolate all stdio.h function calls. | Brian Paul | 2002-06-29 | 1 | -22/+10 |
| | | | | Instead of mstdio.[ch], use imports.[ch] to isolate these functions. | ||||
* | Moved GL_PROGRAM_ERROR_POSITION_NV state (it's not per-program). | Brian Paul | 2002-06-18 | 1 | -38/+52 |
| | | | | | Finished all glGet* queries for GL_NV_vertex_program. Improved error reporting in glEnable/Disable/Get, etc. | ||||
* | Implemented GL_NV_texture_rectangle extension. | Brian Paul | 2002-06-15 | 1 | -13/+38 |
| | | | | | | | | | Replace struct gl_texure_object's Dimension w/ Target field. Added _EnabledUnits to struct gl_texture_attrib - the _ReallyEnabled field is obsolete, but still present for now. This effectively removes the 8-texture units limit, 32 units now possible, but unlikely! New TEXTURE_1D/2D/3D/CUBE/RECT_BIT tokens for unit->_ReallyEnabled field. Updated device drivers to use ctx->Texture._EnabledUnits. | ||||
* | Added ctx parameter to _mesa_debug() | Brian Paul | 2002-06-15 | 1 | -2/+2 |
| | | | | | | Added _mesa_printf() Updated SetDrawBuffer() function in all drivers (ala 4.0.3) Import 4.0.3/DRI changes. | ||||
* | New _mesa_debug() function to replace fprintf() calls. | Brian Paul | 2002-06-13 | 1 | -5/+5 |
| | | | | | | | | Some source files updated to call _mesa_debug(), but not finished. Added __GLimports as a parameter to _mesa_create/init_context() and updated drivers accordingly. Fleshed-out more of the __GLimports and __GLexports functionality. Removed run-time config file support (config.c) | ||||
* | replaced experimental MESA_sprite_point with NV_point_sprite | Brian Paul | 2002-05-27 | 1 | -9/+9 |
| | |||||
* | vertex program attribute array work | Brian Paul | 2002-04-21 | 1 | -2/+2 |
| | |||||
* | Correct check for noop array state change (Raystonn) | Alan Hourihane | 2002-04-19 | 1 | -2/+2 |
| | |||||
* | added some casts | Brian Paul | 2002-04-19 | 1 | -2/+2 |
| | |||||
* | Replaced ClipEnabled[] array and _AnyClip with ClipPlanesEnabled bitmask. | Brian Paul | 2002-03-29 | 1 | -9/+7 |
| | |||||
* | decrement Transform._AnyClip when clip planes are disabled | Brian Paul | 2002-03-28 | 1 | -1/+4 |
| | |||||
* | More suport for t&l drivers | Keith Whitwell | 2002-02-13 | 1 | -1/+6 |
| | | | | | Fix GLuint compare bugs Fix RESET_STIPPLE calls | ||||
* | added missing IsEnabled() cases for fog coord and secondary color arrays | Brian Paul | 2002-01-22 | 1 | -1/+7 |
| | |||||
* | Changed gl_client_array's Enabled field to GLuint so it can actually | Brian Paul | 2002-01-11 | 1 | -11/+11 |
| | | | | hold the flags we're storing in it! | ||||
* | implemented vertex program point size control | Brian Paul | 2002-01-06 | 1 | -4/+4 |
| | |||||
* | infrastructure for vertex program attribute evaluators | Brian Paul | 2002-01-05 | 1 | -6/+19 |
| | |||||
* | Replace old matrix stacks with new code based on struct matrix_stack. | Brian Paul | 2001-12-18 | 1 | -5/+5 |
| | | | | | | Moved vertex program hash table into shared context state. Implemented reference counting for vertex programs. Replaced tnl "ProjectedClip" with "Ndc" (normalized device coordinates). | ||||
* | vertex program check-in | Brian Paul | 2001-12-14 | 1 | -754/+852 |
| | |||||
* | added GL_IBM_rasterpos_clip extension | Brian Paul | 2001-06-26 | 1 | -6/+23 |
| | |||||
* | infrastructure for GL_ARB_multisample | Brian Paul | 2001-05-29 | 1 | -1/+100 |
| | |||||
* | Remove ENABLE_* flags, ctx->_Enabled. | Keith Whitwell | 2001-03-29 | 1 | -9/+1 |
| | | | | Replace with ctx->Texture._TexMatEnabled, ctx->Texture._TexGenEnabled. | ||||
* | Removed DD_STENCIL, DD_FEEDBACK, DD_SELECT. | Keith Whitwell | 2001-03-29 | 1 | -2/+1 |
| | | | | Added some switchable debug to s_context.c | ||||
* | Removed DD_Z_NEVER. | Brian Paul | 2001-03-29 | 1 | -5/+5 |
| | | | | | | Replaced SEPERATE with SEPARATE. Renumbered _NEW_ flags. Removed _NEW_COLORTABLE. | ||||
* | Consistent copyright info (version number, date) across all files. | Gareth Hughes | 2001-03-12 | 1 | -51/+44 |
| |