summaryrefslogtreecommitdiff
path: root/src/mesa/main
AgeCommit message (Collapse)Author
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-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-05more big-endian tweaksBrian Paul
2002-06-03bring over Michel Daenzer's DRI changesBrian 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-27replaced experimental MESA_sprite_point with NV_point_spriteBrian Paul
2002-05-27dispatch offsets for ARB_window_posBrian Paul
2002-05-27updated vertex program dispatchBrian Paul
2002-05-09Minor change to current raster position and texcoords.Brian Paul
2002-05-09Fix FETCH(argb1555) mask valuesKeith Whitwell
2002-05-02Implemented GL_ARB_texture_env_crossbar.Brian Paul
Simplification of some of the texture application code.
2002-04-26replaced GLshort with GLushort in _mesa_sizeof_packed_type()Brian Paul
2002-04-26added GL_TEXTURE_MAX_ANISOTROPY_EXT to glGetTexParameteriv()Brian Paul
2002-04-25added GL_TEXTURE_MAX_ANISOTROPY_EXT to glGetTexParameter (bug 548812)Brian Paul
2002-04-24test mapsize against 1, not 0 in glPixelMap()Brian Paul
2002-04-24added GL_EDGE_FLAG_ARRAY_COUNT_EXT to glGetBooleanv() (Bug 548277)Brian Paul
2002-04-23call _mesa_sizeof_packed_type() in _mesa_GetTexImage() (bug 547203)Brian Paul
2002-04-22Test for NULL pointer for LoadMatrix(), MultMatrix() andAlan Hourihane
Load/MultTransposeMatrix() and return without recording any errors or doing any multiplication.
2002-04-22 Committing in .Jouk Jansen
Remove __FUNCTION__ macro definition from CC compile definitions. (OpenVMS only) Modified Files: Mesa/src/descrip.mms ----------------------------------------------------------------------
2002-04-21check for vertex program modeBrian Paul
2002-04-21Vertex program attribute arrays seem to work now. This includes fallbacksBrian Paul
to the conventional arrays when attribute arrays aren't enabled.
2002-04-21vertex program attribute array workBrian Paul
2002-04-19Provide a reasonable replacement for __FUNCTION__ when using non GNU CKarl Schultz
compilers. This allows Mesa to compile with non GNU C compilers again.
2002-04-19Correct check for noop array state change (Raystonn)Alan Hourihane
2002-04-19added some castsBrian Paul
2002-04-12fixes for corrected GL_DOT3_RGB[A]_EXT token valuesBrian Paul
2002-04-10 Committing in .Jouk Jansen
Update OpenVMS makefile Modified Files: Mesa/src/descrip.mms ----------------------------------------------------------------------
2002-04-09bring in changes from dri tcl branchKeith Whitwell
2002-04-09Update filelist to reflect two removed source files.Karl Schultz
2002-04-09remove dead vertex assemblyKeith Whitwell
2002-04-04repair Array.NewState flags (Michael Fitzpatrick)Brian Paul
2002-04-04export more symbols for osmesa (win32)Karl Schultz
2002-04-04fixed some 3D texture image stride bugs when using 16-bit channelsBrian Paul
2002-04-04fixup float/ushort conversion macrosBrian Paul
2002-04-02minor re-orgBrian Paul
2002-04-02GL_ARB_point_parameters supportBrian Paul
2002-04-01minor optimization in GL_TRANSFORM_BIT poppingBrian Paul
2002-04-01DOS driver updateBrian Paul
2002-03-29Add _glapi_get_context to export for osmesa.Karl Schultz
2002-03-29Replaced ClipEnabled[] array and _AnyClip with ClipPlanesEnabled bitmask.Brian Paul
2002-03-28decrement Transform._AnyClip when clip planes are disabledBrian Paul
2002-03-28popping of user-defined clip planes was brokenBrian Paul
2002-03-23Test implementation of proposed GL_EXT_shadow_funcs extension. This justBrian Paul
generalizes the R/texture comparision operators to include all eight of the depth test comparisons.
2002-03-23DOS/Mesa driver updates (Daniel Borca)Brian Paul
2002-03-23removed temporary GL_ARB_texture_mirrored_repeat enumsBrian Paul
2002-03-23removed temporary ARB_texture enum defsBrian Paul
2002-03-19Use MESA_PBUFFER_ALLOC/FREE macros to allocate all framebuffer and textureBrian Paul
memory. These can be overridden by applications which need to manage this memory specially. Contributed by Gerk Huisma. Also, new code for 8-bit -> 16-bit/channel texture image storage which fills in the least-significant bits properly.