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 2065 by niro, Thu Mar 7 13:34:21 2013 UTC
# Line 6  extern "C" { Line 6  extern "C" {
6  #endif  #endif
7    
8  /*  /*
9  ** Copyright (c) 2007-2010 The Khronos Group Inc.  ** Copyright (c) 2007-2012 The Khronos Group Inc.
10  **  **
11  ** Permission is hereby granted, free of charge, to any person obtaining a  ** Permission is hereby granted, free of charge, to any person obtaining a
12  ** 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 48  extern "C" {
48  /*************************************************************/  /*************************************************************/
49    
50  /* Header file version number, required by OpenGL ABI for Linux */  /* Header file version number, required by OpenGL ABI for Linux */
51  /* glxext.h last updated 2010/08/06 */  /* glxext.h last updated 2013/01/02 */
52  /* Current version at http://www.opengl.org/registry/ */  /* Current version at http://www.opengl.org/registry/ */
53  #define GLX_GLXEXT_VERSION 32  #define GLX_GLXEXT_VERSION 34
54    
55  #ifndef GLX_VERSION_1_3  #ifndef GLX_VERSION_1_3
56  #define GLX_WINDOW_BIT                     0x00000001  #define GLX_WINDOW_BIT                     0x00000001
# Line 440  extern "C" { Line 440  extern "C" {
440  #define GLX_CONTEXT_ES2_PROFILE_BIT_EXT    0x00000004  #define GLX_CONTEXT_ES2_PROFILE_BIT_EXT    0x00000004
441  #endif  #endif
442    
443    #ifndef GLX_EXT_create_context_es_profile
444    #define GLX_CONTEXT_ES_PROFILE_BIT_EXT     0x00000004
445    #endif
446    
447    #ifndef GLX_EXT_swap_control_tear
448    #define GLX_LATE_SWAPS_TEAR_EXT            0x20F3
449    #endif
450    
451    #ifndef GLX_EXT_buffer_age
452    #define GLX_BACK_BUFFER_AGE_EXT            0x20F4
453    #endif
454    
455    
456  /*************************************************************/  /*************************************************************/
457    
# Line 964  typedef void ( * PFNGLXRELEASEVIDEOCAPTU Line 976  typedef void ( * PFNGLXRELEASEVIDEOCAPTU
976  #ifndef GLX_EXT_swap_control  #ifndef GLX_EXT_swap_control
977  #define GLX_EXT_swap_control 1  #define GLX_EXT_swap_control 1
978  #ifdef GLX_GLXEXT_PROTOTYPES  #ifdef GLX_GLXEXT_PROTOTYPES
979  extern int glXSwapIntervalEXT (Display *dpy, GLXDrawable drawable, int interval);  extern void glXSwapIntervalEXT (Display *dpy, GLXDrawable drawable, int interval);
980  #endif /* GLX_GLXEXT_PROTOTYPES */  #endif /* GLX_GLXEXT_PROTOTYPES */
981  typedef int ( * PFNGLXSWAPINTERVALEXTPROC) (Display *dpy, GLXDrawable drawable, int interval);  typedef void ( * PFNGLXSWAPINTERVALEXTPROC) (Display *dpy, GLXDrawable drawable, int interval);
982  #endif  #endif
983    
984  #ifndef GLX_NV_copy_image  #ifndef GLX_NV_copy_image
# Line 985  typedef void ( * PFNGLXCOPYIMAGESUBDATAN Line 997  typedef void ( * PFNGLXCOPYIMAGESUBDATAN
997  #define GLX_NV_multisample_coverage 1  #define GLX_NV_multisample_coverage 1
998  #endif  #endif
999    
1000    #ifndef GLX_EXT_create_context_es2_profile
1001    #define GLX_EXT_create_context_es2_profile 1
1002    #endif
1003    
1004    #ifndef GLX_EXT_create_context_es_profile
1005    #define GLX_EXT_create_context_es_profile 1
1006    #endif
1007    
1008    #ifndef GLX_EXT_swap_control_tear
1009    #define GLX_EXT_swap_control_tear 1
1010    #endif
1011    
1012    #ifndef GLX_EXT_buffer_age
1013    #define GLX_EXT_buffer_age 1
1014    #endif
1015    
1016    
1017  #ifdef __cplusplus  #ifdef __cplusplus
1018  }  }

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