Magellan Linux

Annotation of /tags/openglupdate-2_3_13/glxext.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1145 - (hide annotations) (download)
Fri Aug 20 12:05:55 2010 UTC (13 years, 8 months ago) by niro
Original Path: trunk/opengl-update/glxext.h
File MIME type: text/plain
File size: 43887 byte(s)
-updated glxext.h to upstream version 32
1 niro 622 #ifndef __glxext_h_
2     #define __glxext_h_
3    
4     #ifdef __cplusplus
5     extern "C" {
6     #endif
7    
8     /*
9 niro 969 ** Copyright (c) 2007-2010 The Khronos Group Inc.
10 niro 622 **
11     ** Permission is hereby granted, free of charge, to any person obtaining a
12     ** copy of this software and/or associated documentation files (the
13     ** "Materials"), to deal in the Materials without restriction, including
14     ** without limitation the rights to use, copy, modify, merge, publish,
15     ** distribute, sublicense, and/or sell copies of the Materials, and to
16     ** permit persons to whom the Materials are furnished to do so, subject to
17     ** the following conditions:
18     **
19     ** The above copyright notice and this permission notice shall be included
20     ** in all copies or substantial portions of the Materials.
21     **
22     ** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23     ** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24     ** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
25     ** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
26     ** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
27     ** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
28     ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
29     */
30    
31 niro 911 /* Function declaration macros - to move into glplatform.h */
32    
33 niro 622 #if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__)
34     #define WIN32_LEAN_AND_MEAN 1
35     #include <windows.h>
36     #endif
37    
38     #ifndef APIENTRY
39     #define APIENTRY
40     #endif
41     #ifndef APIENTRYP
42     #define APIENTRYP APIENTRY *
43     #endif
44     #ifndef GLAPI
45     #define GLAPI extern
46     #endif
47    
48     /*************************************************************/
49    
50     /* Header file version number, required by OpenGL ABI for Linux */
51 niro 1145 /* glxext.h last updated 2010/08/06 */
52 niro 622 /* Current version at http://www.opengl.org/registry/ */
53 niro 1145 #define GLX_GLXEXT_VERSION 32
54 niro 622
55     #ifndef GLX_VERSION_1_3
56     #define GLX_WINDOW_BIT 0x00000001
57     #define GLX_PIXMAP_BIT 0x00000002
58     #define GLX_PBUFFER_BIT 0x00000004
59     #define GLX_RGBA_BIT 0x00000001
60     #define GLX_COLOR_INDEX_BIT 0x00000002
61     #define GLX_PBUFFER_CLOBBER_MASK 0x08000000
62     #define GLX_FRONT_LEFT_BUFFER_BIT 0x00000001
63     #define GLX_FRONT_RIGHT_BUFFER_BIT 0x00000002
64     #define GLX_BACK_LEFT_BUFFER_BIT 0x00000004
65     #define GLX_BACK_RIGHT_BUFFER_BIT 0x00000008
66     #define GLX_AUX_BUFFERS_BIT 0x00000010
67     #define GLX_DEPTH_BUFFER_BIT 0x00000020
68     #define GLX_STENCIL_BUFFER_BIT 0x00000040
69     #define GLX_ACCUM_BUFFER_BIT 0x00000080
70     #define GLX_CONFIG_CAVEAT 0x20
71     #define GLX_X_VISUAL_TYPE 0x22
72     #define GLX_TRANSPARENT_TYPE 0x23
73     #define GLX_TRANSPARENT_INDEX_VALUE 0x24
74     #define GLX_TRANSPARENT_RED_VALUE 0x25
75     #define GLX_TRANSPARENT_GREEN_VALUE 0x26
76     #define GLX_TRANSPARENT_BLUE_VALUE 0x27
77     #define GLX_TRANSPARENT_ALPHA_VALUE 0x28
78     #define GLX_DONT_CARE 0xFFFFFFFF
79     #define GLX_NONE 0x8000
80     #define GLX_SLOW_CONFIG 0x8001
81     #define GLX_TRUE_COLOR 0x8002
82     #define GLX_DIRECT_COLOR 0x8003
83     #define GLX_PSEUDO_COLOR 0x8004
84     #define GLX_STATIC_COLOR 0x8005
85     #define GLX_GRAY_SCALE 0x8006
86     #define GLX_STATIC_GRAY 0x8007
87     #define GLX_TRANSPARENT_RGB 0x8008
88     #define GLX_TRANSPARENT_INDEX 0x8009
89     #define GLX_VISUAL_ID 0x800B
90     #define GLX_SCREEN 0x800C
91     #define GLX_NON_CONFORMANT_CONFIG 0x800D
92     #define GLX_DRAWABLE_TYPE 0x8010
93     #define GLX_RENDER_TYPE 0x8011
94     #define GLX_X_RENDERABLE 0x8012
95     #define GLX_FBCONFIG_ID 0x8013
96     #define GLX_RGBA_TYPE 0x8014
97     #define GLX_COLOR_INDEX_TYPE 0x8015
98     #define GLX_MAX_PBUFFER_WIDTH 0x8016
99     #define GLX_MAX_PBUFFER_HEIGHT 0x8017
100     #define GLX_MAX_PBUFFER_PIXELS 0x8018
101     #define GLX_PRESERVED_CONTENTS 0x801B
102     #define GLX_LARGEST_PBUFFER 0x801C
103     #define GLX_WIDTH 0x801D
104     #define GLX_HEIGHT 0x801E
105     #define GLX_EVENT_MASK 0x801F
106     #define GLX_DAMAGED 0x8020
107     #define GLX_SAVED 0x8021
108     #define GLX_WINDOW 0x8022
109     #define GLX_PBUFFER 0x8023
110     #define GLX_PBUFFER_HEIGHT 0x8040
111     #define GLX_PBUFFER_WIDTH 0x8041
112     #endif
113    
114     #ifndef GLX_VERSION_1_4
115     #define GLX_SAMPLE_BUFFERS 100000
116     #define GLX_SAMPLES 100001
117     #endif
118    
119     #ifndef GLX_ARB_get_proc_address
120     #endif
121    
122     #ifndef GLX_ARB_multisample
123     #define GLX_SAMPLE_BUFFERS_ARB 100000
124     #define GLX_SAMPLES_ARB 100001
125     #endif
126    
127 niro 1145 #ifndef GLX_ARB_vertex_buffer_object
128     #define GLX_CONTEXT_ALLOW_BUFFER_BYTE_ORDER_MISMATCH_ARB 0x2095
129     #endif
130    
131 niro 622 #ifndef GLX_ARB_fbconfig_float
132     #define GLX_RGBA_FLOAT_TYPE_ARB 0x20B9
133     #define GLX_RGBA_FLOAT_BIT_ARB 0x00000004
134     #endif
135    
136 niro 1145 #ifndef GLX_ARB_framebuffer_sRGB
137     #define GLX_FRAMEBUFFER_SRGB_CAPABLE_ARB 0x20B2
138     #endif
139    
140 niro 789 #ifndef GLX_ARB_create_context
141     #define GLX_CONTEXT_DEBUG_BIT_ARB 0x00000001
142     #define GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB 0x00000002
143     #define GLX_CONTEXT_MAJOR_VERSION_ARB 0x2091
144     #define GLX_CONTEXT_MINOR_VERSION_ARB 0x2092
145     #define GLX_CONTEXT_FLAGS_ARB 0x2094
146     #endif
147    
148 niro 911 #ifndef GLX_ARB_create_context_profile
149     #define GLX_CONTEXT_CORE_PROFILE_BIT_ARB 0x00000001
150     #define GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB 0x00000002
151     #define GLX_CONTEXT_PROFILE_MASK_ARB 0x9126
152     #endif
153    
154 niro 1145 #ifndef GLX_ARB_create_context_robustness
155     #define GLX_CONTEXT_ROBUST_ACCESS_BIT_ARB 0x00000004
156     #define GLX_LOSE_CONTEXT_ON_RESET_ARB 0x8252
157     #define GLX_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB 0x8256
158     #define GLX_NO_RESET_NOTIFICATION_ARB 0x8261
159     #endif
160    
161 niro 622 #ifndef GLX_SGIS_multisample
162     #define GLX_SAMPLE_BUFFERS_SGIS 100000
163     #define GLX_SAMPLES_SGIS 100001
164     #endif
165    
166     #ifndef GLX_EXT_visual_info
167     #define GLX_X_VISUAL_TYPE_EXT 0x22
168     #define GLX_TRANSPARENT_TYPE_EXT 0x23
169     #define GLX_TRANSPARENT_INDEX_VALUE_EXT 0x24
170     #define GLX_TRANSPARENT_RED_VALUE_EXT 0x25
171     #define GLX_TRANSPARENT_GREEN_VALUE_EXT 0x26
172     #define GLX_TRANSPARENT_BLUE_VALUE_EXT 0x27
173     #define GLX_TRANSPARENT_ALPHA_VALUE_EXT 0x28
174     #define GLX_NONE_EXT 0x8000
175     #define GLX_TRUE_COLOR_EXT 0x8002
176     #define GLX_DIRECT_COLOR_EXT 0x8003
177     #define GLX_PSEUDO_COLOR_EXT 0x8004
178     #define GLX_STATIC_COLOR_EXT 0x8005
179     #define GLX_GRAY_SCALE_EXT 0x8006
180     #define GLX_STATIC_GRAY_EXT 0x8007
181     #define GLX_TRANSPARENT_RGB_EXT 0x8008
182     #define GLX_TRANSPARENT_INDEX_EXT 0x8009
183     #endif
184    
185     #ifndef GLX_SGI_swap_control
186     #endif
187    
188     #ifndef GLX_SGI_video_sync
189     #endif
190    
191     #ifndef GLX_SGI_make_current_read
192     #endif
193    
194     #ifndef GLX_SGIX_video_source
195     #endif
196    
197     #ifndef GLX_EXT_visual_rating
198     #define GLX_VISUAL_CAVEAT_EXT 0x20
199     #define GLX_SLOW_VISUAL_EXT 0x8001
200     #define GLX_NON_CONFORMANT_VISUAL_EXT 0x800D
201     /* reuse GLX_NONE_EXT */
202     #endif
203    
204     #ifndef GLX_EXT_import_context
205     #define GLX_SHARE_CONTEXT_EXT 0x800A
206     #define GLX_VISUAL_ID_EXT 0x800B
207     #define GLX_SCREEN_EXT 0x800C
208     #endif
209    
210     #ifndef GLX_SGIX_fbconfig
211     #define GLX_WINDOW_BIT_SGIX 0x00000001
212     #define GLX_PIXMAP_BIT_SGIX 0x00000002
213     #define GLX_RGBA_BIT_SGIX 0x00000001
214     #define GLX_COLOR_INDEX_BIT_SGIX 0x00000002
215     #define GLX_DRAWABLE_TYPE_SGIX 0x8010
216     #define GLX_RENDER_TYPE_SGIX 0x8011
217     #define GLX_X_RENDERABLE_SGIX 0x8012
218     #define GLX_FBCONFIG_ID_SGIX 0x8013
219     #define GLX_RGBA_TYPE_SGIX 0x8014
220     #define GLX_COLOR_INDEX_TYPE_SGIX 0x8015
221     /* reuse GLX_SCREEN_EXT */
222     #endif
223    
224     #ifndef GLX_SGIX_pbuffer
225     #define GLX_PBUFFER_BIT_SGIX 0x00000004
226     #define GLX_BUFFER_CLOBBER_MASK_SGIX 0x08000000
227     #define GLX_FRONT_LEFT_BUFFER_BIT_SGIX 0x00000001
228     #define GLX_FRONT_RIGHT_BUFFER_BIT_SGIX 0x00000002
229     #define GLX_BACK_LEFT_BUFFER_BIT_SGIX 0x00000004
230     #define GLX_BACK_RIGHT_BUFFER_BIT_SGIX 0x00000008
231     #define GLX_AUX_BUFFERS_BIT_SGIX 0x00000010
232     #define GLX_DEPTH_BUFFER_BIT_SGIX 0x00000020
233     #define GLX_STENCIL_BUFFER_BIT_SGIX 0x00000040
234     #define GLX_ACCUM_BUFFER_BIT_SGIX 0x00000080
235     #define GLX_SAMPLE_BUFFERS_BIT_SGIX 0x00000100
236     #define GLX_MAX_PBUFFER_WIDTH_SGIX 0x8016
237     #define GLX_MAX_PBUFFER_HEIGHT_SGIX 0x8017
238     #define GLX_MAX_PBUFFER_PIXELS_SGIX 0x8018
239     #define GLX_OPTIMAL_PBUFFER_WIDTH_SGIX 0x8019
240     #define GLX_OPTIMAL_PBUFFER_HEIGHT_SGIX 0x801A
241     #define GLX_PRESERVED_CONTENTS_SGIX 0x801B
242     #define GLX_LARGEST_PBUFFER_SGIX 0x801C
243     #define GLX_WIDTH_SGIX 0x801D
244     #define GLX_HEIGHT_SGIX 0x801E
245     #define GLX_EVENT_MASK_SGIX 0x801F
246     #define GLX_DAMAGED_SGIX 0x8020
247     #define GLX_SAVED_SGIX 0x8021
248     #define GLX_WINDOW_SGIX 0x8022
249     #define GLX_PBUFFER_SGIX 0x8023
250     #endif
251    
252     #ifndef GLX_SGI_cushion
253     #endif
254    
255     #ifndef GLX_SGIX_video_resize
256     #define GLX_SYNC_FRAME_SGIX 0x00000000
257     #define GLX_SYNC_SWAP_SGIX 0x00000001
258     #endif
259    
260     #ifndef GLX_SGIX_dmbuffer
261     #define GLX_DIGITAL_MEDIA_PBUFFER_SGIX 0x8024
262     #endif
263    
264     #ifndef GLX_SGIX_swap_group
265     #endif
266    
267     #ifndef GLX_SGIX_swap_barrier
268     #endif
269    
270     #ifndef GLX_SGIS_blended_overlay
271     #define GLX_BLENDED_RGBA_SGIS 0x8025
272     #endif
273    
274     #ifndef GLX_SGIS_shared_multisample
275     #define GLX_MULTISAMPLE_SUB_RECT_WIDTH_SGIS 0x8026
276     #define GLX_MULTISAMPLE_SUB_RECT_HEIGHT_SGIS 0x8027
277     #endif
278    
279     #ifndef GLX_SUN_get_transparent_index
280     #endif
281    
282     #ifndef GLX_3DFX_multisample
283     #define GLX_SAMPLE_BUFFERS_3DFX 0x8050
284     #define GLX_SAMPLES_3DFX 0x8051
285     #endif
286    
287     #ifndef GLX_MESA_copy_sub_buffer
288     #endif
289    
290     #ifndef GLX_MESA_pixmap_colormap
291     #endif
292    
293     #ifndef GLX_MESA_release_buffers
294     #endif
295    
296     #ifndef GLX_MESA_set_3dfx_mode
297     #define GLX_3DFX_WINDOW_MODE_MESA 0x1
298     #define GLX_3DFX_FULLSCREEN_MODE_MESA 0x2
299     #endif
300    
301     #ifndef GLX_SGIX_visual_select_group
302     #define GLX_VISUAL_SELECT_GROUP_SGIX 0x8028
303     #endif
304    
305     #ifndef GLX_OML_swap_method
306     #define GLX_SWAP_METHOD_OML 0x8060
307     #define GLX_SWAP_EXCHANGE_OML 0x8061
308     #define GLX_SWAP_COPY_OML 0x8062
309     #define GLX_SWAP_UNDEFINED_OML 0x8063
310     #endif
311    
312     #ifndef GLX_OML_sync_control
313     #endif
314    
315     #ifndef GLX_NV_float_buffer
316     #define GLX_FLOAT_COMPONENTS_NV 0x20B0
317     #endif
318    
319     #ifndef GLX_SGIX_hyperpipe
320     #define GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX 80
321     #define GLX_BAD_HYPERPIPE_CONFIG_SGIX 91
322     #define GLX_BAD_HYPERPIPE_SGIX 92
323     #define GLX_HYPERPIPE_DISPLAY_PIPE_SGIX 0x00000001
324     #define GLX_HYPERPIPE_RENDER_PIPE_SGIX 0x00000002
325     #define GLX_PIPE_RECT_SGIX 0x00000001
326     #define GLX_PIPE_RECT_LIMITS_SGIX 0x00000002
327     #define GLX_HYPERPIPE_STEREO_SGIX 0x00000003
328     #define GLX_HYPERPIPE_PIXEL_AVERAGE_SGIX 0x00000004
329     #define GLX_HYPERPIPE_ID_SGIX 0x8030
330     #endif
331    
332     #ifndef GLX_MESA_agp_offset
333     #endif
334    
335     #ifndef GLX_EXT_fbconfig_packed_float
336     #define GLX_RGBA_UNSIGNED_FLOAT_TYPE_EXT 0x20B1
337     #define GLX_RGBA_UNSIGNED_FLOAT_BIT_EXT 0x00000008
338     #endif
339    
340     #ifndef GLX_EXT_framebuffer_sRGB
341     #define GLX_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x20B2
342     #endif
343    
344     #ifndef GLX_EXT_texture_from_pixmap
345     #define GLX_TEXTURE_1D_BIT_EXT 0x00000001
346     #define GLX_TEXTURE_2D_BIT_EXT 0x00000002
347     #define GLX_TEXTURE_RECTANGLE_BIT_EXT 0x00000004
348     #define GLX_BIND_TO_TEXTURE_RGB_EXT 0x20D0
349     #define GLX_BIND_TO_TEXTURE_RGBA_EXT 0x20D1
350     #define GLX_BIND_TO_MIPMAP_TEXTURE_EXT 0x20D2
351     #define GLX_BIND_TO_TEXTURE_TARGETS_EXT 0x20D3
352     #define GLX_Y_INVERTED_EXT 0x20D4
353     #define GLX_TEXTURE_FORMAT_EXT 0x20D5
354     #define GLX_TEXTURE_TARGET_EXT 0x20D6
355     #define GLX_MIPMAP_TEXTURE_EXT 0x20D7
356     #define GLX_TEXTURE_FORMAT_NONE_EXT 0x20D8
357     #define GLX_TEXTURE_FORMAT_RGB_EXT 0x20D9
358     #define GLX_TEXTURE_FORMAT_RGBA_EXT 0x20DA
359     #define GLX_TEXTURE_1D_EXT 0x20DB
360     #define GLX_TEXTURE_2D_EXT 0x20DC
361     #define GLX_TEXTURE_RECTANGLE_EXT 0x20DD
362     #define GLX_FRONT_LEFT_EXT 0x20DE
363     #define GLX_FRONT_RIGHT_EXT 0x20DF
364     #define GLX_BACK_LEFT_EXT 0x20E0
365     #define GLX_BACK_RIGHT_EXT 0x20E1
366     #define GLX_FRONT_EXT GLX_FRONT_LEFT_EXT
367     #define GLX_BACK_EXT GLX_BACK_LEFT_EXT
368     #define GLX_AUX0_EXT 0x20E2
369     #define GLX_AUX1_EXT 0x20E3
370     #define GLX_AUX2_EXT 0x20E4
371     #define GLX_AUX3_EXT 0x20E5
372     #define GLX_AUX4_EXT 0x20E6
373     #define GLX_AUX5_EXT 0x20E7
374     #define GLX_AUX6_EXT 0x20E8
375     #define GLX_AUX7_EXT 0x20E9
376     #define GLX_AUX8_EXT 0x20EA
377     #define GLX_AUX9_EXT 0x20EB
378     #endif
379    
380 niro 789 #ifndef GLX_NV_present_video
381     #define GLX_NUM_VIDEO_SLOTS_NV 0x20F0
382     #endif
383 niro 622
384 niro 789 #ifndef GLX_NV_video_out
385     #define GLX_VIDEO_OUT_COLOR_NV 0x20C3
386     #define GLX_VIDEO_OUT_ALPHA_NV 0x20C4
387     #define GLX_VIDEO_OUT_DEPTH_NV 0x20C5
388     #define GLX_VIDEO_OUT_COLOR_AND_ALPHA_NV 0x20C6
389     #define GLX_VIDEO_OUT_COLOR_AND_DEPTH_NV 0x20C7
390     #define GLX_VIDEO_OUT_FRAME_NV 0x20C8
391     #define GLX_VIDEO_OUT_FIELD_1_NV 0x20C9
392     #define GLX_VIDEO_OUT_FIELD_2_NV 0x20CA
393     #define GLX_VIDEO_OUT_STACKED_FIELDS_1_2_NV 0x20CB
394     #define GLX_VIDEO_OUT_STACKED_FIELDS_2_1_NV 0x20CC
395     #endif
396    
397     #ifndef GLX_NV_swap_group
398     #endif
399    
400 niro 911 #ifndef GLX_NV_video_capture
401     #define GLX_DEVICE_ID_NV 0x20CD
402     #define GLX_UNIQUE_ID_NV 0x20CE
403     #define GLX_NUM_VIDEO_CAPTURE_SLOTS_NV 0x20CF
404     #endif
405 niro 789
406 niro 911 #ifndef GLX_EXT_swap_control
407     #define GLX_SWAP_INTERVAL_EXT 0x20F1
408     #define GLX_MAX_SWAP_INTERVAL_EXT 0x20F2
409     #endif
410    
411     #ifndef GLX_NV_copy_image
412     #endif
413    
414 niro 969 #ifndef GLX_INTEL_swap_event
415     #define GLX_BUFFER_SWAP_COMPLETE_INTEL_MASK 0x04000000
416     #define GLX_EXCHANGE_COMPLETE_INTEL 0x8180
417     #define GLX_COPY_COMPLETE_INTEL 0x8181
418     #define GLX_FLIP_COMPLETE_INTEL 0x8182
419     #endif
420 niro 911
421 niro 1145 #ifndef GLX_NV_multisample_coverage
422     #define GLX_COVERAGE_SAMPLES_NV 100001
423     #define GLX_COLOR_SAMPLES_NV 0x20B3
424     #endif
425 niro 969
426 niro 1145 #ifndef GLX_AMD_gpu_association
427     #define GLX_GPU_VENDOR_AMD 0x1F00
428     #define GLX_GPU_RENDERER_STRING_AMD 0x1F01
429     #define GLX_GPU_OPENGL_VERSION_STRING_AMD 0x1F02
430     #define GLX_GPU_FASTEST_TARGET_GPUS_AMD 0x21A2
431     #define GLX_GPU_RAM_AMD 0x21A3
432     #define GLX_GPU_CLOCK_AMD 0x21A4
433     #define GLX_GPU_NUM_PIPES_AMD 0x21A5
434     #define GLX_GPU_NUM_SIMD_AMD 0x21A6
435     #define GLX_GPU_NUM_RB_AMD 0x21A7
436     #define GLX_GPU_NUM_SPI_AMD 0x21A8
437     #endif
438    
439     #ifndef GLX_EXT_create_context_es2_profile
440     #define GLX_CONTEXT_ES2_PROFILE_BIT_EXT 0x00000004
441     #endif
442    
443    
444 niro 622 /*************************************************************/
445    
446     #ifndef GLX_ARB_get_proc_address
447     typedef void (*__GLXextFuncPtr)(void);
448     #endif
449    
450     #ifndef GLX_SGIX_video_source
451     typedef XID GLXVideoSourceSGIX;
452     #endif
453    
454     #ifndef GLX_SGIX_fbconfig
455     typedef XID GLXFBConfigIDSGIX;
456     typedef struct __GLXFBConfigRec *GLXFBConfigSGIX;
457     #endif
458    
459     #ifndef GLX_SGIX_pbuffer
460     typedef XID GLXPbufferSGIX;
461     typedef struct {
462     int type;
463     unsigned long serial; /* # of last request processed by server */
464     Bool send_event; /* true if this came for SendEvent request */
465     Display *display; /* display the event was read from */
466     GLXDrawable drawable; /* i.d. of Drawable */
467     int event_type; /* GLX_DAMAGED_SGIX or GLX_SAVED_SGIX */
468     int draw_type; /* GLX_WINDOW_SGIX or GLX_PBUFFER_SGIX */
469     unsigned int mask; /* mask indicating which buffers are affected*/
470     int x, y;
471     int width, height;
472     int count; /* if nonzero, at least this many more */
473     } GLXBufferClobberEventSGIX;
474     #endif
475    
476 niro 911 #ifndef GLX_NV_video_output
477     typedef unsigned int GLXVideoDeviceNV;
478     #endif
479    
480     #ifndef GLX_NV_video_capture
481     typedef XID GLXVideoCaptureDeviceNV;
482     #endif
483    
484 niro 622 #ifndef GLEXT_64_TYPES_DEFINED
485 niro 789 /* This code block is duplicated in glext.h, so must be protected */
486 niro 622 #define GLEXT_64_TYPES_DEFINED
487     /* Define int32_t, int64_t, and uint64_t types for UST/MSC */
488     /* (as used in the GLX_OML_sync_control extension). */
489     #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
490     #include <inttypes.h>
491     #elif defined(__sun__) || defined(__digital__)
492     #include <inttypes.h>
493     #if defined(__STDC__)
494 niro 789 #if defined(__arch64__) || defined(_LP64)
495 niro 622 typedef long int int64_t;
496     typedef unsigned long int uint64_t;
497     #else
498     typedef long long int int64_t;
499     typedef unsigned long long int uint64_t;
500     #endif /* __arch64__ */
501     #endif /* __STDC__ */
502 niro 789 #elif defined( __VMS ) || defined(__sgi)
503 niro 622 #include <inttypes.h>
504     #elif defined(__SCO__) || defined(__USLC__)
505     #include <stdint.h>
506     #elif defined(__UNIXOS2__) || defined(__SOL64__)
507     typedef long int int32_t;
508     typedef long long int int64_t;
509     typedef unsigned long long int uint64_t;
510     #elif defined(_WIN32) && defined(__GNUC__)
511     #include <stdint.h>
512     #elif defined(_WIN32)
513     typedef __int32 int32_t;
514     typedef __int64 int64_t;
515     typedef unsigned __int64 uint64_t;
516     #else
517     #include <inttypes.h> /* Fallback option */
518     #endif
519     #endif
520    
521     #ifndef GLX_VERSION_1_3
522     #define GLX_VERSION_1_3 1
523     #ifdef GLX_GLXEXT_PROTOTYPES
524 niro 969 extern GLXFBConfig * glXGetFBConfigs (Display *dpy, int screen, int *nelements);
525     extern GLXFBConfig * glXChooseFBConfig (Display *dpy, int screen, const int *attrib_list, int *nelements);
526     extern int glXGetFBConfigAttrib (Display *dpy, GLXFBConfig config, int attribute, int *value);
527     extern XVisualInfo * glXGetVisualFromFBConfig (Display *dpy, GLXFBConfig config);
528     extern GLXWindow glXCreateWindow (Display *dpy, GLXFBConfig config, Window win, const int *attrib_list);
529     extern void glXDestroyWindow (Display *dpy, GLXWindow win);
530     extern GLXPixmap glXCreatePixmap (Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attrib_list);
531     extern void glXDestroyPixmap (Display *dpy, GLXPixmap pixmap);
532     extern GLXPbuffer glXCreatePbuffer (Display *dpy, GLXFBConfig config, const int *attrib_list);
533     extern void glXDestroyPbuffer (Display *dpy, GLXPbuffer pbuf);
534     extern void glXQueryDrawable (Display *dpy, GLXDrawable draw, int attribute, unsigned int *value);
535     extern GLXContext glXCreateNewContext (Display *dpy, GLXFBConfig config, int render_type, GLXContext share_list, Bool direct);
536     extern Bool glXMakeContextCurrent (Display *dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx);
537 niro 622 extern GLXDrawable glXGetCurrentReadDrawable (void);
538     extern Display * glXGetCurrentDisplay (void);
539 niro 969 extern int glXQueryContext (Display *dpy, GLXContext ctx, int attribute, int *value);
540     extern void glXSelectEvent (Display *dpy, GLXDrawable draw, unsigned long event_mask);
541     extern void glXGetSelectedEvent (Display *dpy, GLXDrawable draw, unsigned long *event_mask);
542 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
543     typedef GLXFBConfig * ( * PFNGLXGETFBCONFIGSPROC) (Display *dpy, int screen, int *nelements);
544     typedef GLXFBConfig * ( * PFNGLXCHOOSEFBCONFIGPROC) (Display *dpy, int screen, const int *attrib_list, int *nelements);
545     typedef int ( * PFNGLXGETFBCONFIGATTRIBPROC) (Display *dpy, GLXFBConfig config, int attribute, int *value);
546     typedef XVisualInfo * ( * PFNGLXGETVISUALFROMFBCONFIGPROC) (Display *dpy, GLXFBConfig config);
547     typedef GLXWindow ( * PFNGLXCREATEWINDOWPROC) (Display *dpy, GLXFBConfig config, Window win, const int *attrib_list);
548     typedef void ( * PFNGLXDESTROYWINDOWPROC) (Display *dpy, GLXWindow win);
549     typedef GLXPixmap ( * PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attrib_list);
550     typedef void ( * PFNGLXDESTROYPIXMAPPROC) (Display *dpy, GLXPixmap pixmap);
551     typedef GLXPbuffer ( * PFNGLXCREATEPBUFFERPROC) (Display *dpy, GLXFBConfig config, const int *attrib_list);
552     typedef void ( * PFNGLXDESTROYPBUFFERPROC) (Display *dpy, GLXPbuffer pbuf);
553     typedef void ( * PFNGLXQUERYDRAWABLEPROC) (Display *dpy, GLXDrawable draw, int attribute, unsigned int *value);
554     typedef GLXContext ( * PFNGLXCREATENEWCONTEXTPROC) (Display *dpy, GLXFBConfig config, int render_type, GLXContext share_list, Bool direct);
555     typedef Bool ( * PFNGLXMAKECONTEXTCURRENTPROC) (Display *dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx);
556     typedef GLXDrawable ( * PFNGLXGETCURRENTREADDRAWABLEPROC) (void);
557     typedef Display * ( * PFNGLXGETCURRENTDISPLAYPROC) (void);
558     typedef int ( * PFNGLXQUERYCONTEXTPROC) (Display *dpy, GLXContext ctx, int attribute, int *value);
559     typedef void ( * PFNGLXSELECTEVENTPROC) (Display *dpy, GLXDrawable draw, unsigned long event_mask);
560     typedef void ( * PFNGLXGETSELECTEDEVENTPROC) (Display *dpy, GLXDrawable draw, unsigned long *event_mask);
561     #endif
562    
563     #ifndef GLX_VERSION_1_4
564     #define GLX_VERSION_1_4 1
565     #ifdef GLX_GLXEXT_PROTOTYPES
566 niro 969 extern __GLXextFuncPtr glXGetProcAddress (const GLubyte *procName);
567 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
568     typedef __GLXextFuncPtr ( * PFNGLXGETPROCADDRESSPROC) (const GLubyte *procName);
569     #endif
570    
571     #ifndef GLX_ARB_get_proc_address
572     #define GLX_ARB_get_proc_address 1
573     #ifdef GLX_GLXEXT_PROTOTYPES
574 niro 969 extern __GLXextFuncPtr glXGetProcAddressARB (const GLubyte *procName);
575 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
576     typedef __GLXextFuncPtr ( * PFNGLXGETPROCADDRESSARBPROC) (const GLubyte *procName);
577     #endif
578    
579     #ifndef GLX_ARB_multisample
580     #define GLX_ARB_multisample 1
581     #endif
582    
583     #ifndef GLX_ARB_fbconfig_float
584     #define GLX_ARB_fbconfig_float 1
585     #endif
586    
587 niro 1145 #ifndef GLX_ARB_framebuffer_sRGB
588     #define GLX_ARB_framebuffer_sRGB 1
589     #endif
590    
591 niro 789 #ifndef GLX_ARB_create_context
592     #define GLX_ARB_create_context 1
593     #ifdef GLX_GLXEXT_PROTOTYPES
594 niro 969 extern GLXContext glXCreateContextAttribsARB (Display *dpy, GLXFBConfig config, GLXContext share_context, Bool direct, const int *attrib_list);
595 niro 789 #endif /* GLX_GLXEXT_PROTOTYPES */
596     typedef GLXContext ( * PFNGLXCREATECONTEXTATTRIBSARBPROC) (Display *dpy, GLXFBConfig config, GLXContext share_context, Bool direct, const int *attrib_list);
597     #endif
598    
599 niro 911 #ifndef GLX_ARB_create_context_profile
600     #define GLX_ARB_create_context_profile 1
601     #endif
602    
603 niro 1145 #ifndef GLX_ARB_create_context_robustness
604     #define GLX_ARB_create_context_robustness 1
605     #endif
606    
607 niro 622 #ifndef GLX_SGIS_multisample
608     #define GLX_SGIS_multisample 1
609     #endif
610    
611     #ifndef GLX_EXT_visual_info
612     #define GLX_EXT_visual_info 1
613     #endif
614    
615     #ifndef GLX_SGI_swap_control
616     #define GLX_SGI_swap_control 1
617     #ifdef GLX_GLXEXT_PROTOTYPES
618 niro 969 extern int glXSwapIntervalSGI (int interval);
619 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
620     typedef int ( * PFNGLXSWAPINTERVALSGIPROC) (int interval);
621     #endif
622    
623     #ifndef GLX_SGI_video_sync
624     #define GLX_SGI_video_sync 1
625     #ifdef GLX_GLXEXT_PROTOTYPES
626 niro 969 extern int glXGetVideoSyncSGI (unsigned int *count);
627     extern int glXWaitVideoSyncSGI (int divisor, int remainder, unsigned int *count);
628 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
629     typedef int ( * PFNGLXGETVIDEOSYNCSGIPROC) (unsigned int *count);
630     typedef int ( * PFNGLXWAITVIDEOSYNCSGIPROC) (int divisor, int remainder, unsigned int *count);
631     #endif
632    
633     #ifndef GLX_SGI_make_current_read
634     #define GLX_SGI_make_current_read 1
635     #ifdef GLX_GLXEXT_PROTOTYPES
636 niro 969 extern Bool glXMakeCurrentReadSGI (Display *dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx);
637 niro 622 extern GLXDrawable glXGetCurrentReadDrawableSGI (void);
638     #endif /* GLX_GLXEXT_PROTOTYPES */
639     typedef Bool ( * PFNGLXMAKECURRENTREADSGIPROC) (Display *dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx);
640     typedef GLXDrawable ( * PFNGLXGETCURRENTREADDRAWABLESGIPROC) (void);
641     #endif
642    
643     #ifndef GLX_SGIX_video_source
644     #define GLX_SGIX_video_source 1
645     #ifdef _VL_H
646     #ifdef GLX_GLXEXT_PROTOTYPES
647 niro 969 extern GLXVideoSourceSGIX glXCreateGLXVideoSourceSGIX (Display *display, int screen, VLServer server, VLPath path, int nodeClass, VLNode drainNode);
648     extern void glXDestroyGLXVideoSourceSGIX (Display *dpy, GLXVideoSourceSGIX glxvideosource);
649 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
650     typedef GLXVideoSourceSGIX ( * PFNGLXCREATEGLXVIDEOSOURCESGIXPROC) (Display *display, int screen, VLServer server, VLPath path, int nodeClass, VLNode drainNode);
651     typedef void ( * PFNGLXDESTROYGLXVIDEOSOURCESGIXPROC) (Display *dpy, GLXVideoSourceSGIX glxvideosource);
652     #endif /* _VL_H */
653     #endif
654    
655     #ifndef GLX_EXT_visual_rating
656     #define GLX_EXT_visual_rating 1
657     #endif
658    
659     #ifndef GLX_EXT_import_context
660     #define GLX_EXT_import_context 1
661     #ifdef GLX_GLXEXT_PROTOTYPES
662     extern Display * glXGetCurrentDisplayEXT (void);
663 niro 969 extern int glXQueryContextInfoEXT (Display *dpy, GLXContext context, int attribute, int *value);
664     extern GLXContextID glXGetContextIDEXT (const GLXContext context);
665     extern GLXContext glXImportContextEXT (Display *dpy, GLXContextID contextID);
666     extern void glXFreeContextEXT (Display *dpy, GLXContext context);
667 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
668     typedef Display * ( * PFNGLXGETCURRENTDISPLAYEXTPROC) (void);
669     typedef int ( * PFNGLXQUERYCONTEXTINFOEXTPROC) (Display *dpy, GLXContext context, int attribute, int *value);
670     typedef GLXContextID ( * PFNGLXGETCONTEXTIDEXTPROC) (const GLXContext context);
671     typedef GLXContext ( * PFNGLXIMPORTCONTEXTEXTPROC) (Display *dpy, GLXContextID contextID);
672     typedef void ( * PFNGLXFREECONTEXTEXTPROC) (Display *dpy, GLXContext context);
673     #endif
674    
675     #ifndef GLX_SGIX_fbconfig
676     #define GLX_SGIX_fbconfig 1
677     #ifdef GLX_GLXEXT_PROTOTYPES
678 niro 969 extern int glXGetFBConfigAttribSGIX (Display *dpy, GLXFBConfigSGIX config, int attribute, int *value);
679     extern GLXFBConfigSGIX * glXChooseFBConfigSGIX (Display *dpy, int screen, int *attrib_list, int *nelements);
680     extern GLXPixmap glXCreateGLXPixmapWithConfigSGIX (Display *dpy, GLXFBConfigSGIX config, Pixmap pixmap);
681     extern GLXContext glXCreateContextWithConfigSGIX (Display *dpy, GLXFBConfigSGIX config, int render_type, GLXContext share_list, Bool direct);
682     extern XVisualInfo * glXGetVisualFromFBConfigSGIX (Display *dpy, GLXFBConfigSGIX config);
683     extern GLXFBConfigSGIX glXGetFBConfigFromVisualSGIX (Display *dpy, XVisualInfo *vis);
684 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
685     typedef int ( * PFNGLXGETFBCONFIGATTRIBSGIXPROC) (Display *dpy, GLXFBConfigSGIX config, int attribute, int *value);
686     typedef GLXFBConfigSGIX * ( * PFNGLXCHOOSEFBCONFIGSGIXPROC) (Display *dpy, int screen, int *attrib_list, int *nelements);
687     typedef GLXPixmap ( * PFNGLXCREATEGLXPIXMAPWITHCONFIGSGIXPROC) (Display *dpy, GLXFBConfigSGIX config, Pixmap pixmap);
688     typedef GLXContext ( * PFNGLXCREATECONTEXTWITHCONFIGSGIXPROC) (Display *dpy, GLXFBConfigSGIX config, int render_type, GLXContext share_list, Bool direct);
689     typedef XVisualInfo * ( * PFNGLXGETVISUALFROMFBCONFIGSGIXPROC) (Display *dpy, GLXFBConfigSGIX config);
690     typedef GLXFBConfigSGIX ( * PFNGLXGETFBCONFIGFROMVISUALSGIXPROC) (Display *dpy, XVisualInfo *vis);
691     #endif
692    
693     #ifndef GLX_SGIX_pbuffer
694     #define GLX_SGIX_pbuffer 1
695     #ifdef GLX_GLXEXT_PROTOTYPES
696 niro 969 extern GLXPbufferSGIX glXCreateGLXPbufferSGIX (Display *dpy, GLXFBConfigSGIX config, unsigned int width, unsigned int height, int *attrib_list);
697     extern void glXDestroyGLXPbufferSGIX (Display *dpy, GLXPbufferSGIX pbuf);
698     extern int glXQueryGLXPbufferSGIX (Display *dpy, GLXPbufferSGIX pbuf, int attribute, unsigned int *value);
699     extern void glXSelectEventSGIX (Display *dpy, GLXDrawable drawable, unsigned long mask);
700     extern void glXGetSelectedEventSGIX (Display *dpy, GLXDrawable drawable, unsigned long *mask);
701 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
702     typedef GLXPbufferSGIX ( * PFNGLXCREATEGLXPBUFFERSGIXPROC) (Display *dpy, GLXFBConfigSGIX config, unsigned int width, unsigned int height, int *attrib_list);
703     typedef void ( * PFNGLXDESTROYGLXPBUFFERSGIXPROC) (Display *dpy, GLXPbufferSGIX pbuf);
704     typedef int ( * PFNGLXQUERYGLXPBUFFERSGIXPROC) (Display *dpy, GLXPbufferSGIX pbuf, int attribute, unsigned int *value);
705     typedef void ( * PFNGLXSELECTEVENTSGIXPROC) (Display *dpy, GLXDrawable drawable, unsigned long mask);
706     typedef void ( * PFNGLXGETSELECTEDEVENTSGIXPROC) (Display *dpy, GLXDrawable drawable, unsigned long *mask);
707     #endif
708    
709     #ifndef GLX_SGI_cushion
710     #define GLX_SGI_cushion 1
711     #ifdef GLX_GLXEXT_PROTOTYPES
712 niro 969 extern void glXCushionSGI (Display *dpy, Window window, float cushion);
713 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
714     typedef void ( * PFNGLXCUSHIONSGIPROC) (Display *dpy, Window window, float cushion);
715     #endif
716    
717     #ifndef GLX_SGIX_video_resize
718     #define GLX_SGIX_video_resize 1
719     #ifdef GLX_GLXEXT_PROTOTYPES
720 niro 969 extern int glXBindChannelToWindowSGIX (Display *display, int screen, int channel, Window window);
721     extern int glXChannelRectSGIX (Display *display, int screen, int channel, int x, int y, int w, int h);
722     extern int glXQueryChannelRectSGIX (Display *display, int screen, int channel, int *dx, int *dy, int *dw, int *dh);
723     extern int glXQueryChannelDeltasSGIX (Display *display, int screen, int channel, int *x, int *y, int *w, int *h);
724     extern int glXChannelRectSyncSGIX (Display *display, int screen, int channel, GLenum synctype);
725 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
726     typedef int ( * PFNGLXBINDCHANNELTOWINDOWSGIXPROC) (Display *display, int screen, int channel, Window window);
727     typedef int ( * PFNGLXCHANNELRECTSGIXPROC) (Display *display, int screen, int channel, int x, int y, int w, int h);
728     typedef int ( * PFNGLXQUERYCHANNELRECTSGIXPROC) (Display *display, int screen, int channel, int *dx, int *dy, int *dw, int *dh);
729     typedef int ( * PFNGLXQUERYCHANNELDELTASSGIXPROC) (Display *display, int screen, int channel, int *x, int *y, int *w, int *h);
730     typedef int ( * PFNGLXCHANNELRECTSYNCSGIXPROC) (Display *display, int screen, int channel, GLenum synctype);
731     #endif
732    
733     #ifndef GLX_SGIX_dmbuffer
734     #define GLX_SGIX_dmbuffer 1
735     #ifdef _DM_BUFFER_H_
736     #ifdef GLX_GLXEXT_PROTOTYPES
737 niro 969 extern Bool glXAssociateDMPbufferSGIX (Display *dpy, GLXPbufferSGIX pbuffer, DMparams *params, DMbuffer dmbuffer);
738 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
739     typedef Bool ( * PFNGLXASSOCIATEDMPBUFFERSGIXPROC) (Display *dpy, GLXPbufferSGIX pbuffer, DMparams *params, DMbuffer dmbuffer);
740     #endif /* _DM_BUFFER_H_ */
741     #endif
742    
743     #ifndef GLX_SGIX_swap_group
744     #define GLX_SGIX_swap_group 1
745     #ifdef GLX_GLXEXT_PROTOTYPES
746 niro 969 extern void glXJoinSwapGroupSGIX (Display *dpy, GLXDrawable drawable, GLXDrawable member);
747 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
748     typedef void ( * PFNGLXJOINSWAPGROUPSGIXPROC) (Display *dpy, GLXDrawable drawable, GLXDrawable member);
749     #endif
750    
751     #ifndef GLX_SGIX_swap_barrier
752     #define GLX_SGIX_swap_barrier 1
753     #ifdef GLX_GLXEXT_PROTOTYPES
754 niro 969 extern void glXBindSwapBarrierSGIX (Display *dpy, GLXDrawable drawable, int barrier);
755     extern Bool glXQueryMaxSwapBarriersSGIX (Display *dpy, int screen, int *max);
756 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
757     typedef void ( * PFNGLXBINDSWAPBARRIERSGIXPROC) (Display *dpy, GLXDrawable drawable, int barrier);
758     typedef Bool ( * PFNGLXQUERYMAXSWAPBARRIERSSGIXPROC) (Display *dpy, int screen, int *max);
759     #endif
760    
761     #ifndef GLX_SUN_get_transparent_index
762     #define GLX_SUN_get_transparent_index 1
763     #ifdef GLX_GLXEXT_PROTOTYPES
764 niro 969 extern Status glXGetTransparentIndexSUN (Display *dpy, Window overlay, Window underlay, long *pTransparentIndex);
765 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
766     typedef Status ( * PFNGLXGETTRANSPARENTINDEXSUNPROC) (Display *dpy, Window overlay, Window underlay, long *pTransparentIndex);
767     #endif
768    
769     #ifndef GLX_MESA_copy_sub_buffer
770     #define GLX_MESA_copy_sub_buffer 1
771     #ifdef GLX_GLXEXT_PROTOTYPES
772 niro 969 extern void glXCopySubBufferMESA (Display *dpy, GLXDrawable drawable, int x, int y, int width, int height);
773 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
774     typedef void ( * PFNGLXCOPYSUBBUFFERMESAPROC) (Display *dpy, GLXDrawable drawable, int x, int y, int width, int height);
775     #endif
776    
777     #ifndef GLX_MESA_pixmap_colormap
778     #define GLX_MESA_pixmap_colormap 1
779     #ifdef GLX_GLXEXT_PROTOTYPES
780 niro 969 extern GLXPixmap glXCreateGLXPixmapMESA (Display *dpy, XVisualInfo *visual, Pixmap pixmap, Colormap cmap);
781 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
782     typedef GLXPixmap ( * PFNGLXCREATEGLXPIXMAPMESAPROC) (Display *dpy, XVisualInfo *visual, Pixmap pixmap, Colormap cmap);
783     #endif
784    
785     #ifndef GLX_MESA_release_buffers
786     #define GLX_MESA_release_buffers 1
787     #ifdef GLX_GLXEXT_PROTOTYPES
788 niro 969 extern Bool glXReleaseBuffersMESA (Display *dpy, GLXDrawable drawable);
789 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
790     typedef Bool ( * PFNGLXRELEASEBUFFERSMESAPROC) (Display *dpy, GLXDrawable drawable);
791     #endif
792    
793     #ifndef GLX_MESA_set_3dfx_mode
794     #define GLX_MESA_set_3dfx_mode 1
795     #ifdef GLX_GLXEXT_PROTOTYPES
796 niro 969 extern Bool glXSet3DfxModeMESA (int mode);
797 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
798     typedef Bool ( * PFNGLXSET3DFXMODEMESAPROC) (int mode);
799     #endif
800    
801     #ifndef GLX_SGIX_visual_select_group
802     #define GLX_SGIX_visual_select_group 1
803     #endif
804    
805     #ifndef GLX_OML_swap_method
806     #define GLX_OML_swap_method 1
807     #endif
808    
809     #ifndef GLX_OML_sync_control
810     #define GLX_OML_sync_control 1
811     #ifdef GLX_GLXEXT_PROTOTYPES
812 niro 969 extern Bool glXGetSyncValuesOML (Display *dpy, GLXDrawable drawable, int64_t *ust, int64_t *msc, int64_t *sbc);
813     extern Bool glXGetMscRateOML (Display *dpy, GLXDrawable drawable, int32_t *numerator, int32_t *denominator);
814     extern int64_t glXSwapBuffersMscOML (Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder);
815     extern Bool glXWaitForMscOML (Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc);
816     extern Bool glXWaitForSbcOML (Display *dpy, GLXDrawable drawable, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc);
817 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
818     typedef Bool ( * PFNGLXGETSYNCVALUESOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t *ust, int64_t *msc, int64_t *sbc);
819     typedef Bool ( * PFNGLXGETMSCRATEOMLPROC) (Display *dpy, GLXDrawable drawable, int32_t *numerator, int32_t *denominator);
820     typedef int64_t ( * PFNGLXSWAPBUFFERSMSCOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder);
821     typedef Bool ( * PFNGLXWAITFORMSCOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc);
822     typedef Bool ( * PFNGLXWAITFORSBCOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc);
823     #endif
824    
825     #ifndef GLX_NV_float_buffer
826     #define GLX_NV_float_buffer 1
827     #endif
828    
829     #ifndef GLX_SGIX_hyperpipe
830     #define GLX_SGIX_hyperpipe 1
831    
832     typedef struct {
833     char pipeName[GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX];
834     int networkId;
835     } GLXHyperpipeNetworkSGIX;
836    
837     typedef struct {
838     char pipeName[GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX];
839     int channel;
840     unsigned int
841     participationType;
842     int timeSlice;
843     } GLXHyperpipeConfigSGIX;
844    
845     typedef struct {
846     char pipeName[GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX];
847     int srcXOrigin, srcYOrigin, srcWidth, srcHeight;
848     int destXOrigin, destYOrigin, destWidth, destHeight;
849     } GLXPipeRect;
850    
851     typedef struct {
852     char pipeName[GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX];
853     int XOrigin, YOrigin, maxHeight, maxWidth;
854     } GLXPipeRectLimits;
855    
856     #ifdef GLX_GLXEXT_PROTOTYPES
857 niro 969 extern GLXHyperpipeNetworkSGIX * glXQueryHyperpipeNetworkSGIX (Display *dpy, int *npipes);
858     extern int glXHyperpipeConfigSGIX (Display *dpy, int networkId, int npipes, GLXHyperpipeConfigSGIX *cfg, int *hpId);
859     extern GLXHyperpipeConfigSGIX * glXQueryHyperpipeConfigSGIX (Display *dpy, int hpId, int *npipes);
860     extern int glXDestroyHyperpipeConfigSGIX (Display *dpy, int hpId);
861     extern int glXBindHyperpipeSGIX (Display *dpy, int hpId);
862     extern int glXQueryHyperpipeBestAttribSGIX (Display *dpy, int timeSlice, int attrib, int size, void *attribList, void *returnAttribList);
863     extern int glXHyperpipeAttribSGIX (Display *dpy, int timeSlice, int attrib, int size, void *attribList);
864     extern int glXQueryHyperpipeAttribSGIX (Display *dpy, int timeSlice, int attrib, int size, void *returnAttribList);
865 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
866     typedef GLXHyperpipeNetworkSGIX * ( * PFNGLXQUERYHYPERPIPENETWORKSGIXPROC) (Display *dpy, int *npipes);
867     typedef int ( * PFNGLXHYPERPIPECONFIGSGIXPROC) (Display *dpy, int networkId, int npipes, GLXHyperpipeConfigSGIX *cfg, int *hpId);
868     typedef GLXHyperpipeConfigSGIX * ( * PFNGLXQUERYHYPERPIPECONFIGSGIXPROC) (Display *dpy, int hpId, int *npipes);
869     typedef int ( * PFNGLXDESTROYHYPERPIPECONFIGSGIXPROC) (Display *dpy, int hpId);
870     typedef int ( * PFNGLXBINDHYPERPIPESGIXPROC) (Display *dpy, int hpId);
871     typedef int ( * PFNGLXQUERYHYPERPIPEBESTATTRIBSGIXPROC) (Display *dpy, int timeSlice, int attrib, int size, void *attribList, void *returnAttribList);
872     typedef int ( * PFNGLXHYPERPIPEATTRIBSGIXPROC) (Display *dpy, int timeSlice, int attrib, int size, void *attribList);
873     typedef int ( * PFNGLXQUERYHYPERPIPEATTRIBSGIXPROC) (Display *dpy, int timeSlice, int attrib, int size, void *returnAttribList);
874     #endif
875    
876     #ifndef GLX_MESA_agp_offset
877     #define GLX_MESA_agp_offset 1
878     #ifdef GLX_GLXEXT_PROTOTYPES
879 niro 969 extern unsigned int glXGetAGPOffsetMESA (const void *pointer);
880 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
881     typedef unsigned int ( * PFNGLXGETAGPOFFSETMESAPROC) (const void *pointer);
882     #endif
883    
884     #ifndef GLX_EXT_fbconfig_packed_float
885     #define GLX_EXT_fbconfig_packed_float 1
886     #endif
887    
888     #ifndef GLX_EXT_framebuffer_sRGB
889     #define GLX_EXT_framebuffer_sRGB 1
890     #endif
891    
892     #ifndef GLX_EXT_texture_from_pixmap
893     #define GLX_EXT_texture_from_pixmap 1
894     #ifdef GLX_GLXEXT_PROTOTYPES
895 niro 969 extern void glXBindTexImageEXT (Display *dpy, GLXDrawable drawable, int buffer, const int *attrib_list);
896     extern void glXReleaseTexImageEXT (Display *dpy, GLXDrawable drawable, int buffer);
897 niro 622 #endif /* GLX_GLXEXT_PROTOTYPES */
898     typedef void ( * PFNGLXBINDTEXIMAGEEXTPROC) (Display *dpy, GLXDrawable drawable, int buffer, const int *attrib_list);
899     typedef void ( * PFNGLXRELEASETEXIMAGEEXTPROC) (Display *dpy, GLXDrawable drawable, int buffer);
900     #endif
901    
902 niro 789 #ifndef GLX_NV_present_video
903     #define GLX_NV_present_video 1
904 niro 911 #ifdef GLX_GLXEXT_PROTOTYPES
905 niro 969 extern unsigned int * glXEnumerateVideoDevicesNV (Display *dpy, int screen, int *nelements);
906     extern int glXBindVideoDeviceNV (Display *dpy, unsigned int video_slot, unsigned int video_device, const int *attrib_list);
907 niro 911 #endif /* GLX_GLXEXT_PROTOTYPES */
908     typedef unsigned int * ( * PFNGLXENUMERATEVIDEODEVICESNVPROC) (Display *dpy, int screen, int *nelements);
909     typedef int ( * PFNGLXBINDVIDEODEVICENVPROC) (Display *dpy, unsigned int video_slot, unsigned int video_device, const int *attrib_list);
910 niro 789 #endif
911 niro 622
912 niro 911 #ifndef GLX_NV_video_output
913     #define GLX_NV_video_output 1
914     #ifdef GLX_GLXEXT_PROTOTYPES
915 niro 969 extern int glXGetVideoDeviceNV (Display *dpy, int screen, int numVideoDevices, GLXVideoDeviceNV *pVideoDevice);
916     extern int glXReleaseVideoDeviceNV (Display *dpy, int screen, GLXVideoDeviceNV VideoDevice);
917     extern int glXBindVideoImageNV (Display *dpy, GLXVideoDeviceNV VideoDevice, GLXPbuffer pbuf, int iVideoBuffer);
918     extern int glXReleaseVideoImageNV (Display *dpy, GLXPbuffer pbuf);
919     extern int glXSendPbufferToVideoNV (Display *dpy, GLXPbuffer pbuf, int iBufferType, unsigned long *pulCounterPbuffer, GLboolean bBlock);
920     extern int glXGetVideoInfoNV (Display *dpy, int screen, GLXVideoDeviceNV VideoDevice, unsigned long *pulCounterOutputPbuffer, unsigned long *pulCounterOutputVideo);
921 niro 911 #endif /* GLX_GLXEXT_PROTOTYPES */
922     typedef int ( * PFNGLXGETVIDEODEVICENVPROC) (Display *dpy, int screen, int numVideoDevices, GLXVideoDeviceNV *pVideoDevice);
923     typedef int ( * PFNGLXRELEASEVIDEODEVICENVPROC) (Display *dpy, int screen, GLXVideoDeviceNV VideoDevice);
924     typedef int ( * PFNGLXBINDVIDEOIMAGENVPROC) (Display *dpy, GLXVideoDeviceNV VideoDevice, GLXPbuffer pbuf, int iVideoBuffer);
925     typedef int ( * PFNGLXRELEASEVIDEOIMAGENVPROC) (Display *dpy, GLXPbuffer pbuf);
926     typedef int ( * PFNGLXSENDPBUFFERTOVIDEONVPROC) (Display *dpy, GLXPbuffer pbuf, int iBufferType, unsigned long *pulCounterPbuffer, GLboolean bBlock);
927     typedef int ( * PFNGLXGETVIDEOINFONVPROC) (Display *dpy, int screen, GLXVideoDeviceNV VideoDevice, unsigned long *pulCounterOutputPbuffer, unsigned long *pulCounterOutputVideo);
928 niro 789 #endif
929    
930     #ifndef GLX_NV_swap_group
931     #define GLX_NV_swap_group 1
932 niro 911 #ifdef GLX_GLXEXT_PROTOTYPES
933 niro 969 extern Bool glXJoinSwapGroupNV (Display *dpy, GLXDrawable drawable, GLuint group);
934     extern Bool glXBindSwapBarrierNV (Display *dpy, GLuint group, GLuint barrier);
935     extern Bool glXQuerySwapGroupNV (Display *dpy, GLXDrawable drawable, GLuint *group, GLuint *barrier);
936     extern Bool glXQueryMaxSwapGroupsNV (Display *dpy, int screen, GLuint *maxGroups, GLuint *maxBarriers);
937     extern Bool glXQueryFrameCountNV (Display *dpy, int screen, GLuint *count);
938     extern Bool glXResetFrameCountNV (Display *dpy, int screen);
939 niro 911 #endif /* GLX_GLXEXT_PROTOTYPES */
940     typedef Bool ( * PFNGLXJOINSWAPGROUPNVPROC) (Display *dpy, GLXDrawable drawable, GLuint group);
941     typedef Bool ( * PFNGLXBINDSWAPBARRIERNVPROC) (Display *dpy, GLuint group, GLuint barrier);
942     typedef Bool ( * PFNGLXQUERYSWAPGROUPNVPROC) (Display *dpy, GLXDrawable drawable, GLuint *group, GLuint *barrier);
943     typedef Bool ( * PFNGLXQUERYMAXSWAPGROUPSNVPROC) (Display *dpy, int screen, GLuint *maxGroups, GLuint *maxBarriers);
944     typedef Bool ( * PFNGLXQUERYFRAMECOUNTNVPROC) (Display *dpy, int screen, GLuint *count);
945     typedef Bool ( * PFNGLXRESETFRAMECOUNTNVPROC) (Display *dpy, int screen);
946 niro 789 #endif
947    
948 niro 911 #ifndef GLX_NV_video_capture
949     #define GLX_NV_video_capture 1
950     #ifdef GLX_GLXEXT_PROTOTYPES
951 niro 969 extern int glXBindVideoCaptureDeviceNV (Display *dpy, unsigned int video_capture_slot, GLXVideoCaptureDeviceNV device);
952     extern GLXVideoCaptureDeviceNV * glXEnumerateVideoCaptureDevicesNV (Display *dpy, int screen, int *nelements);
953     extern void glXLockVideoCaptureDeviceNV (Display *dpy, GLXVideoCaptureDeviceNV device);
954     extern int glXQueryVideoCaptureDeviceNV (Display *dpy, GLXVideoCaptureDeviceNV device, int attribute, int *value);
955     extern void glXReleaseVideoCaptureDeviceNV (Display *dpy, GLXVideoCaptureDeviceNV device);
956 niro 911 #endif /* GLX_GLXEXT_PROTOTYPES */
957     typedef int ( * PFNGLXBINDVIDEOCAPTUREDEVICENVPROC) (Display *dpy, unsigned int video_capture_slot, GLXVideoCaptureDeviceNV device);
958     typedef GLXVideoCaptureDeviceNV * ( * PFNGLXENUMERATEVIDEOCAPTUREDEVICESNVPROC) (Display *dpy, int screen, int *nelements);
959     typedef void ( * PFNGLXLOCKVIDEOCAPTUREDEVICENVPROC) (Display *dpy, GLXVideoCaptureDeviceNV device);
960     typedef int ( * PFNGLXQUERYVIDEOCAPTUREDEVICENVPROC) (Display *dpy, GLXVideoCaptureDeviceNV device, int attribute, int *value);
961     typedef void ( * PFNGLXRELEASEVIDEOCAPTUREDEVICENVPROC) (Display *dpy, GLXVideoCaptureDeviceNV device);
962     #endif
963 niro 789
964 niro 911 #ifndef GLX_EXT_swap_control
965     #define GLX_EXT_swap_control 1
966     #ifdef GLX_GLXEXT_PROTOTYPES
967 niro 969 extern int glXSwapIntervalEXT (Display *dpy, GLXDrawable drawable, int interval);
968 niro 911 #endif /* GLX_GLXEXT_PROTOTYPES */
969     typedef int ( * PFNGLXSWAPINTERVALEXTPROC) (Display *dpy, GLXDrawable drawable, int interval);
970     #endif
971    
972     #ifndef GLX_NV_copy_image
973     #define GLX_NV_copy_image 1
974     #ifdef GLX_GLXEXT_PROTOTYPES
975 niro 969 extern void glXCopyImageSubDataNV (Display *dpy, GLXContext srcCtx, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLXContext dstCtx, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
976 niro 911 #endif /* GLX_GLXEXT_PROTOTYPES */
977     typedef void ( * PFNGLXCOPYIMAGESUBDATANVPROC) (Display *dpy, GLXContext srcCtx, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLXContext dstCtx, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
978     #endif
979    
980 niro 969 #ifndef GLX_INTEL_swap_event
981     #define GLX_INTEL_swap_event 1
982     #endif
983 niro 911
984 niro 1145 #ifndef GLX_NV_multisample_coverage
985     #define GLX_NV_multisample_coverage 1
986     #endif
987 niro 969
988 niro 1145
989 niro 622 #ifdef __cplusplus
990     }
991     #endif
992    
993     #endif