summaryrefslogtreecommitdiff
path: root/include/GL/gl.h
AgeCommit message (Collapse)Author
2009-02-18mesa: bump gl.h version comment to 7.7 (bug 20170)Brian Paul
2008-07-16mesa: WinCE fixesJonathan White
2008-06-24mesa: WGL is not part of the WinCE API.José Fonseca
Although it would be interesting having the GDI winsys running on WinCE several Windows GDI API functions and data structures are missing from WinCE headers, making this far from a trivial endeavor.
2007-07-21Fix a number of MINGW32 issuesZhang
2007-05-19Disable (at least for now) PFNGLFRAMEBUFFERTEXTURELAYEREXTPROC typedef.Brian
If an app (like progs/samples/blendxor.c) includes both gl.h and glext.h this typedef will get hit in both headers, causing an error. Possibly work around by bringing GL_NV_geometry_program4 items into gl.h.
2007-05-16Add enums and functions for GL_{MESA,EXT}_texture_array.Ian Romanick
2006-11-16remove obsolete GL_MESA_trace stuffBrian Paul
2006-10-09return void instead of GLvoid for glClearDebugLogMESA(), glGetDebugLogMESA()Brian Paul
2006-08-30remove extension defines/protos that are now in glext.hBrian Paul
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-15s/GLvoid/void/ to fix gcc 4.2 issue (bug 7875)Brian Paul
2006-08-12Fix white-space problem in the prototype for glBlitFramebufferEXT thatIan Romanick
prevented gl_mangle.h from picking it up.
2006-08-03added GL_EXT_texture_sRGBBrian Paul
2006-06-20reorder a few token definitionsBrian Paul
2006-03-31bump version/dateBrian Paul
2006-03-01GL_EXT_framebuffer_blit tokens/functionsBrian Paul
2005-12-08remove stray _ from GL[u]int64_EXTBrian Paul
2005-12-08handle 64-bit types for Windows.Karl Schultz
2005-12-07Updates for GL_EXT_timer_query:Brian Paul
New GLint64EXT and GLuint64EXT types (use C99's long long types). New glGetQueryObject[u]i64vEXT() functions.
2005-09-28added GL_EXT_packed_depth_stencilBrian Paul
2005-09-02added GL_EXT_timer_query tokenBrian Paul
2005-06-08put full prototype on one line to fix gl_mangle.h generation (Dave Reveman)Brian Paul
2005-05-31remove temporary GL_EXT_framebuffer_object infoBrian Paul
2005-05-11The "P" suffix on APIENTRY and GLAPIENTRY is to be used for pointers toKarl Schultz
functions, not for functions that return pointers. Restore protoype for glGetString back to its correct form.
2005-02-08Bug #2477: Make GLU/GLw/glut build properly even with -fvisibility=hidden.Adam Jackson
2005-02-08added GL_EXT_framebuffer_object enums/funcs. Remove when glext.h is updatedBrian Paul
2005-01-26remove a bunch of temporary #defines, now that glext.h was updatedIan Romanick
2005-01-20glext.h version 26Brian Paul
2005-01-16added a few OpenGL 2.0 tokens (temporary)Brian Paul
2005-01-12temporary prototypes for OpenGL 2.0Brian Paul
2004-11-29no need to include stddef.h anymoreBrian Paul
2004-11-25minor APIENTRY clean-upsBrian Paul
2004-11-08Remove need for defining _MSC_VER when building Mesa for windows withBrian Paul
a non MS C compiler (MinGW). (Gregor Anich)
2004-10-16Add support for OES_read_format. As soon as glext.h is updated with theIan Romanick
enums for this extension, the changes to gl.h can be removed.
2004-09-27version bumpBrian Paul
2004-06-22Alexander Gottwald's patch for cygwinBrian Paul
2004-04-23move #define for GL_DOUBLE, to put enums in right orderBrian Paul
2004-02-05update function mangling and add comment about it to gl.hBrian Paul
2004-01-27Missed this commit as part of the addition ofIan Romanick
GL_EXT_blend_equation_separate / GL_ATI_blend_equation_separate.
2004-01-13remove stuff that's now in glext.hBrian Paul
2003-12-11replace gl/mesa_wgl.h with GL/mesa_wgl.h (Simon Goodall)Brian Paul
2003-12-08reverse Keith's 'XFree86Server' glue.Alan Hourihane
2003-12-08Can't include <stddef.h> when building XFree86 server - defineKeith Whitwell
ptrdiff_t to int instead
2003-12-06s/APIENTRY/GLAPIENTRY/ for 1.5 functionsBrian Paul
2003-12-04check if GLAPIENTRYP is already setAlan Hourihane
2003-12-04#define GLAPIENTRYP GLAPIENTRY *Alan Hourihane
2003-11-23include malloc.h to get ptrdiff_t for vertex buffer object's GLintptrBrian Paul
2003-11-22added OpenGL 1.5 tokens and functions not yet put into glext.hBrian Paul
2003-10-16added GL_ARB_point_sprite tokensBrian Paul
2003-09-30Updates 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.