Clone of mesa.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

glx.h 9.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. /* $Id: glx.h,v 1.8 1999/11/23 19:54:53 brianp Exp $ */
  2. /*
  3. * Mesa 3-D graphics library
  4. * Version: 3.3
  5. *
  6. * Copyright (C) 1999 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. #include <X11/Xlib.h>
  28. #include <X11/Xutil.h>
  29. #include "GL/gl.h"
  30. #ifdef MESA
  31. #include "GL/xmesa.h"
  32. #endif
  33. #if defined(USE_MGL_NAMESPACE)
  34. #include "glx_mangle.h"
  35. #endif
  36. #ifdef __cplusplus
  37. extern "C" {
  38. #endif
  39. #define GLX_VERSION_1_1 1
  40. #define GLX_VERSION_1_2 1
  41. #define GLX_VERSION_1_3 1
  42. #define GLX_EXTENSION_NAME "GLX"
  43. /*
  44. * Tokens for glXChooseVisual and glXGetConfig:
  45. */
  46. #define GLX_USE_GL 1
  47. #define GLX_BUFFER_SIZE 2
  48. #define GLX_LEVEL 3
  49. #define GLX_RGBA 4
  50. #define GLX_DOUBLEBUFFER 5
  51. #define GLX_STEREO 6
  52. #define GLX_AUX_BUFFERS 7
  53. #define GLX_RED_SIZE 8
  54. #define GLX_GREEN_SIZE 9
  55. #define GLX_BLUE_SIZE 10
  56. #define GLX_ALPHA_SIZE 11
  57. #define GLX_DEPTH_SIZE 12
  58. #define GLX_STENCIL_SIZE 13
  59. #define GLX_ACCUM_RED_SIZE 14
  60. #define GLX_ACCUM_GREEN_SIZE 15
  61. #define GLX_ACCUM_BLUE_SIZE 16
  62. #define GLX_ACCUM_ALPHA_SIZE 17
  63. /*
  64. * Error codes returned by glXGetConfig:
  65. */
  66. #define GLX_BAD_SCREEN 1
  67. #define GLX_BAD_ATTRIBUTE 2
  68. #define GLX_NO_EXTENSION 3
  69. #define GLX_BAD_VISUAL 4
  70. #define GLX_BAD_CONTEXT 5
  71. #define GLX_BAD_VALUE 6
  72. #define GLX_BAD_ENUM 7
  73. /*
  74. * GLX 1.1 and later:
  75. */
  76. #define GLX_VENDOR 1
  77. #define GLX_VERSION 2
  78. #define GLX_EXTENSIONS 3
  79. /*
  80. * GLX 1.3 and later:
  81. * XXX don't know the values of some of these enums!
  82. * XXX some 1.3 enums may be missing!
  83. */
  84. #define GLX_CONFIG_CAVEAT ?
  85. #define GLX_DONT_CARE ?
  86. #define GLX_SLOW_CONFIG ?
  87. #define GLX_NON_CONFORMANT_CONFIG ?
  88. #define GLX_X_VISUAL_TYPE 0x22
  89. #define GLX_TRANSPARENT_TYPE 0x23
  90. #define GLX_TRANSPARENT_INDEX_VALUE 0x24
  91. #define GLX_TRANSPARENT_RED_VALUE 0x25
  92. #define GLX_TRANSPARENT_GREEN_VALUE 0x26
  93. #define GLX_TRANSPARENT_BLUE_VALUE 0x27
  94. #define GLX_TRANSPARENT_ALPHA_VALUE 0x28
  95. #define GLX_MAX_PBUFFER_WIDTH ?
  96. #define GLX_MAX_PBUFFER_HEIGHT ?
  97. #define GLX_MAX_PBUFFER_PIXELS ?
  98. #define GLX_PRESERVED_CONTENTS ?
  99. #define GLX_LARGEST_BUFFER ?
  100. #define GLX_DRAWABLE_TYPE ?
  101. #define GLX_FBCONFIG_ID ?
  102. #define GLX_VISUAL_ID ?
  103. #define GLX_WINDOW_BIT ?
  104. #define GLX_PBUFFER_BIT ?
  105. #define GLX_AUX_BUFFERS_BIT ?
  106. #define GLX_FRONT_LEFT_BUFFER_BIT ?
  107. #define GLX_FRONT_RIGHT_BUFFER_BIT ?
  108. #define GLX_BACK_LEFT_BUFFER_BIT ?
  109. #define GLX_BACK_RIGHT_BUFFER_BIT ?
  110. #define GLX_AUX_BUFFERS_BIT ?
  111. #define GLX_DEPTH_BUFFER_BIT ?
  112. #define GLX_STENCIL_BUFFER_BIT ?
  113. #define GLX_ACCUM_BUFFER_BIT ?
  114. #define GLX_RENDER_TYPE ?
  115. #define GLX_DRAWABLE_TYPE ?
  116. #define GLX_X_RENDERABLE ?
  117. #define GLX_NONE 0x8000
  118. #define GLX_TRUE_COLOR 0x8002
  119. #define GLX_DIRECT_COLOR 0x8003
  120. #define GLX_PSEUDO_COLOR 0x8004
  121. #define GLX_STATIC_COLOR 0x8005
  122. #define GLX_GRAY_SCALE 0x8006
  123. #define GLX_STATIC_GRAY 0x8007
  124. #define GLX_TRANSPARENT_INDEX 0x8009
  125. #define GLX_COLOR_INDEX_TYPE ?
  126. #define GLX_SCREEN ?
  127. #define GLX_PBUFFER_CLOBBER_MASK ?
  128. #define GLX_DAMAGED ?
  129. #define GLX_SAVED ?
  130. #define GLX_WINDOW ?
  131. #define GLX_PBUFFER ?
  132. /*
  133. * GLX_EXT_visual_info extension
  134. */
  135. #define GLX_X_VISUAL_TYPE_EXT 0x22
  136. #define GLX_TRANSPARENT_TYPE_EXT 0x23
  137. #define GLX_TRANSPARENT_INDEX_VALUE_EXT 0x24
  138. #define GLX_TRANSPARENT_RED_VALUE_EXT 0x25
  139. #define GLX_TRANSPARENT_GREEN_VALUE_EXT 0x26
  140. #define GLX_TRANSPARENT_BLUE_VALUE_EXT 0x27
  141. #define GLX_TRANSPARENT_ALPHA_VALUE_EXT 0x28
  142. /*
  143. * GLX_visual_info extension
  144. */
  145. #define GLX_TRUE_COLOR_EXT 0x8002
  146. #define GLX_DIRECT_COLOR_EXT 0x8003
  147. #define GLX_PSEUDO_COLOR_EXT 0x8004
  148. #define GLX_STATIC_COLOR_EXT 0x8005
  149. #define GLX_GRAY_SCALE_EXT 0x8006
  150. #define GLX_STATIC_GRAY_EXT 0x8007
  151. #define GLX_NONE_EXT 0x8000
  152. #define GLX_TRANSPARENT_RGB_EXT 0x8008
  153. #define GLX_TRANSPARENT_INDEX_EXT 0x8009
  154. /*
  155. * Compile-time extension tests
  156. */
  157. #define GLX_EXT_visual_info 1
  158. #define GLX_EXT_get_proc_address 1
  159. #define GLX_MESA_pixmap_colormap 1
  160. #define GLX_MESA_release_buffers 1
  161. #define GLX_MESA_copy_sub_buffer 1
  162. #define GLX_MESA_set_3dfx_mode 1
  163. #define GLX_SGI_video_sync 1
  164. #ifdef MESA
  165. typedef XMesaContext GLXContext;
  166. typedef Pixmap GLXPixmap;
  167. typedef Drawable GLXDrawable;
  168. #else
  169. typedef void * GLXContext;
  170. typedef XID GLXPixmap;
  171. typedef XID GLXDrawable;
  172. /* GLX 1.3 and later */
  173. typedef XID GLXFBConfigID;
  174. typedef XID GLXPfuffer;
  175. typedef XID GLXWindow;
  176. typedef XID GLXPbuffer;
  177. typedef XID GLXFBConfig;
  178. #endif
  179. typedef XID GLXContextID;
  180. extern XVisualInfo* glXChooseVisual( Display *dpy, int screen,
  181. int *attribList );
  182. extern GLXContext glXCreateContext( Display *dpy, XVisualInfo *vis,
  183. GLXContext shareList, Bool direct );
  184. extern void glXDestroyContext( Display *dpy, GLXContext ctx );
  185. extern Bool glXMakeCurrent( Display *dpy, GLXDrawable drawable,
  186. GLXContext ctx);
  187. extern void glXCopyContext( Display *dpy, GLXContext src, GLXContext dst,
  188. GLuint mask );
  189. extern void glXSwapBuffers( Display *dpy, GLXDrawable drawable );
  190. extern GLXPixmap glXCreateGLXPixmap( Display *dpy, XVisualInfo *visual,
  191. Pixmap pixmap );
  192. extern void glXDestroyGLXPixmap( Display *dpy, GLXPixmap pixmap );
  193. extern Bool glXQueryExtension( Display *dpy, int *errorb, int *event );
  194. extern Bool glXQueryVersion( Display *dpy, int *maj, int *min );
  195. extern Bool glXIsDirect( Display *dpy, GLXContext ctx );
  196. extern int glXGetConfig( Display *dpy, XVisualInfo *visual,
  197. int attrib, int *value );
  198. extern GLXContext glXGetCurrentContext( void );
  199. extern GLXDrawable glXGetCurrentDrawable( void );
  200. extern void glXWaitGL( void );
  201. extern void glXWaitX( void );
  202. extern void glXUseXFont( Font font, int first, int count, int list );
  203. /* GLX 1.1 and later */
  204. extern const char *glXQueryExtensionsString( Display *dpy, int screen );
  205. extern const char *glXQueryServerString( Display *dpy, int screen, int name );
  206. extern const char *glXGetClientString( Display *dpy, int name );
  207. /* GLX 1.2 and later */
  208. extern Display *glXGetCurrentDisplay( void );
  209. /* GLX 1.3 and later */
  210. extern GLXFBConfig glXChooseFBConfig( Display *dpy, int screen,
  211. const int *attribList, int *nitems );
  212. extern int glXGetFBConfigAttrib( Display *dpy, GLXFBConfig config,
  213. int attribute, int *value );
  214. extern XVisualInfo *glXGetVisualFromFBConfig( Display *dpy,
  215. GLXFBConfig config );
  216. extern GLXWindow glXCreateWindow( Display *dpy, GLXFBConfig config,
  217. Window win, const int *attribList );
  218. extern void glXDestroyWindow( Display *dpy, GLXWindow window );
  219. extern GLXPixmap glXCreatePixmap( Display *dpy, GLXFBConfig config,
  220. Pixmap pixmap, const int *attribList );
  221. extern void glXDestroyPixmap( Display *dpy, GLXPixmap pixmap );
  222. extern GLXPbuffer glXCreatePbuffer( Display *dpy, GLXFBConfig config,
  223. const int *attribList );
  224. extern void glXDestroyPbuffer( Display *dpy, GLXPbuffer pbuf );
  225. extern void glXQueryDrawable( Display *dpy, GLXDrawable draw, int attribute,
  226. unsigned int *value );
  227. extern GLXContext glXCreateNewContext( Display *dpy, GLXFBConfig config,
  228. int renderType, GLXContext shareList,
  229. Bool direct );
  230. extern Bool glXMakeContextCurrent( Display *dpy, GLXDrawable draw,
  231. GLXDrawable read, GLXContext ctx );
  232. extern GLXDrawable glXGetCurrentReadDrawable( void );
  233. extern int glXQueryContext( Display *dpy, GLXContext ctx, int attribute,
  234. int *value );
  235. extern void glXSelectEvent( Display *dpy, GLXDrawable drawable,
  236. unsigned long mask );
  237. extern void glXGetSelectedEvent( Display *dpy, GLXDrawable drawable,
  238. unsigned long *mask );
  239. /* GLX_MESA_pixmap_colormap */
  240. extern GLXPixmap glXCreateGLXPixmapMESA( Display *dpy, XVisualInfo *visual,
  241. Pixmap pixmap, Colormap cmap );
  242. /* GLX_MESA_release_buffers */
  243. extern Bool glXReleaseBuffersMESA( Display *dpy, GLXDrawable d );
  244. /* GLX_MESA_copy_sub_buffer */
  245. extern void glXCopySubBufferMESA( Display *dpy, GLXDrawable drawable,
  246. int x, int y, int width, int height );
  247. /* GLX_MESA_set_3dfx_mode */
  248. extern GLboolean glXSet3DfxModeMESA( GLint mode );
  249. /* GLX_SGI_video_sync */
  250. extern int glXGetVideoSyncSGI(unsigned int *count);
  251. extern int glXWaitVideoSyncSGI(int divisor, int remainder,
  252. unsigned int *count);
  253. #ifdef __cplusplus
  254. }
  255. #endif
  256. #endif