Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-07-24 | Gut a few more dead bits. Replace uses of the CreateNewScreenFunc typedef | Ian Romanick | |
(from glxclient.h) with PFNCREATENEWSCREEN (from dri_interface.h). Remove the prototype for __driCreateScreen and fix the prototype for __driCreateNewScreen (append the API version) in dri_interface.h. | |||
2005-07-24 | All elements of pre-DRI_NEW_INTERFACE_ONLY are removed. This allows | Ian Romanick | |
1,402 lines of code to be removed from Mesa (drivers and libGL). The big winner is dri_util.c. Primary changes are: 1. Remove all "deprecated" entry-points from the various structures in dri_interface.h. 2. Rename the remaining fields to removed "version numbers." So, bindContext3 becomes bindContext. Functions with "New" in the name (e.g., CreateNewContext) were *not* changed, but that is an option. Having "New" in the name is less annoying to me than having "3" in the name. 3. Remove all compatibility code that handles cases where the driver or the loader is too old to support the latest interfaces. 4. Append the API version to the __driCreateNewScreen function name. This is currently done by hand. In the future (i.e., the next time we make an incompatible change to the interface) we'll want to come up with a better way to do this. This prevents old loaders from being able to load new (incompatible) drivers. 5. Bump the API version to 20050722. All drivers (by way of dri_util.c) require this version. 6. All drivers are *required* to expose GLX_SGIX_fbconfig and GLX_OML_swap_method (or the moral equivalents). Support for these functions in implicit in the use of the "new" interface. 7. Some cases still exist that need to be compiled differently in a loader or core Mesa versus in a driver. These are identified by the define IN_DRI_DRIVER. | |||
2005-06-21 | updated to version 29 | Brian Paul | |
2005-06-08 | regenerated | Brian Paul | |
2005-06-08 | put full prototype on one line to fix gl_mangle.h generation (Dave Reveman) | Brian Paul | |
2005-06-08 | remove stray line | Brian Paul | |
2005-06-08 | regenerate for latest glext.h | Brian Paul | |
2005-05-31 | remove temporary GL_EXT_framebuffer_object info | Brian Paul | |
2005-05-31 | updated to version 28 | Brian Paul | |
2005-05-11 | The "P" suffix on APIENTRY and GLAPIENTRY is to be used for pointers to | Karl Schultz | |
functions, not for functions that return pointers. Restore protoype for glGetString back to its correct form. | |||
2005-05-04 | Major check-in of changes for GL_EXT_framebuffer_object extension. | Brian Paul | |
Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested. | |||
2005-02-26 | bring over structs from Xorg glx.h to make Mesa glx.h the one true glx.h | Dave Airlie | |
2005-02-26 | Add GLX_MESA_allocate_memory from Xorg glx.h | Dave Airlie | |
2005-02-20 | add more functionality to miniglx for glitz | Dave Airlie | |
2005-02-16 | fix non-Win32 definition of GLUTAPIENTRY, remove some cruft | Brian Paul | |
2005-02-15 | add EnableExtension so r200 enables all its extensions, add mesa memory | Dave Airlie | |
extension entry points | |||
2005-02-08 | Bug #2477: Make GLU/GLw/glut build properly even with -fvisibility=hidden. | Adam Jackson | |
2005-02-08 | added GL_EXT_framebuffer_object enums/funcs. Remove when glext.h is updated | Brian Paul | |
2005-01-26 | remove a bunch of temporary #defines, now that glext.h was updated | Ian Romanick | |
2005-01-21 | fix glGetString funniness | Brian Paul | |
2005-01-20 | glext.h version 26 | Brian Paul | |
2005-01-16 | added a few OpenGL 2.0 tokens (temporary) | Brian Paul | |
2005-01-12 | temporary prototypes for OpenGL 2.0 | Brian Paul | |
2005-01-04 | added GLX_NV_float_buffer | Brian Paul | |
2005-01-03 | DirectFB driver (Claudio Ciccani) | Brian Paul | |
2004-12-17 | VMS update | Brian Paul | |
2004-12-15 | added DMesaProc type to prevent gcc 3.4.3 warnings | Daniel Borca | |
2004-12-14 | uint*t -> u_int*t changes | Alan Hourihane | |
2004-12-08 | Check for some header defines before redefining functions. Silences warnings. | Alan Hourihane | |
2004-11-29 | no need to include stddef.h anymore | Brian Paul | |
2004-11-27 | Have OSMesaGetProcAddress() return new OSMESAproc typedef. | Brian Paul | |
2004-11-27 | typedef GLUTproc, return it from glutGetProcAddress() | Brian Paul | |
2004-11-25 | minor APIENTRY clean-ups | Brian Paul | |
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-25 | Import sarea.h from Xorg, needed for client GLX code. | Adam Jackson | |
2004-10-16 | Add support for OES_read_format. As soon as glext.h is updated with the | Ian Romanick | |
enums for this extension, the changes to gl.h can be removed. | |||
2004-10-12 | bump version numbers to their real values | Daniel Borca | |
2004-10-02 | remove unused413 stuff, glDrawBuffersARB uses that slot now | Brian Paul | |
2004-09-27 | version bump | Brian Paul | |
2004-09-27 | change include of glx_mangle.h to match other headers | Brian Paul | |
2004-09-09 | Another attempt at fixing name mangling and gl__unused413(). | Brian Paul | |
2004-08-25 | Silence gcc 3.4 warnings on ReactOS. Mostly unused var warnings. (patch ↵ | Brian Paul | |
1015696) | |||
2004-07-28 | version 6 from oss.sgi.com | Brian Paul | |
2004-07-28 | version 24 from oss.sgi.com | Brian Paul | |
2004-06-26 | Mesa-solo builds with these changes. There are still more fixups needed to | Jon Smirl | |
get individual drivers working again. This converts miniglx to the new dri interface. Thanks to Erdi Chen for the new interface code. | |||
2004-06-23 | updated to version 23 | Brian Paul | |
2004-06-22 | Alexander Gottwald's patch for cygwin | Brian Paul | |
2004-06-06 | Remove the rest of the need for glxclient.h and remove it from the tree. | Ian Romanick | |
2004-06-03 | kill __driRegisterExtensions(), none of the functions did anything | Jon Smirl | |
2004-06-02 | Replace Bool with GLboolean. | Ian Romanick | |