diff options
author | marha <marha@users.sourceforge.net> | 2012-06-28 08:08:21 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-06-28 08:08:21 +0200 |
commit | 67551627d34fff4a0fbe719bce33a3bacb55ccef (patch) | |
tree | 37b58281a1186148a56dbb3b9eed6eaf759cbe7b /mesalib/include/GL/glxext.h | |
parent | 7baa3d795c87c11550f1686488c968320428cbf9 (diff) | |
download | vcxsrv-67551627d34fff4a0fbe719bce33a3bacb55ccef.tar.gz vcxsrv-67551627d34fff4a0fbe719bce33a3bacb55ccef.tar.bz2 vcxsrv-67551627d34fff4a0fbe719bce33a3bacb55ccef.zip |
xkeyboard-config mesa fontconfig randrproto git update 28 Jun 2012
Diffstat (limited to 'mesalib/include/GL/glxext.h')
-rw-r--r-- | mesalib/include/GL/glxext.h | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/mesalib/include/GL/glxext.h b/mesalib/include/GL/glxext.h index 3c47dc363..e640ff7e3 100644 --- a/mesalib/include/GL/glxext.h +++ b/mesalib/include/GL/glxext.h @@ -6,7 +6,7 @@ extern "C" { #endif /* -** Copyright (c) 2007-2010 The Khronos Group Inc. +** Copyright (c) 2007-2012 The Khronos Group Inc. ** ** Permission is hereby granted, free of charge, to any person obtaining a ** copy of this software and/or associated documentation files (the @@ -48,9 +48,9 @@ extern "C" { /*************************************************************/ /* Header file version number, required by OpenGL ABI for Linux */ -/* glxext.h last updated 2010/08/06 */ +/* glxext.h last updated 2012/02/29 */ /* Current version at http://www.opengl.org/registry/ */ -#define GLX_GLXEXT_VERSION 32 +#define GLX_GLXEXT_VERSION 33 #ifndef GLX_VERSION_1_3 #define GLX_WINDOW_BIT 0x00000001 @@ -440,6 +440,10 @@ extern "C" { #define GLX_CONTEXT_ES2_PROFILE_BIT_EXT 0x00000004 #endif +#ifndef GLX_EXT_swap_control_tear +#define GLX_LATE_SWAPS_TEAR_EXT 0x20F3 +#endif + /*************************************************************/ @@ -964,9 +968,9 @@ typedef void ( * PFNGLXRELEASEVIDEOCAPTUREDEVICENVPROC) (Display *dpy, GLXVideoC #ifndef GLX_EXT_swap_control #define GLX_EXT_swap_control 1 #ifdef GLX_GLXEXT_PROTOTYPES -extern int glXSwapIntervalEXT (Display *dpy, GLXDrawable drawable, int interval); +extern void glXSwapIntervalEXT (Display *dpy, GLXDrawable drawable, int interval); #endif /* GLX_GLXEXT_PROTOTYPES */ -typedef int ( * PFNGLXSWAPINTERVALEXTPROC) (Display *dpy, GLXDrawable drawable, int interval); +typedef void ( * PFNGLXSWAPINTERVALEXTPROC) (Display *dpy, GLXDrawable drawable, int interval); #endif #ifndef GLX_NV_copy_image @@ -985,6 +989,10 @@ typedef void ( * PFNGLXCOPYIMAGESUBDATANVPROC) (Display *dpy, GLXContext srcCtx, #define GLX_NV_multisample_coverage 1 #endif +#ifndef GLX_EXT_swap_control_tear +#define GLX_EXT_swap_control_tear 1 +#endif + #ifdef __cplusplus } |