1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
|
# glxext.spec file
# DON'T REMOVE PREVIOUS LINE!!! libspec depends on it!
#
# Copyright (c) 1991-2005 Silicon Graphics, Inc. All Rights Reserved.
# Copyright (c) 2006-2010 The Khronos Group, Inc.
#
# This document is licensed under the SGI Free Software B License Version
# 2.0. For details, see http://oss.sgi.com/projects/FreeB/ .
#
# $Revision: 10796 $ on $Date: 2010-03-19 17:31:10 -0700 (Fri, 19 Mar 2010) $
required-props:
param: retval retained
glxflags: client-handcode client-intercept server-handcode
glxvendorglx: *
vectorequiv: *
category: VERSION_1_3 VERSION_1_4 ARB_get_proc_address ARB_multisample ARB_fbconfig_float EXT_import_context SGIX_dmbuffer SGIX_fbconfig SGIX_pbuffer SGIX_swap_barrier SGIX_swap_group SGIX_video_resize SGIX_video_source SGI_cushion SGI_make_current_read SGI_swap_control SGI_video_sync SUN_get_transparent_index MESA_agp_offset MESA_copy_sub_buffer MESA_pixmap_colormap MESA_release_buffers MESA_set_3dfx_mode SGIX_visual_select_group OML_sync_control SGIX_hyperpipe EXT_texture_from_pixmap NV_swap_group NV_video_output NV_present_video ARB_create_context NV_video_capture NV_copy_image EXT_swap_control
glxopcode: *
#
# Boilerplate to define types used by some extensions. This is done
# up front, since it involves some complexities in protecting
# the declarations whether or not the -protect flag is given to
# the generator scripts.
#
passthru: #ifndef GLX_ARB_get_proc_address
passthru: typedef void (*__GLXextFuncPtr)(void);
passthru: #endif
passthru:
passthru: #ifndef GLX_SGIX_video_source
passthru: typedef XID GLXVideoSourceSGIX;
passthru: #endif
passthru:
passthru: #ifndef GLX_SGIX_fbconfig
passthru: typedef XID GLXFBConfigIDSGIX;
passthru: typedef struct __GLXFBConfigRec *GLXFBConfigSGIX;
passthru: #endif
passthru:
passthru: #ifndef GLX_SGIX_pbuffer
passthru: typedef XID GLXPbufferSGIX;
passthru: typedef struct {
passthru: int type;
passthru: unsigned long serial; /* # of last request processed by server */
passthru: Bool send_event; /* true if this came for SendEvent request */
passthru: Display *display; /* display the event was read from */
passthru: GLXDrawable drawable; /* i.d. of Drawable */
passthru: int event_type; /* GLX_DAMAGED_SGIX or GLX_SAVED_SGIX */
passthru: int draw_type; /* GLX_WINDOW_SGIX or GLX_PBUFFER_SGIX */
passthru: unsigned int mask; /* mask indicating which buffers are affected*/
passthru: int x, y;
passthru: int width, height;
passthru: int count; /* if nonzero, at least this many more */
passthru: } GLXBufferClobberEventSGIX;
passthru: #endif
passthru:
passthru: #ifndef GLX_NV_video_output
passthru: typedef unsigned int GLXVideoDeviceNV;
passthru: #endif
passthru:
passthru: #ifndef GLX_NV_video_capture
passthru: typedef XID GLXVideoCaptureDeviceNV;
passthru: #endif
passthru:
passthru: #ifndef GLEXT_64_TYPES_DEFINED
passthru: /* This code block is duplicated in glext.h, so must be protected */
passthru: #define GLEXT_64_TYPES_DEFINED
passthru: /* Define int32_t, int64_t, and uint64_t types for UST/MSC */
passthru: /* (as used in the GLX_OML_sync_control extension). */
passthru: #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
passthru: #include <inttypes.h>
passthru: #elif defined(__sun__) || defined(__digital__)
passthru: #include <inttypes.h>
passthru: #if defined(__STDC__)
passthru: #if defined(__arch64__) || defined(_LP64)
passthru: typedef long int int64_t;
passthru: typedef unsigned long int uint64_t;
passthru: #else
passthru: typedef long long int int64_t;
passthru: typedef unsigned long long int uint64_t;
passthru: #endif /* __arch64__ */
passthru: #endif /* __STDC__ */
passthru: #elif defined( __VMS ) || defined(__sgi)
passthru: #include <inttypes.h>
passthru: #elif defined(__SCO__) || defined(__USLC__)
passthru: #include <stdint.h>
passthru: #elif defined(__UNIXOS2__) || defined(__SOL64__)
passthru: typedef long int int32_t;
passthru: typedef long long int int64_t;
passthru: typedef unsigned long long int uint64_t;
passthru: #elif defined(_WIN32) && defined(__GNUC__)
passthru: #include <stdint.h>
passthru: #elif defined(_WIN32)
passthru: typedef __int32 int32_t;
passthru: typedef __int64 int64_t;
passthru: typedef unsigned __int64 uint64_t;
passthru: #else
passthru: #include <inttypes.h> /* Fallback option */
passthru: #endif
passthru: #endif
passthru:
###############################################################################
#
# GLX 1.3 commands
#
###############################################################################
GetFBConfigs(dpy, screen, nelements)
return GLXFBConfigPointer
param dpy Display out reference
param screen int in value
param nelements int out reference
category VERSION_1_3
glxflags client-handcode server-handcode
glxopcode 21
ChooseFBConfig(dpy, screen, attrib_list, nelements)
return GLXFBConfigPointer
param dpy Display out reference
param screen int in value
param attrib_list int in reference
param nelements int out reference
category VERSION_1_3
glxflags client-handcode client-intercept server-handcode
GetFBConfigAttrib(dpy, config, attribute, value)
return int
param dpy Display out reference
param config GLXFBConfig in value
param attribute int in value
param value int out reference
category VERSION_1_3
glxflags client-handcode client-intercept server-handcode
GetVisualFromFBConfig(dpy, config)
return XVisualInfoPointer
param dpy Display out reference
param config GLXFBConfig in value
category VERSION_1_3
glxflags client-handcode client-intercept server-handcode
CreateWindow(dpy, config, win, attrib_list)
return GLXWindow
param dpy Display out reference
param config GLXFBConfig in value
param win Window in value
param attrib_list int in reference
category VERSION_1_3
glxflags client-handcode server-handcode
glxopcode 31
DestroyWindow(dpy, win)
return void
param dpy Display out reference
param win GLXWindow in value
category VERSION_1_3
glxflags client-handcode server-handcode
glxopcode 32
CreatePixmap(dpy, config, pixmap, attrib_list)
return GLXPixmap
param dpy Display out reference
param config GLXFBConfig in value
param pixmap Pixmap in value
param attrib_list int in reference
category VERSION_1_3
glxflags client-handcode server-handcode
glxopcode 22
DestroyPixmap(dpy, pixmap)
return void
param dpy Display out reference
param pixmap GLXPixmap in value
category VERSION_1_3
glxflags client-handcode server-handcode
glxopcode 23
CreatePbuffer(dpy, config, attrib_list)
return GLXPbuffer
param dpy Display out reference
param config GLXFBConfig in value
param attrib_list int in reference
category VERSION_1_3
glxflags client-handcode server-handcode
glxopcode 27
DestroyPbuffer(dpy, pbuf)
return void
param dpy Display out reference
param pbuf GLXPbuffer in value
category VERSION_1_3
glxflags client-handcode server-handcode
glxopcode 28
# glXGetDrawableAttributes -> GLX opcode 29
# glXChangeDrawableAttributes -> GLX opcode 30
# Uses glXGetDrawableAttributes protocol
QueryDrawable(dpy, draw, attribute, value)
return void
param dpy Display out reference
param draw GLXDrawable in value
param attribute int in value
param value uint out reference
category VERSION_1_3
glxflags client-handcode client-intercept server-handcode
CreateNewContext(dpy, config, render_type, share_list, direct)
return GLXContext
param dpy Display out reference
param config GLXFBConfig in value
param render_type int in value
param share_list GLXContext in value
param direct Bool in value
category VERSION_1_3
glxflags client-handcode server-handcode
glxopcode 24
MakeContextCurrent(dpy, draw, read, ctx)
return Bool
param dpy Display out reference
param draw GLXDrawable in value
param read GLXDrawable in value
param ctx GLXContext in value
category VERSION_1_3
glxflags client-handcode server-handcode
glxopcode 26
GetCurrentReadDrawable()
return GLXDrawable
category VERSION_1_3
glxflags client-handcode client-intercept server-handcode
GetCurrentDisplay()
return DisplayPointer
category VERSION_1_3
glxflags client-handcode client-intercept server-handcode
QueryContext(dpy, ctx, attribute, value)
return int
param dpy Display out reference
param ctx GLXContext in value
param attribute int in value
param value int out reference
category VERSION_1_3
glxflags client-handcode server-handcode
glxopcode 25
# Uses glXChangeDrawableAttributes protocol
SelectEvent(dpy, draw, event_mask)
return void
param dpy Display out reference
param draw GLXDrawable in value
param event_mask ulong in value
category VERSION_1_3
glxflags client-handcode server-handcode
# Uses glXGetDrawableAttributes protocol
GetSelectedEvent(dpy, draw, event_mask)
return void
param dpy Display out reference
param draw GLXDrawable in value
param event_mask ulong out reference
category VERSION_1_3
glxflags client-handcode client-intercept server-handcode
###############################################################################
#
# GLX 1.4 commands
#
###############################################################################
GetProcAddress(procName)
return FunctionPointer
param procName GLubyte in reference
category VERSION_1_4
glxflags client-handcode client-intercept server-handcode
###############################################################################
#
# ARB Extension #2
# ARB_get_proc_address commands
# @promoted to core in GLX 1.4, but there's no provision for aliasing
# @in GLX spec files, yet
#
###############################################################################
GetProcAddressARB(procName)
return FunctionPointer
param procName GLubyte in reference
category ARB_get_proc_address
glxflags client-handcode client-intercept server-handcode
###############################################################################
#
# ARB Extension #5
# ARB_multisample commands
#
###############################################################################
# (none)
newcategory: ARB_multisample
###############################################################################
#
# ARB Extension #39
# ARB_fbconfig_float commands
#
###############################################################################
# (none)
newcategory: ARB_fbconfig_float
###############################################################################
#
# ARB Extension #56
# ARB_create_context commands
#
###############################################################################
CreateContextAttribsARB(dpy, config, share_context, direct, attrib_list)
return GLXContext
param dpy Display out reference
param config GLXFBConfig in value
param share_context GLXContext in value
param direct Bool in value
param attrib_list int in reference
category ARB_create_context
glxflags client-handcode client-intercept server-handcode
glxopcode 34
###############################################################################
#
# ARB Extension #75
# ARB_create_context_profile commands
#
###############################################################################
# (none)
newcategory: ARB_create_context_profile
###############################################################################
#
# Extension #25
# SGIS_multisample commands
#
###############################################################################
# (none)
newcategory: SGIS_multisample
###############################################################################
#
# Extension #28
# EXT_visual_info commands
#
###############################################################################
# (none)
newcategory: EXT_visual_info
###############################################################################
#
# Extension #40
# SGI_swap_control commands
#
###############################################################################
SwapIntervalSGI(interval)
return int
param interval int in value
category SGI_swap_control
glxflags client-handcode server-handcode
glxvendorglx 65536
###############################################################################
#
# Extension #41
# SGI_video_sync commands
#
###############################################################################
GetVideoSyncSGI(count)
return int
param count uint out reference
category SGI_video_sync
glxflags client-handcode client-intercept server-handcode
WaitVideoSyncSGI(divisor, remainder, count)
return int
param divisor int in value
param remainder int in value
param count uint out reference
category SGI_video_sync
glxflags client-handcode client-intercept server-handcode
###############################################################################
#
# Extension #42
# SGI_make_current_read commands
#
###############################################################################
MakeCurrentReadSGI(dpy, draw, read, ctx)
return Bool
param dpy Display out reference
param draw GLXDrawable in value
param read GLXDrawable in value
param ctx GLXContext in value
category SGI_make_current_read
glxflags client-handcode server-handcode
glxvendorglx 65537
GetCurrentReadDrawableSGI()
return GLXDrawable
category SGI_make_current_read
glxflags client-handcode client-intercept server-handcode
###############################################################################
#
# Extension #43
# SGIX_video_source commands
#
###############################################################################
newcategory: SGIX_video_source
passthru: #ifdef _VL_H
CreateGLXVideoSourceSGIX(display, screen, server, path, nodeClass, drainNode)
return GLXVideoSourceSGIX
param display Display out reference
param screen int in value
param server VLServer in value
param path VLPath in value
param nodeClass int in value
param drainNode VLNode in value
category SGIX_video_source
glxflags client-handcode server-handcode
glxvendorglx 65538
DestroyGLXVideoSourceSGIX(dpy, glxvideosource)
return void
param dpy Display out reference
param glxvideosource GLXVideoSourceSGIX in value
category SGIX_video_source
glxflags client-handcode server-handcode
glxvendorglx 65539
passend: #endif /* _VL_H */
endcategory:
###############################################################################
#
# Extension #44
# EXT_visual_rating commands
#
###############################################################################
# (none)
newcategory: EXT_visual_rating
###############################################################################
#
# Extension #47
# EXT_import_context commands
#
###############################################################################
GetCurrentDisplayEXT()
return DisplayPointer
category EXT_import_context
glxflags client-handcode client-intercept server-handcode
QueryContextInfoEXT(dpy, context, attribute, value)
return int
param dpy Display out reference
param context GLXContext in value
param attribute int in value
param value int out reference
category EXT_import_context
glxflags client-handcode server-handcode
glxvendorglx 1024
# 'constGLXContext' is a hack; the extension specification and glx.h
# should be fixed instead.
GetContextIDEXT(context)
return GLXContextID
param context constGLXContext in value
category EXT_import_context
glxflags client-handcode client-intercept server-handcode
ImportContextEXT(dpy, contextID)
return GLXContext
param dpy Display out reference
param contextID GLXContextID in value
category EXT_import_context
glxflags client-handcode client-intercept server-handcode
FreeContextEXT(dpy, context)
return void
param dpy Display out reference
param context GLXContext in value
category EXT_import_context
glxflags client-handcode client-intercept server-handcode
###############################################################################
#
# Extension #49
# SGIX_fbconfig commands
#
###############################################################################
# GetFBConfigsSGIX protocol -> VendorPrivate opcode 65540
GetFBConfigAttribSGIX(dpy, config, attribute, value)
return int
param dpy Display out reference
param config GLXFBConfigSGIX in value
param attribute int in value
param value int out reference
category SGIX_fbconfig
glxflags client-handcode client-intercept server-handcode
ChooseFBConfigSGIX(dpy, screen, attrib_list, nelements)
return GLXFBConfigSGIXPointer
param dpy Display out reference
param screen int in value
param attrib_list int out reference
param nelements int out reference
category SGIX_fbconfig
glxflags client-handcode client-intercept server-handcode
CreateGLXPixmapWithConfigSGIX(dpy, config, pixmap)
return GLXPixmap
param dpy Display out reference
param config GLXFBConfigSGIX in value
param pixmap Pixmap in value
category SGIX_fbconfig
glxflags client-handcode server-handcode
glxvendorglx 65542
CreateContextWithConfigSGIX(dpy, config, render_type, share_list, direct)
return GLXContext
param dpy Display out reference
param config GLXFBConfigSGIX in value
param render_type int in value
param share_list GLXContext in value
param direct Bool in value
category SGIX_fbconfig
glxflags client-handcode server-handcode
glxvendorglx 65541
GetVisualFromFBConfigSGIX(dpy, config)
return XVisualInfoPointer
param dpy Display out reference
param config GLXFBConfigSGIX in value
category SGIX_fbconfig
glxflags client-handcode client-intercept server-handcode
GetFBConfigFromVisualSGIX(dpy, vis)
return GLXFBConfigSGIX
param dpy Display out reference
param vis XVisualInfo out reference
category SGIX_fbconfig
glxflags client-handcode client-intercept server-handcode
###############################################################################
#
# Extension #50
# SGIX_pbuffer commands
#
###############################################################################
# ChangeDrawableAttributesSGIX protocol -> VendorPrivate opcode 65545
# GetDrawableAttributesSGIX protocol -> VendorPrivate opcode 65546
CreateGLXPbufferSGIX(dpy, config, width, height, attrib_list)
return GLXPbufferSGIX
param dpy Display out reference
param config GLXFBConfigSGIX in value
param width uint in value
param height uint in value
param attrib_list int out reference
category SGIX_pbuffer
glxflags client-handcode server-handcode
glxvendorglx 65543
DestroyGLXPbufferSGIX(dpy, pbuf)
return void
param dpy Display out reference
param pbuf GLXPbufferSGIX in value
category SGIX_pbuffer
glxflags client-handcode
glxvendorglx 65544
QueryGLXPbufferSGIX(dpy, pbuf, attribute, value)
return int
param dpy Display out reference
param pbuf GLXPbufferSGIX in value
param attribute int in value
param value uint out reference
category SGIX_pbuffer
SelectEventSGIX(dpy, drawable, mask)
return void
param dpy Display out reference
param drawable GLXDrawable in value
param mask ulong in value
category SGIX_pbuffer
GetSelectedEventSGIX(dpy, drawable, mask)
return void
param dpy Display out reference
param drawable GLXDrawable in value
param mask ulong out reference
category SGIX_pbuffer
###############################################################################
#
# Extension #62
# SGI_cushion commands
#
###############################################################################
CushionSGI(dpy, window, cushion)
return void
param dpy Display out reference
param window Window in value
param cushion float in value
category SGI_cushion
###############################################################################
#
# Extension #83
# SGIX_video_resize commands
#
###############################################################################
BindChannelToWindowSGIX(display, screen, channel, window)
return int
param display Display out reference
param screen int in value
param channel int in value
param window Window in value
category SGIX_video_resize
ChannelRectSGIX(display, screen, channel, x, y, w, h)
return int
param display Display out reference
param screen int in value
param channel int in value
param x int in value
param y int in value
param w int in value
param h int in value
category SGIX_video_resize
QueryChannelRectSGIX(display, screen, channel, dx, dy, dw, dh)
return int
param display Display out reference
param screen int in value
param channel int in value
param dx int out reference
param dy int out reference
param dw int out reference
param dh int out reference
category SGIX_video_resize
QueryChannelDeltasSGIX(display, screen, channel, x, y, w, h)
return int
param display Display out reference
param screen int in value
param channel int in value
param x int out reference
param y int out reference
param w int out reference
param h int out reference
category SGIX_video_resize
# @@@ Not in man page - this entry point may not be shipping?
ChannelRectSyncSGIX(display, screen, channel, synctype)
return int
param display Display out reference
param screen int in value
param channel int in value
param synctype GLenum in value
category SGIX_video_resize
###############################################################################
#
# Extension #86
# SGIX_dmbuffer commands
#
###############################################################################
newcategory: SGIX_dmbuffer
passthru: #ifdef _DM_BUFFER_H_
AssociateDMPbufferSGIX(dpy, pbuffer, params, dmbuffer)
return Bool
param dpy Display out reference
param pbuffer GLXPbufferSGIX in value
param params DMparams out reference
param dmbuffer DMbuffer in value
category SGIX_dmbuffer
passend: #endif /* _DM_BUFFER_H_ */
endcategory:
###############################################################################
#
# Extension #91
# SGIX_swap_group commands
#
###############################################################################
JoinSwapGroupSGIX(dpy, drawable, member)
return void
param dpy Display out reference
param drawable GLXDrawable in value
param member GLXDrawable in value
category SGIX_swap_group
glxflags client-handcode server-handcode
glxvendorglx 65547
###############################################################################
#
# Extension #92
# SGIX_swap_barrier commands
#
###############################################################################
BindSwapBarrierSGIX(dpy, drawable, barrier)
return void
param dpy Display out reference
param drawable GLXDrawable in value
param barrier int in value
category SGIX_swap_barrier
glxflags client-handcode server-handcode
glxvendorglx 65548
QueryMaxSwapBarriersSGIX(dpy, screen, max)
return Bool
param dpy Display out reference
param screen int in value
param max int out reference
category SGIX_swap_barrier
glxflags client-handcode server-handcode
glxvendorglx 65549
###############################################################################
#
# Extension #183
# SUN_get_transparent_index commands
#
###############################################################################
GetTransparentIndexSUN(dpy, overlay, underlay, pTransparentIndex)
return Status
param dpy Display out reference
param overlay Window in value
param underlay Window in value
param pTransparentIndex long out reference
category SUN_get_transparent_index
###############################################################################
#
# Extension #215
# MESA_copy_sub_buffer commands
#
###############################################################################
CopySubBufferMESA(dpy, drawable, x, y, width, height)
return void
param dpy Display out reference
param drawable GLXDrawable in value
param x int in value
param y int in value
param width int in value
param height int in value
category MESA_copy_sub_buffer
glxflags client-handcode client-intercept server-handcode
###############################################################################
#
# Extension #216
# MESA_pixmap_colormap commands
#
###############################################################################
CreateGLXPixmapMESA(dpy, visual, pixmap, cmap)
return GLXPixmap
param dpy Display out reference
param visual XVisualInfo out reference
param pixmap Pixmap in value
param cmap Colormap in value
category MESA_pixmap_colormap
glxflags client-handcode client-intercept server-handcode
###############################################################################
#
# Extension #217
# MESA_release_buffers commands
#
###############################################################################
ReleaseBuffersMESA(dpy, drawable)
return Bool
param dpy Display out reference
param drawable GLXDrawable in value
category MESA_release_buffers
glxflags client-handcode client-intercept server-handcode
###############################################################################
#
# Extension #218
# MESA_set_3dfx_mode commands
#
###############################################################################
# Brian's spec has this as returning 'GLboolean' and taking 'GLint mode'
Set3DfxModeMESA(mode)
return Bool
param mode int in value
category MESA_set_3dfx_mode
glxflags client-handcode client-intercept server-handcode
###############################################################################
#
# Extension #234
# SGIX_visual_select_group commands
#
###############################################################################
# (none)
newcategory: SGIX_visual_select_group
###############################################################################
#
# Extension #237
# OML_swap_method commands
#
###############################################################################
# (none)
newcategory: OML_swap_method
###############################################################################
#
# Extension #238
# OML_sync_control commands
#
###############################################################################
GetSyncValuesOML(dpy, drawable, ust, msc, sbc)
return Bool
param dpy Display out reference
param drawable GLXDrawable in value
param ust int64_t out reference
param msc int64_t out reference
param sbc int64_t out reference
category OML_sync_control
glxflags client-handcode server-handcode
GetMscRateOML(dpy, drawable, numerator, denominator)
return Bool
param dpy Display out reference
param drawable GLXDrawable in value
param numerator int32_t out reference
param denominator int32_t out reference
category OML_sync_control
glxflags client-handcode server-handcode
SwapBuffersMscOML(dpy, drawable, target_msc, divisor, remainder)
return int64_t
param dpy Display out reference
param drawable GLXDrawable in value
param target_msc int64_t in value
param divisor int64_t in value
param remainder int64_t in value
category OML_sync_control
glxflags client-handcode server-handcode
WaitForMscOML(dpy, drawable, target_msc, divisor, remainder, ust, msc, sbc)
return Bool
param dpy Display out reference
param drawable GLXDrawable in value
param target_msc int64_t in value
param divisor int64_t in value
param remainder int64_t in value
param ust int64_t out reference
param msc int64_t out reference
param sbc int64_t out reference
category OML_sync_control
glxflags client-handcode server-handcode
WaitForSbcOML(dpy, drawable, target_sbc, ust, msc, sbc)
return Bool
param dpy Display out reference
param drawable GLXDrawable in value
param target_sbc int64_t in value
param ust int64_t out reference
param msc int64_t out reference
param sbc int64_t out reference
category OML_sync_control
glxflags client-handcode server-handcode
###############################################################################
#
# Extension #281
# NV_float_buffer commands
#
###############################################################################
# (none)
newcategory: NV_float_buffer
###############################################################################
#
# Extension #307
# SGIX_hyperpipe commands
#
###############################################################################
newcategory: SGIX_hyperpipe
passthru:
passthru: typedef struct {
passthru: char pipeName[GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX];
passthru: int networkId;
passthru: } GLXHyperpipeNetworkSGIX;
passthru:
passthru: typedef struct {
passthru: char pipeName[GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX];
passthru: int channel;
passthru: unsigned int
passthru: participationType;
passthru: int timeSlice;
passthru: } GLXHyperpipeConfigSGIX;
passthru:
passthru: typedef struct {
passthru: char pipeName[GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX];
passthru: int srcXOrigin, srcYOrigin, srcWidth, srcHeight;
passthru: int destXOrigin, destYOrigin, destWidth, destHeight;
passthru: } GLXPipeRect;
passthru:
passthru: typedef struct {
passthru: char pipeName[GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX];
passthru: int XOrigin, YOrigin, maxHeight, maxWidth;
passthru: } GLXPipeRectLimits;
passthru:
QueryHyperpipeNetworkSGIX(dpy, npipes)
return GLXHyperpipeNetworkSGIXPointer
param dpy Display out reference
param npipes int out reference
glxflags client-handcode server-handcode
category SGIX_hyperpipe
glxvendorglx 65550
HyperpipeConfigSGIX(dpy, networkId, npipes, cfg, hpId)
return int
param dpy Display out reference
param networkId int in value
param npipes int in value
param cfg GLXHyperpipeConfigSGIX out array [COMPSIZE(npipes)]
param hpId int out reference
glxflags client-handcode server-handcode
category SGIX_hyperpipe
glxvendorglx 65552
QueryHyperpipeConfigSGIX(dpy, hpId, npipes)
return GLXHyperpipeConfigSGIXPointer
param dpy Display out reference
param hpId int in value
param npipes int out reference
glxflags client-handcode server-handcode
category SGIX_hyperpipe
glxvendorglx 65551
DestroyHyperpipeConfigSGIX(dpy, hpId)
return int
param dpy Display out reference
param hpId int in value
glxflags client-handcode server-handcode
category SGIX_hyperpipe
glxvendorglx 65553
BindHyperpipeSGIX(dpy, hpId)
return int
param dpy Display out reference
param hpId int in value
glxflags client-handcode server-handcode
category SGIX_hyperpipe
glxvendorglx ???
QueryHyperpipeBestAttribSGIX(dpy, timeSlice, attrib, size, attribList, returnAttribList)
return int
param dpy Display out reference
param timeSlice int in value
param attrib int in value
param size int in value
param attribList void out array [COMPSIZE(size)]
param returnAttribList void out array [COMPSIZE(size)]
glxflags client-handcode server-handcode
category SGIX_hyperpipe
glxvendorglx ???
HyperpipeAttribSGIX(dpy, timeSlice, attrib, size, attribList)
return int
param dpy Display out reference
param timeSlice int in value
param attrib int in value
param size int in value
param attribList void out array [COMPSIZE(size)]
glxflags client-handcode server-handcode
category SGIX_hyperpipe
glxvendorglx ???
QueryHyperpipeAttribSGIX(dpy, timeSlice, attrib, size, returnAttribList)
return int
param dpy Display out reference
param timeSlice int in value
param attrib int in value
param size int in value
param returnAttribList void out array [COMPSIZE(size)]
glxflags client-handcode server-handcode
category SGIX_hyperpipe
glxvendorglx ???
###############################################################################
#
# Extension #308
# MESA_agp_offset commands
#
###############################################################################
GetAGPOffsetMESA(pointer)
return uint
param pointer void in reference
glxflags client-handcode client-intercept server-handcode
category MESA_agp_offset
###############################################################################
#
# Extension #328
# EXT_fbconfig_packed_float commands
#
###############################################################################
# (none)
newcategory: EXT_fbconfig_packed_float
###############################################################################
#
# Extension #337
# EXT_framebuffer_sRGB commands
#
###############################################################################
# (none)
newcategory: EXT_framebuffer_sRGB
###############################################################################
#
# Extension #344
# EXT_texture_from_pixmap commands
#
###############################################################################
BindTexImageEXT(dpy, drawable, buffer, attrib_list)
return void
param dpy Display out reference
param drawable GLXDrawable in value
param buffer int in value
param attrib_list int in reference
category EXT_texture_from_pixmap
glxflags client-handcode server-handcode
glxvendorglx 1330
ReleaseTexImageEXT(dpy, drawable, buffer)
return void
param dpy Display out reference
param drawable GLXDrawable in value
param buffer int in value
category EXT_texture_from_pixmap
glxflags client-handcode server-handcode
glxvendorglx 1331
###############################################################################
#
# Extension #347
# NV_present_video commands
#
###############################################################################
EnumerateVideoDevicesNV(dpy, screen, nelements)
return uintPointer
param dpy Display out reference
param screen int in value
param nelements int out reference
category NV_present_video
glxflags client-handcode server-handcode
BindVideoDeviceNV(dpy, video_slot, video_device, attrib_list)
return int
param dpy Display out reference
param video_slot uint in value
param video_device uint in value
param attrib_list int in reference
category NV_present_video
glxflags client-handcode server-handcode
###############################################################################
#
# Extension #348
# NV_video_output commands
#
###############################################################################
GetVideoDeviceNV(dpy, screen, numVideoDevices, pVideoDevice)
return int
param dpy Display out reference
param screen int in value
param numVideoDevices int in value
param pVideoDevice GLXVideoDeviceNV out array [COMPSIZE(numVideoDevices)]
category NV_video_output
glxflags client-handcode server-handcode
ReleaseVideoDeviceNV(dpy, screen, VideoDevice)
return int
param dpy Display out reference
param screen int in value
param VideoDevice GLXVideoDeviceNV in value
category NV_video_output
glxflags client-handcode server-handcode
BindVideoImageNV(dpy, VideoDevice, pbuf, iVideoBuffer)
return int
param dpy Display out reference
param VideoDevice GLXVideoDeviceNV in value
param pbuf GLXPbuffer in value
param iVideoBuffer int in value
category NV_video_output
glxflags client-handcode server-handcode
ReleaseVideoImageNV(dpy, pbuf)
return int
param dpy Display out reference
param pbuf GLXPbuffer in value
category NV_video_output
glxflags client-handcode server-handcode
SendPbufferToVideoNV(dpy, pbuf, iBufferType, pulCounterPbuffer, bBlock)
return int
param dpy Display out reference
param pbuf GLXPbuffer in value
param iBufferType int in value
param pulCounterPbuffer ulong out reference
param bBlock GLboolean in value
category NV_video_output
glxflags client-handcode server-handcode
GetVideoInfoNV(dpy, screen, VideoDevice, pulCounterOutputPbuffer, pulCounterOutputVideo)
return int
param dpy Display out reference
param screen int in value
param VideoDevice GLXVideoDeviceNV in value
param pulCounterOutputPbuffer ulong out reference
param pulCounterOutputVideo ulong out reference
category NV_video_output
glxflags client-handcode server-handcode
###############################################################################
#
# Extension #350
# NV_swap_group commands
#
###############################################################################
JoinSwapGroupNV(dpy, drawable, group)
return Bool
param dpy Display out reference
param drawable GLXDrawable in value
param group GLuint in value
category NV_swap_group
glxflags client-handcode server-handcode
BindSwapBarrierNV(dpy, group, barrier)
return Bool
param dpy Display out reference
param group GLuint in value
param barrier GLuint in value
category NV_swap_group
glxflags client-handcode server-handcode
QuerySwapGroupNV(dpy, drawable, group, barrier)
return Bool
param dpy Display out reference
param drawable GLXDrawable in value
param group GLuint out reference
param barrier GLuint out reference
category NV_swap_group
glxflags client-handcode server-handcode
QueryMaxSwapGroupsNV(dpy, screen, maxGroups, maxBarriers)
return Bool
param dpy Display out reference
param screen int in value
param maxGroups GLuint out reference
param maxBarriers GLuint out reference
category NV_swap_group
glxflags client-handcode server-handcode
QueryFrameCountNV(dpy, screen, count)
return Bool
param dpy Display out reference
param screen int in value
param count GLuint out reference
category NV_swap_group
glxflags client-handcode server-handcode
ResetFrameCountNV(dpy, screen)
return Bool
param dpy Display out reference
param screen int in value
category NV_swap_group
glxflags client-handcode server-handcode
###############################################################################
#
# Extension #374
# NV_video_capture commands
#
###############################################################################
BindVideoCaptureDeviceNV(dpy, video_capture_slot, device)
return int
param dpy Display out reference
param video_capture_slot uint in value
param device GLXVideoCaptureDeviceNV in value
category NV_video_capture
glxflags client-handcode server-handcode
EnumerateVideoCaptureDevicesNV(dpy, screen, nelements)
return GLXVideoCaptureDeviceNVPointer
param dpy Display out reference
param screen int in value
param nelements int out reference
category NV_video_capture
glxflags client-handcode server-handcode
LockVideoCaptureDeviceNV(dpy, device)
return void
param dpy Display out reference
param device GLXVideoCaptureDeviceNV in value
category NV_video_capture
glxflags client-handcode server-handcode
QueryVideoCaptureDeviceNV(dpy, device, attribute, value)
return int
param dpy Display out reference
param device GLXVideoCaptureDeviceNV in value
param attribute int in value
param value int out array [COMPSIZE(attribute)]
category NV_video_capture
glxflags client-handcode server-handcode
ReleaseVideoCaptureDeviceNV(dpy, device)
return void
param dpy Display out reference
param device GLXVideoCaptureDeviceNV in value
category NV_video_capture
glxflags client-handcode server-handcode
###############################################################################
#
# Extension #375
# EXT_swap_control commands
#
###############################################################################
SwapIntervalEXT(dpy, drawable, interval)
return int
param dpy Display out reference
param drawable GLXDrawable in value
param interval int in value
category EXT_swap_control
glxflags client-handcode server-handcode
###############################################################################
#
# Extension #376
# NV_copy_image commands
#
###############################################################################
CopyImageSubDataNV(dpy, srcCtx, srcName, srcTarget, srcLevel, srcX, srcY, srcZ, dstCtx, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, width, height, depth)
return void
param dpy Display out reference
param srcCtx GLXContext in value
param srcName GLuint in value
param srcTarget GLenum in value
param srcLevel GLint in value
param srcX GLint in value
param srcY GLint in value
param srcZ GLint in value
param dstCtx GLXContext in value
param dstName GLuint in value
param dstTarget GLenum in value
param dstLevel GLint in value
param dstX GLint in value
param dstY GLint in value
param dstZ GLint in value
param width GLsizei in value
param height GLsizei in value
param depth GLsizei in value
category NV_copy_image
glxflags client-handcode server-handcode
###############################################################################
#
# Extension #384
# INTEL_swap_event commands
#
###############################################################################
# (none)
newcategory: INTEL_swap_event
|