Clone of mesa.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445
  1. /* $Id: glx.h,v 1.28 2001/06/25 15:29:11 brianp Exp $ */
  2. /*
  3. * Mesa 3-D graphics library
  4. * Version: 3.5
  5. *
  6. * Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a
  9. * copy of this software and associated documentation files (the "Software"),
  10. * to deal in the Software without restriction, including without limitation
  11. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  12. * and/or sell copies of the Software, and to permit persons to whom the
  13. * Software is furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included
  16. * in all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  19. * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  21. * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  22. * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  23. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  24. */
  25. #ifndef GLX_H
  26. #define GLX_H
  27. #ifdef __VMS
  28. #include <GL/vms_x_fix.h>
  29. # ifdef __cplusplus
  30. /* VMS Xlib.h gives problems with C++.
  31. * this avoids a bunch of trivial warnings */
  32. #pragma message disable nosimpint
  33. #endif
  34. #endif
  35. #include <X11/Xlib.h>
  36. #include <X11/Xutil.h>
  37. #ifdef __VMS
  38. # ifdef __cplusplus
  39. #pragma message enable nosimpint
  40. #endif
  41. #endif
  42. #include <GL/gl.h>
  43. #if defined(USE_MGL_NAMESPACE)
  44. #include <GL/glx_mangle.h>
  45. #endif
  46. #ifdef __cplusplus
  47. extern "C" {
  48. #endif
  49. #define GLX_VERSION_1_1 1
  50. #define GLX_VERSION_1_2 1
  51. #define GLX_VERSION_1_3 1
  52. #define GLX_EXTENSION_NAME "GLX"
  53. /*
  54. * Tokens for glXChooseVisual and glXGetConfig:
  55. */
  56. #define GLX_USE_GL 1
  57. #define GLX_BUFFER_SIZE 2
  58. #define GLX_LEVEL 3
  59. #define GLX_RGBA 4
  60. #define GLX_DOUBLEBUFFER 5
  61. #define GLX_STEREO 6
  62. #define GLX_AUX_BUFFERS 7
  63. #define GLX_RED_SIZE 8
  64. #define GLX_GREEN_SIZE 9
  65. #define GLX_BLUE_SIZE 10
  66. #define GLX_ALPHA_SIZE 11
  67. #define GLX_DEPTH_SIZE 12
  68. #define GLX_STENCIL_SIZE 13
  69. #define GLX_ACCUM_RED_SIZE 14
  70. #define GLX_ACCUM_GREEN_SIZE 15
  71. #define GLX_ACCUM_BLUE_SIZE 16
  72. #define GLX_ACCUM_ALPHA_SIZE 17
  73. /*
  74. * Error codes returned by glXGetConfig:
  75. */
  76. #define GLX_BAD_SCREEN 1
  77. #define GLX_BAD_ATTRIBUTE 2
  78. #define GLX_NO_EXTENSION 3
  79. #define GLX_BAD_VISUAL 4
  80. #define GLX_BAD_CONTEXT 5
  81. #define GLX_BAD_VALUE 6
  82. #define GLX_BAD_ENUM 7
  83. /*
  84. * GLX 1.1 and later:
  85. */
  86. #define GLX_VENDOR 1
  87. #define GLX_VERSION 2
  88. #define GLX_EXTENSIONS 3
  89. /*
  90. * GLX 1.3 and later:
  91. */
  92. #define GLX_CONFIG_CAVEAT 0x20
  93. #define GLX_DONT_CARE 0xFFFFFFFF
  94. #define GLX_SLOW_CONFIG 0x8001
  95. #define GLX_NON_CONFORMANT_CONFIG 0x800D
  96. #define GLX_X_VISUAL_TYPE 0x22
  97. #define GLX_TRANSPARENT_TYPE 0x23
  98. #define GLX_TRANSPARENT_INDEX_VALUE 0x24
  99. #define GLX_TRANSPARENT_RED_VALUE 0x25
  100. #define GLX_TRANSPARENT_GREEN_VALUE 0x26
  101. #define GLX_TRANSPARENT_BLUE_VALUE 0x27
  102. #define GLX_TRANSPARENT_ALPHA_VALUE 0x28
  103. #define GLX_MAX_PBUFFER_WIDTH 0x8016
  104. #define GLX_MAX_PBUFFER_HEIGHT 0x8017
  105. #define GLX_MAX_PBUFFER_PIXELS 0x8018
  106. #define GLX_PRESERVED_CONTENTS 0x801B
  107. #define GLX_LARGEST_BUFFER 0x801C
  108. #define GLX_DRAWABLE_TYPE 0x8010
  109. #define GLX_FBCONFIG_ID 0x8013
  110. #define GLX_VISUAL_ID 0x800B
  111. #define GLX_WINDOW_BIT 0x00000001
  112. #define GLX_PIXMAP_BIT 0x00000002
  113. #define GLX_PBUFFER_BIT 0x00000004
  114. #define GLX_AUX_BUFFERS_BIT 0x00000010
  115. #define GLX_FRONT_LEFT_BUFFER_BIT 0x00000001
  116. #define GLX_FRONT_RIGHT_BUFFER_BIT 0x00000002
  117. #define GLX_BACK_LEFT_BUFFER_BIT 0x00000004
  118. #define GLX_BACK_RIGHT_BUFFER_BIT 0x00000008
  119. #define GLX_AUX_BUFFERS_BIT 0x00000010
  120. #define GLX_DEPTH_BUFFER_BIT 0x00000020
  121. #define GLX_STENCIL_BUFFER_BIT 0x00000040
  122. #define GLX_ACCUM_BUFFER_BIT 0x00000080
  123. #define GLX_DRAWABLE_TYPE 0x8010
  124. #define GLX_RENDER_TYPE 0x8011
  125. #define GLX_X_RENDERABLE 0x8012
  126. #define GLX_NONE 0x8000
  127. #define GLX_TRUE_COLOR 0x8002
  128. #define GLX_DIRECT_COLOR 0x8003
  129. #define GLX_PSEUDO_COLOR 0x8004
  130. #define GLX_STATIC_COLOR 0x8005
  131. #define GLX_GRAY_SCALE 0x8006
  132. #define GLX_STATIC_GRAY 0x8007
  133. #define GLX_TRANSPARENT_INDEX 0x8009
  134. #define GLX_COLOR_INDEX_TYPE 0x8015
  135. #define GLX_COLOR_INDEX_BIT 0x00000002
  136. #define GLX_SCREEN 0x800C
  137. #define GLX_PBUFFER_CLOBBER_MASK 0x08000000
  138. #define GLX_DAMAGED 0x8020
  139. #define GLX_SAVED 0x8021
  140. #define GLX_WINDOW 0x8022
  141. #define GLX_PBUFFER 0x8023
  142. #define GLX_PBUFFER_HEIGHT 0x8040
  143. #define GLX_PBUFFER_WIDTH 0x8041
  144. typedef struct __GLXcontextRec *GLXContext;
  145. typedef XID GLXPixmap;
  146. typedef XID GLXDrawable;
  147. /* GLX 1.3 and later */
  148. typedef struct __GLXFBConfigRec *GLXFBConfig;
  149. typedef XID GLXFBConfigID;
  150. typedef XID GLXContextID;
  151. typedef XID GLXWindow;
  152. typedef XID GLXPbuffer;
  153. extern XVisualInfo* glXChooseVisual( Display *dpy, int screen,
  154. int *attribList );
  155. extern GLXContext glXCreateContext( Display *dpy, XVisualInfo *vis,
  156. GLXContext shareList, Bool direct );
  157. extern void glXDestroyContext( Display *dpy, GLXContext ctx );
  158. extern Bool glXMakeCurrent( Display *dpy, GLXDrawable drawable,
  159. GLXContext ctx);
  160. extern void glXCopyContext( Display *dpy, GLXContext src, GLXContext dst,
  161. unsigned long mask );
  162. extern void glXSwapBuffers( Display *dpy, GLXDrawable drawable );
  163. extern GLXPixmap glXCreateGLXPixmap( Display *dpy, XVisualInfo *visual,
  164. Pixmap pixmap );
  165. extern void glXDestroyGLXPixmap( Display *dpy, GLXPixmap pixmap );
  166. extern Bool glXQueryExtension( Display *dpy, int *errorb, int *event );
  167. extern Bool glXQueryVersion( Display *dpy, int *maj, int *min );
  168. extern Bool glXIsDirect( Display *dpy, GLXContext ctx );
  169. extern int glXGetConfig( Display *dpy, XVisualInfo *visual,
  170. int attrib, int *value );
  171. extern GLXContext glXGetCurrentContext( void );
  172. extern GLXDrawable glXGetCurrentDrawable( void );
  173. extern void glXWaitGL( void );
  174. extern void glXWaitX( void );
  175. extern void glXUseXFont( Font font, int first, int count, int list );
  176. /* GLX 1.1 and later */
  177. extern const char *glXQueryExtensionsString( Display *dpy, int screen );
  178. extern const char *glXQueryServerString( Display *dpy, int screen, int name );
  179. extern const char *glXGetClientString( Display *dpy, int name );
  180. /* GLX 1.2 and later */
  181. extern Display *glXGetCurrentDisplay( void );
  182. /* GLX 1.3 and later */
  183. extern GLXFBConfig *glXChooseFBConfig( Display *dpy, int screen,
  184. const int *attribList, int *nitems );
  185. extern int glXGetFBConfigAttrib( Display *dpy, GLXFBConfig config,
  186. int attribute, int *value );
  187. extern GLXFBConfig *glXGetFBConfigs( Display *dpy, int screen,
  188. int *nelements );
  189. extern XVisualInfo *glXGetVisualFromFBConfig( Display *dpy,
  190. GLXFBConfig config );
  191. extern GLXWindow glXCreateWindow( Display *dpy, GLXFBConfig config,
  192. Window win, const int *attribList );
  193. extern void glXDestroyWindow( Display *dpy, GLXWindow window );
  194. extern GLXPixmap glXCreatePixmap( Display *dpy, GLXFBConfig config,
  195. Pixmap pixmap, const int *attribList );
  196. extern void glXDestroyPixmap( Display *dpy, GLXPixmap pixmap );
  197. extern GLXPbuffer glXCreatePbuffer( Display *dpy, GLXFBConfig config,
  198. const int *attribList );
  199. extern void glXDestroyPbuffer( Display *dpy, GLXPbuffer pbuf );
  200. extern void glXQueryDrawable( Display *dpy, GLXDrawable draw, int attribute,
  201. unsigned int *value );
  202. extern GLXContext glXCreateNewContext( Display *dpy, GLXFBConfig config,
  203. int renderType, GLXContext shareList,
  204. Bool direct );
  205. extern Bool glXMakeContextCurrent( Display *dpy, GLXDrawable draw,
  206. GLXDrawable read, GLXContext ctx );
  207. extern GLXDrawable glXGetCurrentReadDrawable( void );
  208. extern int glXQueryContext( Display *dpy, GLXContext ctx, int attribute,
  209. int *value );
  210. extern void glXSelectEvent( Display *dpy, GLXDrawable drawable,
  211. unsigned long mask );
  212. extern void glXGetSelectedEvent( Display *dpy, GLXDrawable drawable,
  213. unsigned long *mask );
  214. #ifndef GLX_GLXEXT_LEGACY
  215. #include <GL/glxext.h>
  216. #else
  217. /*
  218. * 28. GLX_EXT_visual_info extension
  219. */
  220. #ifndef GLX_EXT_visual_info
  221. #define GLX_EXT_visual_info 1
  222. #define GLX_X_VISUAL_TYPE_EXT 0x22
  223. #define GLX_TRANSPARENT_TYPE_EXT 0x23
  224. #define GLX_TRANSPARENT_INDEX_VALUE_EXT 0x24
  225. #define GLX_TRANSPARENT_RED_VALUE_EXT 0x25
  226. #define GLX_TRANSPARENT_GREEN_VALUE_EXT 0x26
  227. #define GLX_TRANSPARENT_BLUE_VALUE_EXT 0x27
  228. #define GLX_TRANSPARENT_ALPHA_VALUE_EXT 0x28
  229. #define GLX_TRUE_COLOR_EXT 0x8002
  230. #define GLX_DIRECT_COLOR_EXT 0x8003
  231. #define GLX_PSEUDO_COLOR_EXT 0x8004
  232. #define GLX_STATIC_COLOR_EXT 0x8005
  233. #define GLX_GRAY_SCALE_EXT 0x8006
  234. #define GLX_STATIC_GRAY_EXT 0x8007
  235. #define GLX_NONE_EXT 0x8000
  236. #define GLX_TRANSPARENT_RGB_EXT 0x8008
  237. #define GLX_TRANSPARENT_INDEX_EXT 0x8009
  238. #endif /* 28. GLX_EXT_visual_info extension */
  239. /*
  240. * 41. GLX_SGI_video_sync
  241. */
  242. #ifndef GLX_SGI_video_sync
  243. #define GLX_SGI_video_sync 1
  244. extern int glXGetVideoSyncSGI(unsigned int *count);
  245. extern int glXWaitVideoSyncSGI(int divisor, int remainder, unsigned int *count);
  246. #endif /* GLX_SGI_video_sync */
  247. /*
  248. * 42. GLX_EXT_visual_rating
  249. */
  250. #ifndef GLX_EXT_visual_rating
  251. #define GLX_EXT_visual_rating 1
  252. #define GLX_VISUAL_CAVEAT_EXT 0x20
  253. /*#define GLX_NONE_EXT 0x8000*/
  254. #define GLX_SLOW_VISUAL_EXT 0x8001
  255. #define GLX_NON_CONFORMANT_VISUAL_EXT 0x800D
  256. #endif /* GLX_EXT_visual_rating */
  257. /*
  258. * 47. GLX_EXT_import_context
  259. */
  260. #ifndef GLX_EXT_import_context
  261. #define GLX_EXT_import_context 1
  262. #define GLX_SHARE_CONTEXT_EXT 0x800A
  263. #define GLX_VISUAL_ID_EXT 0x800B
  264. #define GLX_SCREEN_EXT 0x800C
  265. extern void glXFreeContextEXT(Display *dpy, GLXContext context);
  266. extern GLXContextID glXGetContextIDEXT(const GLXContext context);
  267. extern Display *glXGetCurrentDisplayEXT(void);
  268. extern GLXContext glXImportContextEXT(Display *dpy, GLXContextID contextID);
  269. extern int glXQueryContextInfoEXT(Display *dpy, GLXContext context,
  270. int attribute,int *value);
  271. #endif /* GLX_EXT_import_context */
  272. /*
  273. * 215. GLX_MESA_copy_sub_buffer
  274. */
  275. #ifndef GLX_MESA_copy_sub_buffer
  276. #define GLX_MESA_copy_sub_buffer 1
  277. extern void glXCopySubBufferMESA( Display *dpy, GLXDrawable drawable,
  278. int x, int y, int width, int height );
  279. #endif
  280. /*
  281. * 216. GLX_MESA_pixmap_colormap
  282. */
  283. #ifndef GLX_MESA_pixmap_colormap
  284. #define GLX_MESA_pixmap_colormap 1
  285. extern GLXPixmap glXCreateGLXPixmapMESA( Display *dpy, XVisualInfo *visual,
  286. Pixmap pixmap, Colormap cmap );
  287. #endif /* GLX_MESA_pixmap_colormap */
  288. /*
  289. * 217. GLX_MESA_release_buffers
  290. */
  291. #ifndef GLX_MESA_release_buffers
  292. #define GLX_MESA_release_buffers 1
  293. extern Bool glXReleaseBuffersMESA( Display *dpy, GLXDrawable d );
  294. #endif /* GLX_MESA_release_buffers */
  295. /*
  296. * 218. GLX_MESA_set_3dfx_mode
  297. */
  298. #ifndef GLX_MESA_set_3dfx_mode
  299. #define GLX_MESA_set_3dfx_mode 1
  300. #define GLX_3DFX_WINDOW_MODE_MESA 0x1
  301. #define GLX_3DFX_FULLSCREEN_MODE_MESA 0x2
  302. extern Bool glXSet3DfxModeMESA( int mode );
  303. #endif /* GLX_MESA_set_3dfx_mode */
  304. /*
  305. * ARB 2. GLX_ARB_get_proc_address
  306. */
  307. #ifndef GLX_ARB_get_proc_address
  308. #define GLX_ARB_get_proc_address 1
  309. extern void (*glXGetProcAddressARB(const GLubyte *procName))();
  310. #endif /* GLX_ARB_get_proc_address */
  311. #endif /* GLX_GLXEXT_LEGACY */
  312. #ifdef __cplusplus
  313. }
  314. #endif
  315. #endif