Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-01-26 | remove a bunch of temporary #defines, now that glext.h was updated | Brian Paul | |
2004-12-15 | Fix up glx/x11 to work when built with -fvisibility=hidden. | Adam Jackson | |
2004-12-06 | disable junk for mingw | Daniel Borca | |
2004-11-27 | remove the GLAPI/GLAPIENTRY defines - they're already in gl.h | Brian Paul | |
2004-11-27 | Removed GLCALLBACK stuff - apparently never used anywhere. | Brian Paul | |
Removed GLWINAPI stuff - only used (unnecessarily?) in enums.c | |||
2004-11-25 | Started some assorted clean-ups in #defines, typedefs, etc. | Brian Paul | |
Next: move all the Windows/WGL stuff into the drivers/windows/ directory. | |||
2004-11-08 | Remove need for defining _MSC_VER when building Mesa for windows with | Brian Paul | |
a non MS C compiler (MinGW). (Gregor Anich) | |||
2004-10-02 | added support for GL_ARB_draw_buffers | Brian Paul | |
2004-09-13 | Handle GL_MAX_VERTEX_ATTRIBS_ARB in glGet*(). | Brian Paul | |
Define 2.0 point-sprite related tokens in glheader.h (temporary). | |||
2004-08-25 | Windows ICD driver code (patch 1014800) | Brian Paul | |
2004-06-29 | First phase of TLS work. At this point SPARC assembly dispatch is | Ian 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-04-22 | New glTexImage code. | Brian Paul | |
The gl_texture_format struct now has a StoreTexImageFunc that's called by glTex[Sub]Image[123]D to convert the user's texture data into the specific texture format layout. Now it's much easier to add new texture formats (like the 16/32-bit floating point formats). The texutil.[ch] and texutil_tmp.h files are obsolete. | |||
2004-03-13 | Implementation of GL_EXT_pixel_buffer_object extension. | Brian Paul | |
Note: extension may not be finalized yet - subject to change! Note: implementation not fully suitable for h/w implementation yet. | |||
2004-01-28 | tweak the #if test for defining _ASMAPI (fixes IRIX problem) | Brian Paul | |
2003-12-11 | replace gl/mesa_wgl.h with GL/mesa_wgl.h (Simon Goodall) | Brian Paul | |
2003-12-09 | Fix definitions for Intel compiler. | Eric Anholt | |
Submitted by: Mikhail Teterin <mi@FreeBSD.org> | |||
2003-12-06 | conditionally define GLAPIENTRYP to prevent some warnings in linux-solo | Brian Paul | |
2003-12-04 | Change | Karl Schultz | |
#define GLAPIENTRYP __stdcall * to #define GLAPIENTRYP GLAPIENTRY * These two defs end up doing the same thing, but the compiler can squawk because they look different. Also matches the way it is declared in gl.h. Do same for GLCALLBACKP. | |||
2003-11-25 | remove __FUNCTION__ hack | Brian Paul | |
2003-10-08 | More SciTech SNAP specific changes to glheader.h. Also modified the macros | Kendall Bennett | |
in swrast/s_spantemp.h to allow dithering to be used in the SNAP drivers. | |||
2003-10-02 | Fixed bugs in Mesa software span rendering for color index modes | Kendall Bennett | |
2003-09-30 | Updates required for building the SciTech SNAP version of Mesa. This includes: | Kendall Bennett | |
1. Changes to the main header files to exclude some stuff is __SCITECH_SNAP__ is defined. The main GL/gl.h header file in SciTech SNAP is actually a wrapper that defines a bunch of necessary stuff and then included GL/gl_mesa.h which is the normal Mesa GL/gl.h header file renamed. 2. Changed APIENTRY * to APIENTRYP macros in the GL/gl.h and GL/glext.h header files. This will better support other compilers like IBM VisualAge C++. I added a basic macro for APIENTRYP to GL/gl.h (inside the !SNAP block), so existing code will compile the same, but when the SNAP version is being built we will use the correc definitions for the target compiler. 3. Changed a few more void * declarations to GLvoid *'s to avoid Open Watcom compiler complaints. 4. Updates the OPENGL_VERSION macro to include a patch number (set to 0 for now). Probably not necessary, but the original macro was wrong and we use that macro in our code. 5. Changed _tnl_end() to _tnl_end_ctx() to avoid conflicts with _tnl_End when using a compiler that has a case insensitive link. | |||
2003-09-12 | Updates to fix problems building with the Open Watcom compiler. | Kendall Bennett | |
2003-08-05 | Updates from Daniel Borca. | Brian Paul | |
2003-07-17 | Merge Jose's documentation and core Mesa changes from embedded branch | Keith Whitwell | |
2003-06-05 | Removed all RCS / CVS tags (Id, Header, Date, etc.) from everything. | Ian Romanick | |
2003-03-01 | Killed mmath.[ch]. Moved low-level functions/assembly code into imports.[ch] | Brian Paul | |
Moved type conversion and interpolation macros into macros.h Updated all the files that used to include mmath.h | |||
2002-10-30 | test both XFree86LOADER and IN_MODULE to see if we're being built as the glx ↵ | Brian Paul | |
module | |||
2002-06-15 | Added 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 | New _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-12 | Moved big/little endian code to glheader.h. | Brian Paul | |
Define either MESA_BIG_ENDIAN or MESA_LITTLE_ENDIAN. | |||
2002-03-23 | removed temporary GL_ARB_texture_mirrored_repeat enums | Brian Paul | |
2001-12-20 | Define finite as _finite for Windows. | Karl Schultz | |
2001-10-17 | added GL_ARB_texture_mirrored_repeat | Brian Paul | |
2001-07-16 | Various 16-bit GLchan fixes and Win32 fixes (Gerk Huisma) | Brian Paul | |
2001-06-15 | Added fi_type union typedef to glheader.h. | Brian Paul | |
Replace various float/int casts with the fi_type union cast. Fixes -fstrict-aliasing problems. | |||
2001-05-14 | New IFLOOR, ICEIL macros from Josh Vanderhoof. Fixes problems with | Brian Paul | |
IFLOOR(1.99999)==2, for example. Moved some macros from config.h to glheader.h | |||
2001-03-29 | Removed DD_Z_NEVER. | Brian Paul | |
Replaced SEPERATE with SEPARATE. Renumbered _NEW_ flags. Removed _NEW_COLORTABLE. | |||
2001-03-12 | Consistent copyright info (version number, date) across all files. | Gareth Hughes | |
2001-02-09 | minor updates to sync w/ XFree86 changes | Brian Paul | |
2001-01-08 | Add a 'RenderPrimitive' callback to t_vb_render.c. Helps out drivers | Keith Whitwell | |
that used to require a 'ReducedPrimitiveChange' callback. Various compilation fixes for XFree86. Reverted to the older version of glcore.h used internally in XFree86, and moved it to 'Mesa/include/GL/internal/glcore.h', for compatibility with XFree86. | |||
2000-09-26 | First batch of OpenGL SI related changes: | Brian Paul | |
Renamed struct gl_context to struct __GLcontextRec. Include glcore.h, setup GL imports/exports. Replaced gl_ prefix with _mesa_ prefix in context.[ch] functions. GLcontext's Visual field is no longer a pointer. | |||
2000-09-15 | use cpml.h on Alpha (AlanH) | Brian Paul | |
2000-09-12 | Win32 update (Chris Morley) | Brian Paul | |
2000-08-02 | define GL_GLEXT_PROTOTYPES before including mesa_wgl.h | Brian Paul | |
2000-06-12 | define GL_GLEXT_PROTOTYPES for glext.h | Brian Paul | |
2000-05-26 | applied Eero Pajarre's patch for Windows | Brian Paul | |
2000-05-22 | replaced __CYGWIN32__ with __CYGWIN__, misc clean-up | Brian Paul | |
2000-05-22 | added Window-isms previously in gl.h | Brian Paul | |
2000-03-22 | added code to die on FP exceptions if DEBEG env var set to FP | Brian Paul | |