summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2002-06-30added unofficial dispatch offsets for GL_EXT_multi_draw_arrays functionsBrian Paul
2002-06-30Implemented GL_EXT_multi_draw_arrays: glMultiDrawArraysEXT() and ↵Brian Paul
glMultiDrawElementsEXT().
2002-06-29indentation fixBrian Paul
2002-06-29prep for OpenGL 1.4 feature setBrian Paul
2002-06-29Applied Matt Sealey's patch to remove/isolate all stdio.h function calls.Brian Paul
Instead of mstdio.[ch], use imports.[ch] to isolate these functions.
2002-06-26fix CHAN_TYPE==GL_FLOAT compile problemBrian Paul
2002-06-25removed extra right-parenBrian Paul
2002-06-25FRONT_AND_BACK cullingKeith Whitwell
2002-06-25finish-up vertex program evaluatorsBrian Paul
2002-06-25remove an unneeded statement in update_polygon(), added a commentBrian Paul
2002-06-23fix problems in _mesa_debug/printf()Brian Paul
2002-06-23added some _mesa_debug() callsBrian Paul
2002-06-23checkpoint: updates for NV_vertex_program evaluators - a bit more left to doBrian Paul
2002-06-23set stage->inputs properly (I think), plus debug/comment updatesBrian Paul
2002-06-23added support for NV_vertex_program evaluatorsBrian Paul
2002-06-23Added new bitfields to tnl_eval_store for NV_vertex_program evaluatorsBrian Paul
2002-06-19put XSync in get_buffer_size(), plus clean-upBrian Paul
2002-06-18Moved GL_PROGRAM_ERROR_POSITION_NV state (it's not per-program).Brian Paul
Finished all glGet* queries for GL_NV_vertex_program. Improved error reporting in glEnable/Disable/Get, etc.
2002-06-18 Committing in .Jouk Jansen
Added mtypes.h inclusion Modified Files: Mesa/src/imports.c ----------------------------------------------------------------------
2002-06-17new fix for initial window size problemBrian Paul
2002-06-17Port glXCopyContext bug from 4.0 branch.Brian Paul
2002-06-16Fix glXCopyContext bugBrian Paul
2002-06-16fix a commentBrian Paul
2002-06-16fixed window size initialization bugBrian Paul
2002-06-16added a commentBrian Paul
2002-06-16added some bracesBrian Paul
2002-06-15Implemented GL_NV_texture_rectangle extension.Brian Paul
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.
2002-06-15#ifdef-out unused big-endian texel fetch functionsBrian Paul
2002-06-15added missing ctx parameter to _mesa_debug() callsBrian Paul
2002-06-15Added ctx parameter to _mesa_debug()Brian Paul
Added _mesa_printf() Updated SetDrawBuffer() function in all drivers (ala 4.0.3) Import 4.0.3/DRI changes.
2002-06-13 Committing in .Jouk Jansen
Added <stdarg.h> Modified Files: Mesa/src/imports.c ----------------------------------------------------------------------
2002-06-13 Committing in .Jouk Jansen
Removed config.c Modified Files: Mesa/src/descrip.mms ----------------------------------------------------------------------
2002-06-13more removal of fprintf() callsBrian Paul
2002-06-13fixed a couple dumb mistakesBrian Paul
2002-06-13New _mesa_debug() function to replace fprintf() calls.Brian Paul
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)
2002-06-12Moved big/little endian code to glheader.h.Brian Paul
Define either MESA_BIG_ENDIAN or MESA_LITTLE_ENDIAN.
2002-06-11Fix NASM problems, remove static var in SSE detection code. (Josh Vanderhoof)Brian Paul
2002-06-10GGI driver updates (Filip Spacek)Brian Paul
2002-06-08added missing texture cube map targetsBrian Paul
2002-06-07fixed point sprite bugBrian Paul
2002-06-06replaced hard-coded 4 with NUM_TEXTURE_TARGETSBrian Paul
2002-06-06replaced 0xf and 0xf0 with TEXTURE0_ANY and TEXTURE1_ANYBrian Paul
2002-06-06NASM fix for *_CONTENT() macros (Josh Vanderhoof)Brian Paul
2002-06-05more big-endian tweaksBrian Paul
2002-06-04use CONTENT() macro on line 205 (Josh Vanderhoof)Brian Paul
2002-06-03bring over Michel Daenzer's DRI changesBrian Paul
2002-05-29added another spot-check to verify dispatch table correctnessBrian Paul
2002-05-29Added GL_NV_point_sprite functions: glPointParameteri[v]NV().Brian Paul
Removed dead ARB_window_pos functions (we alias the MESA_window_pos funcs).
2002-05-29added GL_NV_point_sprite entrypointsBrian Paul
2002-05-27some initial work for fbconfigs/pbuffersBrian Paul