summaryrefslogtreecommitdiff
path: root/src/mesa/main
AgeCommit message (Collapse)Author
2004-09-23don't test for NULL pixels pointer here, do that in the 'store' routines ↵Brian Paul
after validating PBO address
2004-09-23added a comment in BindTextureBrian Paul
2004-09-15in _mesa_problem() include version number in error messageBrian Paul
2004-09-14also fix possible delete bugs with buffer objects and vertex/fragment programsBrian Paul
2004-09-14Repeatedly deleting a texture ID with glDeleteTextures() could lead to a crash.Brian Paul
Added a DeletePending flag to texture object struct to fix that. Other misc clean-ups.
2004-09-13Handle GL_MAX_VERTEX_ATTRIBS_ARB in glGet*().Brian Paul
Define 2.0 point-sprite related tokens in glheader.h (temporary).
2004-09-13remove ARB_texture_non_power_of_two from _mesa_enable_1_5_extensions()Brian Paul
2004-09-13changes towards GL_ARB_point_sprite (two-zero)Daniel Borca
2004-09-10updated error msgBrian Paul
2004-09-10More updates for Doxygen.Brian Paul
2004-09-09Update the doxygen configuration file.Jose Fonseca
Minor updates/fixes to the source documentation.
2004-09-01also test for __arm__ for setting USE_IEEE (X bug 1155)Brian Paul
2004-08-30remove CRDaniel Borca
2004-08-30revived unused code, but got rid of warningsDaniel Borca
2004-08-25Silence gcc 3.4 warnings on ReactOS. Mostly unused var warnings. (patch ↵Brian Paul
1015696)
2004-08-25Windows ICD driver code (patch 1014800)Brian Paul
2004-08-25fix a couple bad castsBrian Paul
2004-08-24Disable x86 iround() version on BeOS with gcc < 2.95.x, as it choke GAS.Philippe Houdoin
BTW, that's remove the requirement to build Mesa on BeOS with gcc 2.95.3. Still recommanded for performance, thought ;-)
2004-08-22check if __mips or _MIPS_ARCH is defined to set IEEE_ONE (bug 1003026)Brian Paul
2004-08-22also check for __hppa__ and hpux for IEEE support (bug 1003026)Brian Paul
2004-08-20enabled GL_ARB_texture_rectangleBrian Paul
2004-08-19bump version to 6.2Brian Paul
2004-08-19don't check for ARB_texture_non_power_of_two for OpenGL 1.5 (Philipp Klaus ↵Brian Paul
Krause)
2004-08-19 Committing in .Jouk Jansen
Missing .'s Modified Files: Mesa/src/mesa/main/descrip.mms Mesa/src/mesa/tnl/descrip.mms ----------------------------------------------------------------------
2004-08-18check for either GL_NV_vertex_program or GL_ARB_vertex_program for some enablesBrian Paul
2004-08-18updates from JoukBrian Paul
2004-08-17don't enable the float texture and GLhalf pixel extensions yetBrian Paul
2004-08-14Update Visual Studio Project file for src tree updates.Karl Schultz
2004-08-14fix some memory leaks (bug #1002030)Brian Paul
2004-08-14Remove obsoleted BeOS-specific makefile as the main Makefile system nowPhilippe Houdoin
support BeOS platform too.
2004-08-14Silent compiler "variable may be used uninitialized" warnings.Philippe Houdoin
2004-07-02document some assumptions made about compressed texture tile sizeBrian Paul
2004-07-02a few commentsBrian Paul
2004-07-02init some vars to silence warningsBrian Paul
2004-06-29First phase of TLS work. At this point SPARC assembly dispatch isIan Romanick
broken, but it will be fixed "shortly." This is pretty much the same as the patch I sent to the dri-devel list on 22-Jun-2004.
2004-06-28glBegin/EndQueryARB didn't work inside display listsBrian Paul
2004-06-26Re-enable SPARC assembly on sunos5-gcc platform.Ian Romanick
2004-06-24disabled unnecessary assertions in texture replicatorDaniel Borca
2004-06-21added support for non-64bit compilersDaniel Borca
2004-06-19Big-endian texture fixes from Michel Dänzer.Brian Paul
2004-06-17fix tex env mode GL_BLEND for GL_INTENSITY texture formatsRoland Scheidegger
2004-06-16fix component indexing bug in _mesa_texstore_al88()Brian Paul
2004-06-15added more compressed formats to is_color_format()Roland Scheidegger
2004-06-14added compressed formats to is_color_format() and updated some commentsBrian Paul
2004-06-11disable GL_INTENTSITY in _mesa_is_legal_format_and_type(). See table 3.6 of ↵Brian Paul
the 1.5 spec
2004-06-11s/_mesa_get_current_context()/GET_CURRENT_CONTEXT()/Brian Paul
2004-06-11remove the 3dfx CatchSignals stuff (the var was alwasy set)Brian Paul
2004-06-11added GL_BGR and GL_BGRA to is_color_format() (Ronny VindenesBrian Paul
2004-06-11fix some minor glitches in glGetTexParameter codeBrian Paul
2004-06-10Additional error checking for glTexImageXD.Brian Paul
Only allow 1D and 2D GL_DEPTH_COMPONENT textures. Make sure internal format and user format are in same catagory.