Magellan Linux

Diff of /tags/openglupdate-2_3_12/glxext.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1145 by niro, Fri Aug 20 12:05:55 2010 UTC revision 2197 by niro, Fri Oct 11 12:53:14 2013 UTC
# Line 6  extern "C" { Line 6  extern "C" {
6  #endif  #endif
7    
8  /*  /*
9  ** Copyright (c) 2007-2010 The Khronos Group Inc.  ** THIS FILE IS OBSOLETE. Please migrate away from using the
10    ** ".spec" files and the headers generated from them to the
11    ** XML Registry and headers generated from that. See
12    **   http://www.opengl.org/registry/api/README.txt
13    ** for more information.
14    **
15    **
16    ** Copyright (c) 2007-2013 The Khronos Group Inc.
17  **  **
18  ** Permission is hereby granted, free of charge, to any person obtaining a  ** Permission is hereby granted, free of charge, to any person obtaining a
19  ** copy of this software and/or associated documentation files (the  ** copy of this software and/or associated documentation files (the
# Line 48  extern "C" { Line 55  extern "C" {
55  /*************************************************************/  /*************************************************************/
56    
57  /* Header file version number, required by OpenGL ABI for Linux */  /* Header file version number, required by OpenGL ABI for Linux */
58  /* glxext.h last updated 2010/08/06 */  /* glxext.h last updated 2013/06/10 */
59  /* Current version at http://www.opengl.org/registry/ */  /* Current version at http://www.opengl.org/registry/ */
60  #define GLX_GLXEXT_VERSION 32  #define GLX_GLXEXT_VERSION 36
61    
62  #ifndef GLX_VERSION_1_3  #ifndef GLX_VERSION_1_3
63  #define GLX_WINDOW_BIT                     0x00000001  #define GLX_WINDOW_BIT                     0x00000001
# Line 440  extern "C" { Line 447  extern "C" {
447  #define GLX_CONTEXT_ES2_PROFILE_BIT_EXT    0x00000004  #define GLX_CONTEXT_ES2_PROFILE_BIT_EXT    0x00000004
448  #endif  #endif
449    
450    #ifndef GLX_EXT_create_context_es_profile
451    #define GLX_CONTEXT_ES_PROFILE_BIT_EXT     0x00000004
452    #endif
453    
454    #ifndef GLX_EXT_swap_control_tear
455    #define GLX_LATE_SWAPS_TEAR_EXT            0x20F3
456    #endif
457    
458    #ifndef GLX_EXT_buffer_age
459    #define GLX_BACK_BUFFER_AGE_EXT            0x20F4
460    #endif
461    
462    
463  /*************************************************************/  /*************************************************************/
464    
# Line 964  typedef void ( * PFNGLXRELEASEVIDEOCAPTU Line 983  typedef void ( * PFNGLXRELEASEVIDEOCAPTU
983  #ifndef GLX_EXT_swap_control  #ifndef GLX_EXT_swap_control
984  #define GLX_EXT_swap_control 1  #define GLX_EXT_swap_control 1
985  #ifdef GLX_GLXEXT_PROTOTYPES  #ifdef GLX_GLXEXT_PROTOTYPES
986  extern int glXSwapIntervalEXT (Display *dpy, GLXDrawable drawable, int interval);  extern void glXSwapIntervalEXT (Display *dpy, GLXDrawable drawable, int interval);
987  #endif /* GLX_GLXEXT_PROTOTYPES */  #endif /* GLX_GLXEXT_PROTOTYPES */
988  typedef int ( * PFNGLXSWAPINTERVALEXTPROC) (Display *dpy, GLXDrawable drawable, int interval);  typedef void ( * PFNGLXSWAPINTERVALEXTPROC) (Display *dpy, GLXDrawable drawable, int interval);
989  #endif  #endif
990    
991  #ifndef GLX_NV_copy_image  #ifndef GLX_NV_copy_image
# Line 985  typedef void ( * PFNGLXCOPYIMAGESUBDATAN Line 1004  typedef void ( * PFNGLXCOPYIMAGESUBDATAN
1004  #define GLX_NV_multisample_coverage 1  #define GLX_NV_multisample_coverage 1
1005  #endif  #endif
1006    
1007    #ifndef GLX_EXT_create_context_es2_profile
1008    #define GLX_EXT_create_context_es2_profile 1
1009    #endif
1010    
1011    #ifndef GLX_EXT_create_context_es_profile
1012    #define GLX_EXT_create_context_es_profile 1
1013    #endif
1014    
1015    #ifndef GLX_EXT_swap_control_tear
1016    #define GLX_EXT_swap_control_tear 1
1017    #endif
1018    
1019    #ifndef GLX_EXT_buffer_age
1020    #define GLX_EXT_buffer_age 1
1021    #endif
1022    
1023    
1024  #ifdef __cplusplus  #ifdef __cplusplus
1025  }  }

Legend:
Removed from v.1145  
changed lines
  Added in v.2197