diff options
| author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-08-11 15:10:53 -0600 | 
|---|---|---|
| committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-08-11 15:21:40 -0600 | 
| commit | 0423a39239c57575708a2698c726cd57791bc357 (patch) | |
| tree | 82bf8eef28a2acdd1f3bf8b7fe3dfb026fd4ad70 | |
| parent | 1a1079e0661b8914b5f292c720dd7a77c796c292 (diff) | |
version 20 of glxext.h
| -rw-r--r-- | include/GL/glxext.h | 36 | 
1 files changed, 34 insertions, 2 deletions
| diff --git a/include/GL/glxext.h b/include/GL/glxext.h index aedc311cbf..5328acd1d9 100644 --- a/include/GL/glxext.h +++ b/include/GL/glxext.h @@ -46,9 +46,9 @@ extern "C" {  /*************************************************************/  /* Header file version number, required by OpenGL ABI for Linux */ -/* glxext.h last updated 2007/04/21 */ +/* glxext.h last updated 2008/08/10 */  /* Current version at http://www.opengl.org/registry/ */ -#define GLX_GLXEXT_VERSION 19 +#define GLX_GLXEXT_VERSION 20  #ifndef GLX_VERSION_1_3  #define GLX_WINDOW_BIT                     0x00000001 @@ -346,6 +346,26 @@ extern "C" {  #define GLX_AUX9_EXT                       0x20EB  #endif +#ifndef GLX_NV_present_video +#define GLX_GLX_NUM_VIDEO_SLOTS_NV         0x20F0 +#endif + +#ifndef GLX_NV_video_out +#define GLX_GLX_VIDEO_OUT_COLOR_NV         0x20C3 +#define GLX_GLX_VIDEO_OUT_ALPHA_NV         0x20C4 +#define GLX_GLX_VIDEO_OUT_DEPTH_NV         0x20C5 +#define GLX_GLX_VIDEO_OUT_COLOR_AND_ALPHA_NV 0x20C6 +#define GLX_GLX_VIDEO_OUT_COLOR_AND_DEPTH_NV 0x20C7 +#define GLX_GLX_VIDEO_OUT_FRAME_NV         0x20C8 +#define GLX_GLX_VIDEO_OUT_FIELD_1_NV       0x20C9 +#define GLX_GLX_VIDEO_OUT_FIELD_2_NV       0x20CA +#define GLX_GLX_VIDEO_OUT_STACKED_FIELDS_1_2_NV 0x20CB +#define GLX_GLX_VIDEO_OUT_STACKED_FIELDS_2_1_NV 0x20CC +#endif + +#ifndef GLX_NV_swap_group +#endif +  /*************************************************************/ @@ -777,6 +797,18 @@ typedef void ( * PFNGLXBINDTEXIMAGEEXTPROC) (Display *dpy, GLXDrawable drawable,  typedef void ( * PFNGLXRELEASETEXIMAGEEXTPROC) (Display *dpy, GLXDrawable drawable, int buffer);  #endif +#ifndef GLX_NV_present_video +#define GLX_NV_present_video 1 +#endif + +#ifndef GLX_NV_video_out +#define GLX_NV_video_out 1 +#endif + +#ifndef GLX_NV_swap_group +#define GLX_NV_swap_group 1 +#endif +  #ifdef __cplusplus  } | 
