diff options
author | Marek Olšák <[email protected]> | 2018-07-18 18:06:37 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-08-04 02:43:05 -0400 |
commit | f7d42ee7d319256608ad60778f6787c140badada (patch) | |
tree | 2eb38a10cb9a13964139c08adc33fe409457570f /include/GL/glxext.h | |
parent | fd1121e8399ef1439a6a1cec8246b970cceac7fa (diff) |
include: update GL & GLES headers (v2)
v2: use correct files
Acked-by: Ian Romanick <[email protected]>
Diffstat (limited to 'include/GL/glxext.h')
-rw-r--r-- | include/GL/glxext.h | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/include/GL/glxext.h b/include/GL/glxext.h index 0f60a380c21..4c984ef4b89 100644 --- a/include/GL/glxext.h +++ b/include/GL/glxext.h @@ -1,12 +1,12 @@ -#ifndef __glxext_h_ -#define __glxext_h_ 1 +#ifndef __glx_glxext_h_ +#define __glx_glxext_h_ 1 #ifdef __cplusplus extern "C" { #endif /* -** Copyright (c) 2013-2017 The Khronos Group Inc. +** Copyright (c) 2013-2018 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 @@ -34,7 +34,7 @@ extern "C" { ** https://github.com/KhronosGroup/OpenGL-Registry */ -#define GLX_GLXEXT_VERSION 20170728 +#define GLX_GLXEXT_VERSION 20180525 /* Generated C header for: * API: glx @@ -325,6 +325,10 @@ void glXFreeContextEXT (Display *dpy, GLXContext context); #define GLX_VENDOR_NAMES_EXT 0x20F6 #endif /* GLX_EXT_libglvnd */ +#ifndef GLX_EXT_no_config_context +#define GLX_EXT_no_config_context 1 +#endif /* GLX_EXT_no_config_context */ + #ifndef GLX_EXT_stereo_tree #define GLX_EXT_stereo_tree 1 typedef struct { @@ -503,6 +507,16 @@ Bool glXSet3DfxModeMESA (int mode); #endif #endif /* GLX_MESA_set_3dfx_mode */ +#ifndef GLX_MESA_swap_control +#define GLX_MESA_swap_control 1 +typedef int ( *PFNGLXGETSWAPINTERVALMESAPROC) (void); +typedef int ( *PFNGLXSWAPINTERVALMESAPROC) (unsigned int interval); +#ifdef GLX_GLXEXT_PROTOTYPES +int glXGetSwapIntervalMESA (void); +int glXSwapIntervalMESA (unsigned int interval); +#endif +#endif /* GLX_MESA_swap_control */ + #ifndef GLX_NV_copy_buffer #define GLX_NV_copy_buffer 1 typedef void ( *PFNGLXCOPYBUFFERSUBDATANVPROC) (Display *dpy, GLXContext readCtx, GLXContext writeCtx, GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); |