blob: 5af05ed1709b174eb91ac6dc1647c2dae5e2c9c9 [file] [log] [blame]
Brian Paul07b220a2000-06-08 22:50:24 +00001/* $Id: glx.h,v 1.21 2000/06/08 22:50:24 brianp Exp $ */
jtgafb833d1999-08-19 00:55:39 +00002
3/*
4 * Mesa 3-D graphics library
Brian Paulfbd8f211999-11-11 01:22:25 +00005 * Version: 3.3
jtgafb833d1999-08-19 00:55:39 +00006 *
Brian Paulf3232bc2000-02-23 23:04:27 +00007 * Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
jtgafb833d1999-08-19 00:55:39 +00008 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included
17 * in all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
23 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 */
26
27
jtgafb833d1999-08-19 00:55:39 +000028#ifndef GLX_H
29#define GLX_H
30
31
Jouk Jansen3f600e42000-03-06 12:59:24 +000032#ifdef __VMS
33# ifdef __cplusplus
34/* VMS Xlib.h gives problems with C++.
35 * this avoids a bunch of trivial warnings */
36#pragma message disable nosimpint
37#endif
38#endif
jtgafb833d1999-08-19 00:55:39 +000039#include <X11/Xlib.h>
40#include <X11/Xutil.h>
Jouk Jansen3f600e42000-03-06 12:59:24 +000041#ifdef __VMS
42# ifdef __cplusplus
43#pragma message enable nosimpint
44#endif
45#endif
jtgafb833d1999-08-19 00:55:39 +000046#include "GL/gl.h"
jtgafb833d1999-08-19 00:55:39 +000047
48
49#if defined(USE_MGL_NAMESPACE)
50#include "glx_mangle.h"
51#endif
52
53
54#ifdef __cplusplus
55extern "C" {
56#endif
57
58
59#define GLX_VERSION_1_1 1
Brian Paulbf3f9bd1999-11-22 21:51:53 +000060#define GLX_VERSION_1_2 1
Brian Paul07b220a2000-06-08 22:50:24 +000061#define GLX_VERSION_1_3 1
jtgafb833d1999-08-19 00:55:39 +000062
Brian Paulfbd8f211999-11-11 01:22:25 +000063#define GLX_EXTENSION_NAME "GLX"
64
65
jtgafb833d1999-08-19 00:55:39 +000066
67/*
68 * Tokens for glXChooseVisual and glXGetConfig:
69 */
Brian Paulfbd8f211999-11-11 01:22:25 +000070#define GLX_USE_GL 1
71#define GLX_BUFFER_SIZE 2
72#define GLX_LEVEL 3
73#define GLX_RGBA 4
74#define GLX_DOUBLEBUFFER 5
75#define GLX_STEREO 6
76#define GLX_AUX_BUFFERS 7
77#define GLX_RED_SIZE 8
78#define GLX_GREEN_SIZE 9
79#define GLX_BLUE_SIZE 10
80#define GLX_ALPHA_SIZE 11
81#define GLX_DEPTH_SIZE 12
82#define GLX_STENCIL_SIZE 13
83#define GLX_ACCUM_RED_SIZE 14
84#define GLX_ACCUM_GREEN_SIZE 15
85#define GLX_ACCUM_BLUE_SIZE 16
86#define GLX_ACCUM_ALPHA_SIZE 17
jtgafb833d1999-08-19 00:55:39 +000087
Brian Paulfbd8f211999-11-11 01:22:25 +000088
jtgafb833d1999-08-19 00:55:39 +000089/*
90 * Error codes returned by glXGetConfig:
91 */
92#define GLX_BAD_SCREEN 1
93#define GLX_BAD_ATTRIBUTE 2
94#define GLX_NO_EXTENSION 3
95#define GLX_BAD_VISUAL 4
96#define GLX_BAD_CONTEXT 5
97#define GLX_BAD_VALUE 6
98#define GLX_BAD_ENUM 7
99
100
101/*
102 * GLX 1.1 and later:
103 */
104#define GLX_VENDOR 1
105#define GLX_VERSION 2
106#define GLX_EXTENSIONS 3
107
108
109/*
Brian Paul664a1f81999-11-23 19:54:53 +0000110 * GLX 1.3 and later:
Brian Paul664a1f81999-11-23 19:54:53 +0000111 */
Brian Paul47e719f2000-04-10 21:12:20 +0000112#define GLX_CONFIG_CAVEAT 0x20
113#define GLX_DONT_CARE 0xFFFFFFFF
114#define GLX_SLOW_CONFIG 0x8001
115#define GLX_NON_CONFORMANT_CONFIG 0x800D
Brian Paul664a1f81999-11-23 19:54:53 +0000116#define GLX_X_VISUAL_TYPE 0x22
117#define GLX_TRANSPARENT_TYPE 0x23
118#define GLX_TRANSPARENT_INDEX_VALUE 0x24
119#define GLX_TRANSPARENT_RED_VALUE 0x25
120#define GLX_TRANSPARENT_GREEN_VALUE 0x26
121#define GLX_TRANSPARENT_BLUE_VALUE 0x27
122#define GLX_TRANSPARENT_ALPHA_VALUE 0x28
Brian Paul47e719f2000-04-10 21:12:20 +0000123#define GLX_MAX_PBUFFER_WIDTH 0x8016
124#define GLX_MAX_PBUFFER_HEIGHT 0x8017
125#define GLX_MAX_PBUFFER_PIXELS 0x8018
126#define GLX_PRESERVED_CONTENTS 0x801B
127#define GLX_LARGEST_BUFFER 0x801C
128#define GLX_DRAWABLE_TYPE 0x8010
129#define GLX_FBCONFIG_ID 0x8013
130#define GLX_VISUAL_ID 0x800B
131#define GLX_WINDOW_BIT 0x00000001
132#define GLX_PIXMAP_BIT 0x00000002
133#define GLX_PBUFFER_BIT 0x00000004
134#define GLX_AUX_BUFFERS_BIT 0x00000010
135#define GLX_FRONT_LEFT_BUFFER_BIT 0x00000001
136#define GLX_FRONT_RIGHT_BUFFER_BIT 0x00000002
137#define GLX_BACK_LEFT_BUFFER_BIT 0x00000004
138#define GLX_BACK_RIGHT_BUFFER_BIT 0x00000008
139#define GLX_AUX_BUFFERS_BIT 0x00000010
140#define GLX_DEPTH_BUFFER_BIT 0x00000020
141#define GLX_STENCIL_BUFFER_BIT 0x00000040
142#define GLX_ACCUM_BUFFER_BIT 0x00000080
143#define GLX_DRAWABLE_TYPE 0x8010
144#define GLX_RENDER_TYPE 0x8011
145#define GLX_X_RENDERABLE 0x8012
Brian Paul664a1f81999-11-23 19:54:53 +0000146#define GLX_NONE 0x8000
147#define GLX_TRUE_COLOR 0x8002
148#define GLX_DIRECT_COLOR 0x8003
149#define GLX_PSEUDO_COLOR 0x8004
150#define GLX_STATIC_COLOR 0x8005
151#define GLX_GRAY_SCALE 0x8006
152#define GLX_STATIC_GRAY 0x8007
153#define GLX_TRANSPARENT_INDEX 0x8009
Brian Paul47e719f2000-04-10 21:12:20 +0000154#define GLX_COLOR_INDEX_TYPE 0x8015
155#define GLX_COLOR_INDEX_BIT 0x00000002
156#define GLX_SCREEN 0x800C
157#define GLX_PBUFFER_CLOBBER_MASK 0x08000000
158#define GLX_DAMAGED 0x8020
159#define GLX_SAVED 0x8021
160#define GLX_WINDOW 0x8022
161#define GLX_PBUFFER 0x8033
Brian Paul664a1f81999-11-23 19:54:53 +0000162
163
jtgafb833d1999-08-19 00:55:39 +0000164
Brian Paul07b220a2000-06-08 22:50:24 +0000165typedef void * GLXContext;
166typedef XID GLXPixmap;
167typedef XID GLXDrawable;
168/* GLX 1.3 and later */
169typedef void * GLXFBConfig;
170typedef XID GLXFBConfigID;
jtgafb833d1999-08-19 00:55:39 +0000171typedef XID GLXContextID;
Brian Paul07b220a2000-06-08 22:50:24 +0000172typedef XID GLXWindow;
173typedef XID GLXPbuffer;
jtgafb833d1999-08-19 00:55:39 +0000174
175
176
177extern XVisualInfo* glXChooseVisual( Display *dpy, int screen,
178 int *attribList );
179
180extern GLXContext glXCreateContext( Display *dpy, XVisualInfo *vis,
181 GLXContext shareList, Bool direct );
182
183extern void glXDestroyContext( Display *dpy, GLXContext ctx );
184
185extern Bool glXMakeCurrent( Display *dpy, GLXDrawable drawable,
186 GLXContext ctx);
187
188extern void glXCopyContext( Display *dpy, GLXContext src, GLXContext dst,
Brian Paul3994b772000-02-27 18:26:54 +0000189 unsigned long mask );
jtgafb833d1999-08-19 00:55:39 +0000190
191extern void glXSwapBuffers( Display *dpy, GLXDrawable drawable );
192
193extern GLXPixmap glXCreateGLXPixmap( Display *dpy, XVisualInfo *visual,
194 Pixmap pixmap );
195
196extern void glXDestroyGLXPixmap( Display *dpy, GLXPixmap pixmap );
197
198extern Bool glXQueryExtension( Display *dpy, int *errorb, int *event );
199
200extern Bool glXQueryVersion( Display *dpy, int *maj, int *min );
201
202extern Bool glXIsDirect( Display *dpy, GLXContext ctx );
203
204extern int glXGetConfig( Display *dpy, XVisualInfo *visual,
205 int attrib, int *value );
206
207extern GLXContext glXGetCurrentContext( void );
208
209extern GLXDrawable glXGetCurrentDrawable( void );
210
211extern void glXWaitGL( void );
212
213extern void glXWaitX( void );
214
215extern void glXUseXFont( Font font, int first, int count, int list );
216
217
218
219/* GLX 1.1 and later */
220extern const char *glXQueryExtensionsString( Display *dpy, int screen );
221
222extern const char *glXQueryServerString( Display *dpy, int screen, int name );
223
224extern const char *glXGetClientString( Display *dpy, int name );
225
226
Brian Paulbf3f9bd1999-11-22 21:51:53 +0000227/* GLX 1.2 and later */
Brian Paulbf3f9bd1999-11-22 21:51:53 +0000228extern Display *glXGetCurrentDisplay( void );
229
230
Brian Paul664a1f81999-11-23 19:54:53 +0000231/* GLX 1.3 and later */
Brian Paul47e719f2000-04-10 21:12:20 +0000232extern GLXFBConfig *glXChooseFBConfig( Display *dpy, int screen,
233 const int *attribList, int *nitems );
Brian Paul664a1f81999-11-23 19:54:53 +0000234
235extern int glXGetFBConfigAttrib( Display *dpy, GLXFBConfig config,
236 int attribute, int *value );
237
Brian Paul47e719f2000-04-10 21:12:20 +0000238extern GLXFBConfig *glXGetFBConfigs( Display *dpy, int screen,
239 int *nelements );
240
Brian Paul664a1f81999-11-23 19:54:53 +0000241extern XVisualInfo *glXGetVisualFromFBConfig( Display *dpy,
242 GLXFBConfig config );
243
244extern GLXWindow glXCreateWindow( Display *dpy, GLXFBConfig config,
245 Window win, const int *attribList );
246
247extern void glXDestroyWindow( Display *dpy, GLXWindow window );
248
249extern GLXPixmap glXCreatePixmap( Display *dpy, GLXFBConfig config,
250 Pixmap pixmap, const int *attribList );
251
252extern void glXDestroyPixmap( Display *dpy, GLXPixmap pixmap );
253
254extern GLXPbuffer glXCreatePbuffer( Display *dpy, GLXFBConfig config,
255 const int *attribList );
256
257extern void glXDestroyPbuffer( Display *dpy, GLXPbuffer pbuf );
258
259extern void glXQueryDrawable( Display *dpy, GLXDrawable draw, int attribute,
260 unsigned int *value );
261
262extern GLXContext glXCreateNewContext( Display *dpy, GLXFBConfig config,
263 int renderType, GLXContext shareList,
264 Bool direct );
265
266extern Bool glXMakeContextCurrent( Display *dpy, GLXDrawable draw,
267 GLXDrawable read, GLXContext ctx );
268
269extern GLXDrawable glXGetCurrentReadDrawable( void );
270
271extern int glXQueryContext( Display *dpy, GLXContext ctx, int attribute,
272 int *value );
273
274extern void glXSelectEvent( Display *dpy, GLXDrawable drawable,
275 unsigned long mask );
276
277extern void glXGetSelectedEvent( Display *dpy, GLXDrawable drawable,
278 unsigned long *mask );
279
280
Brian Paul43c9c2c1999-09-16 15:52:51 +0000281
Brian Paul07b220a2000-06-08 22:50:24 +0000282/*#ifndef GLX_GLXEXT_LEGACY*/
283
284/*#include <GL/glxext.h>*/
285
286/*#else*/
jtgafb833d1999-08-19 00:55:39 +0000287
Brian Paul43c9c2c1999-09-16 15:52:51 +0000288
Brian Paul07b220a2000-06-08 22:50:24 +0000289/*
290 * 28. GLX_EXT_visual_info extension
291 */
292#ifndef GLX_EXT_visual_info
293#define GLX_EXT_visual_info 1
294
295#define GLX_X_VISUAL_TYPE_EXT 0x22
296#define GLX_TRANSPARENT_TYPE_EXT 0x23
297#define GLX_TRANSPARENT_INDEX_VALUE_EXT 0x24
298#define GLX_TRANSPARENT_RED_VALUE_EXT 0x25
299#define GLX_TRANSPARENT_GREEN_VALUE_EXT 0x26
300#define GLX_TRANSPARENT_BLUE_VALUE_EXT 0x27
301#define GLX_TRANSPARENT_ALPHA_VALUE_EXT 0x28
302#define GLX_TRUE_COLOR_EXT 0x8002
303#define GLX_DIRECT_COLOR_EXT 0x8003
304#define GLX_PSEUDO_COLOR_EXT 0x8004
305#define GLX_STATIC_COLOR_EXT 0x8005
306#define GLX_GRAY_SCALE_EXT 0x8006
307#define GLX_STATIC_GRAY_EXT 0x8007
308#define GLX_NONE_EXT 0x8000
309#define GLX_TRANSPARENT_RGB_EXT 0x8008
310#define GLX_TRANSPARENT_INDEX_EXT 0x8009
311
312#endif /* 28. GLX_EXT_visual_info extension */
jtgafb833d1999-08-19 00:55:39 +0000313
Brian Paul43c9c2c1999-09-16 15:52:51 +0000314
jtgafb833d1999-08-19 00:55:39 +0000315
Brian Paul07b220a2000-06-08 22:50:24 +0000316/*
317 * 41. GLX_SGI_video_sync
318 */
319#ifndef GLX_SGI_video_sync
320#define GLX_SGI_video_sync 1
Brian Paul43c9c2c1999-09-16 15:52:51 +0000321
jtgafb833d1999-08-19 00:55:39 +0000322extern int glXGetVideoSyncSGI(unsigned int *count);
Brian Paul07b220a2000-06-08 22:50:24 +0000323extern int glXWaitVideoSyncSGI(int divisor, int remainder, unsigned int *count);
324
325#endif /* GLX_SGI_video_sync */
jtgafb833d1999-08-19 00:55:39 +0000326
327
Brian Paul353479f2000-04-19 01:40:00 +0000328
Brian Paul07b220a2000-06-08 22:50:24 +0000329/*
330 * 42. GLX_EXT_visual_rating
331 */
332#ifndef GLX_EXT_visual_rating
333#define GLX_EXT_visual_rating 1
334
335#define GLX_VISUAL_CAVEAT_EXT 0x20
336/*#define GLX_NONE_EXT 0x8000*/
337#define GLX_SLOW_VISUAL_EXT 0x8001
338#define GLX_NON_CONFORMANT_VISUAL_EXT 0x800D
339
340#endif /* GLX_EXT_visual_rating */
341
342
343
344/*
345 * 47. GLX_EXT_import_context
346 */
347#ifndef GLX_EXT_import_context
348#define GLX_EXT_import_context 1
349
350#define GLX_SHARE_CONTEXT_EXT 0x800A
351#define GLX_VISUAL_ID_EXT 0x800B
352#define GLX_SCREEN_EXT 0x800C
353
Brian Paul353479f2000-04-19 01:40:00 +0000354extern void glXFreeContextEXT(Display *dpy, GLXContext context);
355
356extern GLXContextID glXGetContextIDEXT(const GLXContext context);
357
358extern Display *glXGetCurrentDisplayEXT(void);
359
360extern GLXContext glXImportContextEXT(Display *dpy, GLXContextID contextID);
361
362extern int glXQueryContextInfoEXT(Display *dpy, GLXContext context,
363 int attribute,int *value);
364
Brian Paul07b220a2000-06-08 22:50:24 +0000365#endif /* GLX_EXT_import_context */
Brian Paul353479f2000-04-19 01:40:00 +0000366
367
Brian Paul07b220a2000-06-08 22:50:24 +0000368
369/*
370 * ARB 2. GLX_ARB_get_proc_address
371 */
372#ifndef GLX_ARB_get_proc_address
373#define GLX_ARB_get_proc_address 1
374
Brian Paulff06c831999-12-11 09:54:33 +0000375extern void (*glXGetProcAddressARB(const GLubyte *procName))();
376
Brian Paul07b220a2000-06-08 22:50:24 +0000377#endif /* GLX_ARB_get_proc_address */
378
379
380
381/*
382 * GLX_MESA_pixmap_colormap
383 */
384#ifndef GLX_MESA_pixmap_colormap
385#define GLX_MESA_pixmap_colormap 1
386
387extern GLXPixmap glXCreateGLXPixmapMESA( Display *dpy, XVisualInfo *visual,
388 Pixmap pixmap, Colormap cmap );
389
390#endif /* GLX_MESA_pixmap_colormap */
391
392
393
394/*
395 * GLX_MESA_release_buffers
396 */
397#ifndef GLX_MESA_release_buffers
398#define GLX_MESA_release_buffers 1
399
400extern Bool glXReleaseBuffersMESA( Display *dpy, GLXDrawable d );
401
402#endif /* GLX_MESA_release_buffers */
403
404
405
406/*
407 * GLX_MESA_copy_sub_buffer
408 */
409#ifndef GLX_MESA_copy_sub_buffer
410#define GLX_MESA_copy_sub_buffer 1
411
412extern void glXCopySubBufferMESA( Display *dpy, GLXDrawable drawable,
413 int x, int y, int width, int height );
414
415#endif
416
417
418
419/*
420 * GLX_MESA_set_3dfx_mode
421 */
422#ifndef GLX_MESA_set_3dfx_mode
423#define GLX_MESA_set_3dfx_mode 1
424
425extern GLboolean glXSet3DfxModeMESA( GLint mode );
426
427#endif /* GLX_MESA_set_3dfx_mode */
428
429
430
431/*#endif*/ /* GLX_GLXEXT_LEGACY */
432
Brian Paulff06c831999-12-11 09:54:33 +0000433
jtgafb833d1999-08-19 00:55:39 +0000434
435#ifdef __cplusplus
436}
437#endif
438
439#endif