summaryrefslogtreecommitdiff
path: root/src/mesa/main
AgeCommit message (Collapse)Author
2006-08-23Added _mesa_lookup_program() and _mesa_lookup_bufferobj() functions to avoidBrian Paul
a lot of casting elsewhere. Use _mesa_lookup_texture() in tdfx driver, use _mesa_lookup_bufferobj() in r300 driver.
2006-08-17sort the FEATURE_ definesBrian Paul
2006-08-17added FEATURE_EXT_timer_query and testsBrian Paul
2006-08-17change #ifdef to #ifBrian Paul
2006-08-16When available, which is most of the time, use posix_memalign to implementIan Romanick
_mesa_align_malloc and friends.
2006-08-15Add support for GL_EXT_gpu_program_parameters. Any driver that enablesIan Romanick
either GL_ARB_vertex_program or GL_ARB_fragment_program should enable this extension as well.
2006-08-10Fix some breakage after the PROGRAM_UNDEFINED changeAlan Hourihane
2006-08-10finish up texstore for SL8 texture formatBrian Paul
2006-08-09Add PROGRAM_FILE_MAX for i965 driver.Eric Anholt
While here, make PROGRAM_UNDEFINED just the next value in the enum.
2006-08-09implement some of the sRGB texstore functionsBrian Paul
2006-08-04fix typo, indentationBrian Paul
2006-08-04fix bug when pushing ReadBuffer state for GL_PIXEL_MODE_BITBrian Paul
2006-08-04more work for GL_EXT_texture_sRGB.Brian Paul
2006-08-03New wrapper functions: _mesa_dlopen(), _mesa_dlsym(), _mesa_dlclose().Brian Paul
Eventually move them into imports.c
2006-08-03Initial work for GL_EXT_texture_sRGB.Brian Paul
2006-08-02Fix mmFindBlock function.Michal Krol
2006-08-01Clean-up FEATURE_ARB_shader_objects #ifdefs. Bug 7492.Michal Krol
2006-07-30Add support for GL_MESA_shader_debug.Michal Krol
2006-07-20Some structure renaming. Prefix vertex/fragment-related structs withBrian Paul
"gl_" to match other structs.
2006-07-20move/update commentsBrian Paul
2006-07-20remove unused NEED_TWO_SIDED_LIGHTING() macroBrian Paul
2006-07-19For glGetTexImage(), move the _mesa_validate_pbo_access() error check intoBrian Paul
_mesa_GetTexImage() so it's not needed in the fallback or driver functions.
2006-07-18indentation fixBrian Paul
2006-07-18add missing 'return' after a few _mesa_error() calls in _mesa_GetTexImage()Brian Paul
2006-07-18Compute ctx->Color._LogicOpEnabled in one place instead of four places!Brian Paul
2006-07-13define FLT_MAX_EXP to 128 if undefinedBrian Paul
2006-07-11free array objects properly (bug 7493)Brian Paul
2006-07-11free GL2Objects unconditionallyTilman Sauerbeck
2006-07-11free the ArrayObjects hash tableTilman Sauerbeck
2006-07-11only access ss->BufferObjects if it's declaredTilman Sauerbeck
2006-07-03disable a new mem leak check until we're sure it's validBrian Paul
2006-06-30clean-upsBrian Paul
2006-06-30use _mesa_HashDeleteAll()Brian Paul
2006-06-30In free_shared_state(), use new _mesa_HashDeleteAll() function to deleteBrian Paul
textures, display lists, programs, VBOs, etc. Less code and more efficient.
2006-06-30Added _mesa_delete_list() to delete a display list, but don't remove fromBrian Paul
hash table. Make _mesa_destroy_list() static.
2006-06-30Added _mesa_HashDeleteAll() to delete all entries in a hash table with aBrian Paul
callback function. Added _mesa_HashWalk() to walk over all entries in a hash table with callback.
2006-06-29destroy left-over VBOs on shutdownTilman Sauerbeck
2006-06-27Remove the extraneous GL_ prefix from the enums for GL_EXT_timer_query andIan Romanick
GL_EXT_framebuffer_blit. Enumerants in the XML schema get the GL_ prefix added to them automatically. This resulted in things like "GL_GL_TIME_ELAPSED_EXT" in enums.c.
2006-06-21Check for a valid contextAlan Hourihane
2006-06-20Add M32R architecture to test for USE_IEEE and friends (Kazuhiro Inaoka,Michel Dänzer
from http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=374608).
2006-06-19Print the hex value of the errant input when an invalid stencil function isIan Romanick
specified.
2006-06-19If DrawBuffer isn't set, return immediatelyAlan Hourihane
2006-06-16 OpenVMS compile support updateJouk Jansen
Modified Files: Mesa/src/mesa/main/descrip.mms ----------------------------------------------------------------------
2006-06-15added some comments, braces in _mesa_BindTextureBrian Paul
2006-06-15minor clean-upsBrian Paul
2006-06-15comments for gl_array_object structBrian Paul
2006-06-13clean-ups and new commentsBrian Paul
2006-06-13fix size assertions in _mesa_init_teximage_fields()Brian Paul
2006-06-12s/buffer/arrays/Brian Paul
2006-06-12include arrayobj.hBrian Paul