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
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
open Js
open! Import
(** 5.1 Types *)
type sizei = int
type sizeiptr = int
type intptr = int
type uint = int
type clampf = number_t
type void
type clearBufferMask = int
type beginMode
type blendingFactor
type blendMode
type bufferTarget
type bufferUsage
type cullFaceMode
type depthFunction
type enableCap
type errorCode
type frontFaceDir
type hintTarget
type hintMode
type textureUnit = int
type 'a pixelStoreParam
type stencilOp
type fbTarget
type attachmentPoint
type rbTarget
type texTarget
type 'a parameter
type 'a bufferParameter
type 'a vertexAttribParam
type vertexAttribPointerParam
type 'a attachParam
type framebufferStatus
type 'a renderbufferParam
type format
type pixelFormat
type pixelType
type 'a texParam
type dataType
type shaderType
type 'a programParam
type 'a shaderParam
type textureFilter
type wrapMode
type texFilter
type uniformType
type colorspaceConversion
type shaderPrecisionType
type objectType
(** 5.2 WebGLContextAttributes *)
class type contextAttributes = object
method alpha : bool t prop
method depth : bool t prop
method stencil : bool t prop
method antialias : bool t prop
method premultipliedAlpha : bool t prop
method preserveDrawingBuffer : bool t prop
method preferLowPowerToHighPerformance : bool t prop
method failIfMajorPerformanceCaveat : bool t prop
end
let defaultContextAttributes =
Js.Unsafe.(
obj
[| "alpha", inject _true
; "depth", inject _true
; "stencil", inject _false
; "antialias", inject _true
; "premultipliedAlpha", inject _false
; "preserveDrawingBuffer", inject _false
; "preferLowPowerToHighPerformance", inject _false
; "failIfMajorPerformanceCaveat", inject _false
|])
type buffer
type framebuffer
type program
type renderbuffer
type shader
type texture
type 'a uniformLocation
class type activeInfo = object
method size : int readonly_prop
method _type : uniformType readonly_prop
method name : js_string t readonly_prop
end
class type shaderPrecisionFormat = object
method rangeMin : int readonly_prop
method rangeMax : int readonly_prop
method precision : int readonly_prop
end
class type renderingContext = object
(** 5.13.1 Attributes *)
method canvas : Dom_html.canvasElement t readonly_prop
method drawingBufferWidth : sizei readonly_prop
method drawingBufferHeight : sizei readonly_prop
(** 5.13.2 Getting information about the context *)
method getContextAttributes : contextAttributes t meth
(** 5.13.3 Setting and getting state *)
method activeTexture : textureUnit -> unit meth
method blendColor : clampf -> clampf -> clampf -> clampf -> unit meth
method blendEquation : blendMode -> unit meth
method blendEquationSeparate : blendMode -> blendMode -> unit meth
method blendFunc : blendingFactor -> blendingFactor -> unit meth
method blendFuncSeparate :
blendingFactor -> blendingFactor -> blendingFactor -> blendingFactor -> unit meth
method clearColor : clampf -> clampf -> clampf -> clampf -> unit meth
method clearDepth : clampf -> unit meth
method clearStencil : int -> unit meth
method colorMask : bool t -> bool t -> bool t -> bool t -> unit meth
method cullFace : cullFaceMode -> unit meth
method depthFunc : depthFunction -> unit meth
method depthMask : bool t -> unit meth
method depthRange : clampf -> clampf -> unit meth
method disable : enableCap -> unit meth
method enable : enableCap -> unit meth
method frontFace : frontFaceDir -> unit meth
method getParameter : 'a. 'a parameter -> 'a meth
method getError : errorCode meth
method hint : hintTarget -> hintMode -> unit meth
method isEnabled : enableCap -> bool t meth
method lineWidth : number_t -> unit meth
method pixelStorei : 'a. 'a pixelStoreParam -> 'a -> unit meth
method polygonOffset : number_t -> number_t -> unit meth
method sampleCoverage : clampf -> bool t -> unit meth
method stencilFunc : depthFunction -> int -> uint -> unit meth
method stencilFuncSeparate : cullFaceMode -> depthFunction -> int -> uint -> unit meth
method stencilMask : uint -> unit meth
method stencilMaskSeparate : cullFaceMode -> uint -> unit meth
method stencilOp : stencilOp -> stencilOp -> stencilOp -> unit meth
method stencilOpSeparate :
cullFaceMode -> stencilOp -> stencilOp -> stencilOp -> unit meth
(** 5.13.4 Viewing and clipping *)
method scissor : int -> int -> sizei -> sizei -> unit meth
method viewport : int -> int -> sizei -> sizei -> unit meth
(** 5.13.5 Buffer objects *)
method bindBuffer : bufferTarget -> buffer t -> unit meth
method bindBuffer_ : bufferTarget -> buffer t opt -> unit meth
method bufferData_create : bufferTarget -> sizeiptr -> bufferUsage -> unit meth
method bufferData :
bufferTarget -> #Typed_array.arrayBufferView t -> bufferUsage -> unit meth
method bufferData_raw :
bufferTarget -> Typed_array.arrayBuffer t -> bufferUsage -> unit meth
method bufferSubData :
bufferTarget -> intptr -> #Typed_array.arrayBufferView t -> unit meth
method bufferSubData_raw :
bufferTarget -> intptr -> Typed_array.arrayBuffer t -> unit meth
method createBuffer : buffer t meth
method deleteBuffer : buffer t -> unit meth
method getBufferParameter : 'a. bufferTarget -> 'a bufferParameter -> 'a meth
method isBuffer : buffer t -> bool t meth
(** 5.13.6 Framebuffer objects *)
method bindFramebuffer : fbTarget -> framebuffer t -> unit meth
method bindFramebuffer_ : fbTarget -> framebuffer t opt -> unit meth
method checkFramebufferStatus : fbTarget -> framebufferStatus meth
method createFramebuffer : framebuffer t meth
method deleteFramebuffer : framebuffer t -> unit meth
method framebufferRenderbuffer :
fbTarget -> attachmentPoint -> rbTarget -> renderbuffer t -> unit meth
method framebufferTexture2D :
fbTarget -> attachmentPoint -> texTarget -> texture t -> int -> unit meth
method getFramebufferAttachmentParameter :
'a. fbTarget -> attachmentPoint -> 'a attachParam -> 'a meth
method isFramebuffer : framebuffer t -> bool t meth
(** 5.13.7 Renderbuffer objects *)
method bindRenderbuffer : rbTarget -> renderbuffer t -> unit meth
method bindRenderbuffer_ : rbTarget -> renderbuffer t opt -> unit meth
method createRenderbuffer : renderbuffer t meth
method deleteRenderbuffer : renderbuffer t -> unit meth
method getRenderbufferParameter : 'a. rbTarget -> 'a renderbufferParam -> 'a meth
method isRenderbuffer : renderbuffer t -> bool t meth
method renderbufferStorage : rbTarget -> format -> sizei -> sizei -> unit meth
(** 5.13.8 Texture objects *)
method bindTexture : texTarget -> texture t -> unit meth
method bindTexture_ : texTarget -> texture t opt -> unit meth
method compressedTexImage2D :
texTarget
-> int
-> pixelFormat
-> sizei
-> sizei
-> int
-> #Typed_array.arrayBufferView t
-> unit meth
method compressedTexSubImage2D :
texTarget
-> int
-> int
-> int
-> sizei
-> sizei
-> pixelFormat
-> #Typed_array.arrayBufferView t
-> unit meth
method copyTexImage2D :
texTarget -> int -> pixelFormat -> int -> int -> sizei -> sizei -> int -> unit meth
method copyTexSubImage2D :
texTarget -> int -> int -> int -> int -> int -> sizei -> sizei -> unit meth
method createTexture : texture t meth
method deleteTexture : texture t -> unit meth
method generateMipmap : texTarget -> unit meth
method getTexParameter : texTarget -> 'a texParam -> 'a meth
method isTexture : texture t -> bool t meth
method texImage2D_new :
texTarget
-> int
-> pixelFormat
-> sizei
-> sizei
-> int
-> pixelFormat
-> pixelType
-> void opt
-> unit meth
method texImage2D_fromView :
texTarget
-> int
-> pixelFormat
-> sizei
-> sizei
-> int
-> pixelFormat
-> pixelType
-> #Typed_array.arrayBufferView t
-> unit meth
method texImage2D_fromImageData :
texTarget
-> int
-> pixelFormat
-> pixelFormat
-> pixelType
-> Dom_html.imageData t
-> unit meth
method texImage2D_fromImage :
texTarget
-> int
-> pixelFormat
-> pixelFormat
-> pixelType
-> Dom_html.imageElement t
-> unit meth
method texImage2D_fromCanvas :
texTarget
-> int
-> pixelFormat
-> pixelFormat
-> pixelType
-> Dom_html.canvasElement t
-> unit meth
method texImage2D_fromVideo :
texTarget
-> int
-> pixelFormat
-> pixelFormat
-> pixelType
-> Dom_html.videoElement t
-> unit meth
method texParameteri : texTarget -> 'a texParam -> 'a -> unit meth
method texSubImage2D_fromView :
texTarget
-> int
-> int
-> int
-> sizei
-> sizei
-> pixelFormat
-> pixelType
-> #Typed_array.arrayBufferView t
-> unit meth
method texSubImage2D_fromImageData :
texTarget
-> int
-> int
-> int
-> pixelFormat
-> pixelType
-> Dom_html.imageData t
-> unit meth
method texSubImage2D_fromImage :
texTarget
-> int
-> int
-> int
-> pixelFormat
-> pixelType
-> Dom_html.imageElement t
-> unit meth
method texSubImage2D_fromCanvas :
texTarget
-> int
-> int
-> int
-> pixelFormat
-> pixelType
-> Dom_html.canvasElement t
-> unit meth
method texSubImage2D_fromVideo :
texTarget
-> int
-> int
-> int
-> pixelFormat
-> pixelType
-> Dom_html.videoElement t
-> unit meth
(** 5.13.9 Programs and Shaders *)
method attachShader : program t -> shader t -> unit meth
method bindAttribLocation : program t -> uint -> js_string t -> unit meth
method compileShader : shader t -> unit meth
method createProgram : program t meth
method createShader : shaderType -> shader t meth
method deleteProgram : program t -> unit meth
method deleteShader : shader t -> unit meth
method detachShader : program t -> shader t -> unit meth
method getAttachedShaders : program t -> shader t js_array t meth
method getProgramParameter : 'a. program t -> 'a programParam -> 'a meth
method getProgramInfoLog : program t -> js_string t meth
method getShaderParameter : 'a. shader t -> 'a shaderParam -> 'a meth
method getShaderPrecisionFormat :
shaderType -> shaderPrecisionType -> shaderPrecisionFormat t meth
method getShaderInfoLog : shader t -> js_string t meth
method getShaderSource : shader t -> js_string t meth
method isProgram : program t -> bool t meth
method isShader : shader t -> bool t meth
method linkProgram : program t -> unit meth
method shaderSource : shader t -> js_string t -> unit meth
method useProgram : program t -> unit meth
method validateProgram : program t -> unit meth
(** 5.13.10 Uniforms and attributes *)
method disableVertexAttribArray : uint -> unit meth
method enableVertexAttribArray : uint -> unit meth
method getActiveAttrib : program t -> uint -> activeInfo t meth
method getActiveUniform : program t -> uint -> activeInfo t meth
method getAttribLocation : program t -> js_string t -> int meth
method getUniform : 'a 'b. program t -> 'a uniformLocation t -> 'b meth
method getUniformLocation : 'a. program t -> js_string t -> 'a uniformLocation t meth
method getVertexAttrib : 'a. uint -> 'a vertexAttribParam -> 'a meth
method getVertexAttribOffset : uint -> vertexAttribPointerParam -> sizeiptr meth
method uniform1f : number_t uniformLocation t -> number_t -> unit meth
method uniform1fv_typed :
number_t uniformLocation t -> Typed_array.float32Array t -> unit meth
method uniform1fv : number_t uniformLocation t -> number_t js_array t -> unit meth
method uniform1i : int uniformLocation t -> int -> unit meth
method uniform1iv_typed : int uniformLocation t -> Typed_array.int32Array t -> unit meth
method uniform1iv : int uniformLocation t -> int js_array t -> unit meth
method uniform2f : [ `vec2 ] uniformLocation t -> number_t -> number_t -> unit meth
method uniform2fv_typed :
[ `vec2 ] uniformLocation t -> Typed_array.float32Array t -> unit meth
method uniform2fv : [ `vec2 ] uniformLocation t -> number_t js_array t -> unit meth
method uniform2i : [ `ivec2 ] uniformLocation t -> int -> int -> unit meth
method uniform2iv : [ `ivec2 ] uniformLocation t -> int js_array t -> unit meth
method uniform2iv_typed :
[ `ivec2 ] uniformLocation t -> Typed_array.int32Array t -> unit meth
method uniform3f :
[ `vec3 ] uniformLocation t -> number_t -> number_t -> number_t -> unit meth
method uniform3fv_typed :
[ `vec3 ] uniformLocation t -> Typed_array.float32Array t -> unit meth
method uniform3fv : [ `vec3 ] uniformLocation t -> number_t js_array t -> unit meth
method uniform3i : [ `ivec3 ] uniformLocation t -> int -> int -> int -> unit meth
method uniform3iv : [ `ivec3 ] uniformLocation t -> int js_array t -> unit meth
method uniform3iv_typed :
[ `ivec3 ] uniformLocation t -> Typed_array.int32Array t -> unit meth
method uniform4f :
[ `vec4 ] uniformLocation t
-> number_t
-> number_t
-> number_t
-> number_t
-> unit meth
method uniform4fv_typed :
[ `vec4 ] uniformLocation t -> Typed_array.float32Array t -> unit meth
method uniform4fv : [ `vec4 ] uniformLocation t -> number_t js_array t -> unit meth
method uniform4i : [ `ivec4 ] uniformLocation t -> int -> int -> int -> int -> unit meth
method uniform4iv : [ `ivec4 ] uniformLocation t -> int js_array t -> unit meth
method uniform4iv_typed :
[ `ivec4 ] uniformLocation t -> Typed_array.int32Array t -> unit meth
method uniformMatrix2fv :
[ `mat2 ] uniformLocation t -> bool t -> number_t js_array t -> unit meth
method uniformMatrix2fv_typed :
[ `mat2 ] uniformLocation t -> bool t -> Typed_array.float32Array t -> unit meth
method uniformMatrix3fv :
[ `mat3 ] uniformLocation t -> bool t -> number_t js_array t -> unit meth
method uniformMatrix3fv_typed :
[ `mat3 ] uniformLocation t -> bool t -> Typed_array.float32Array t -> unit meth
method uniformMatrix4fv :
[ `mat4 ] uniformLocation t -> bool t -> number_t js_array t -> unit meth
method uniformMatrix4fv_typed :
[ `mat4 ] uniformLocation t -> bool t -> Typed_array.float32Array t -> unit meth
method vertexAttrib1f : uint -> number_t -> unit meth
method vertexAttrib1fv : uint -> number_t js_array t -> unit meth
method vertexAttrib1fv_typed : uint -> Typed_array.float32Array t -> unit meth
method vertexAttrib2f : uint -> number_t -> number_t -> unit meth
method vertexAttrib2fv : uint -> number_t js_array t -> unit meth
method vertexAttrib2fv_typed : uint -> Typed_array.float32Array t -> unit meth
method vertexAttrib3f : uint -> number_t -> number_t -> number_t -> unit meth
method vertexAttrib3fv : uint -> number_t js_array t -> unit meth
method vertexAttrib3fv_typed : uint -> Typed_array.float32Array t -> unit meth
method vertexAttrib4f :
uint -> number_t -> number_t -> number_t -> number_t -> unit meth
method vertexAttrib4fv : uint -> number_t js_array t -> unit meth
method vertexAttrib4fv_typed : uint -> Typed_array.float32Array t -> unit meth
method vertexAttribPointer :
uint -> int -> dataType -> bool t -> sizei -> intptr -> unit meth
(** 5.13.11 Writing to the drawing buffer *)
method clear : clearBufferMask -> unit meth
method drawArrays : beginMode -> int -> sizei -> unit meth
method drawElements : beginMode -> sizei -> dataType -> intptr -> unit meth
method finish : unit meth
method flush : unit meth
(** 5.13.12 Reading back pixels *)
method readPixels :
int
-> int
-> sizei
-> sizei
-> pixelFormat
-> pixelType
-> #Typed_array.arrayBufferView t
-> unit meth
(** 5.13.13 Detecting context lost events *)
method isContextLost : bool t meth
(** 5.13.14 Detecting and enabling extensions *)
method getSupportedExtensions : js_string t js_array t meth
method getExtension : 'a. js_string t -> 'a t opt meth
(** Constants *)
method _DEPTH_BUFFER_BIT_ : clearBufferMask readonly_prop
method _STENCIL_BUFFER_BIT_ : clearBufferMask readonly_prop
method _COLOR_BUFFER_BIT_ : clearBufferMask readonly_prop
method _POINTS : beginMode readonly_prop
method _LINES : beginMode readonly_prop
method _LINE_LOOP_ : beginMode readonly_prop
method _LINE_STRIP_ : beginMode readonly_prop
method _TRIANGLES : beginMode readonly_prop
method _TRIANGLE_STRIP_ : beginMode readonly_prop
method _TRIANGLE_FAN_ : beginMode readonly_prop
method _ZERO : blendingFactor readonly_prop
method _ONE : blendingFactor readonly_prop
method _SRC_COLOR_ : blendingFactor readonly_prop
method _ONE_MINUS_SRC_COLOR_ : blendingFactor readonly_prop
method _SRC_ALPHA_ : blendingFactor readonly_prop
method _ONE_MINUS_SRC_ALPHA_ : blendingFactor readonly_prop
method _DST_ALPHA_ : blendingFactor readonly_prop
method _ONE_MINUS_DST_ALPHA_ : blendingFactor readonly_prop
method _DST_COLOR_ : blendingFactor readonly_prop
method _ONE_MINUS_DST_COLOR_ : blendingFactor readonly_prop
method _SRC_ALPHA_SATURATE_ : blendingFactor readonly_prop
method _FUNC_ADD_ : blendMode readonly_prop
method _FUNC_SUBTRACT_ : blendMode readonly_prop
method _FUNC_REVERSE_SUBTRACT_ : blendMode readonly_prop
method _CONSTANT_COLOR_ : blendMode readonly_prop
method _ONE_MINUS_CONSTANT_COLOR_ : blendMode readonly_prop
method _CONSTANT_ALPHA_ : blendMode readonly_prop
method _ONE_MINUS_CONSTANT_ALPHA_ : blendMode readonly_prop
method _ARRAY_BUFFER_ : bufferTarget readonly_prop
method _ELEMENT_ARRAY_BUFFER_ : bufferTarget readonly_prop
method _STREAM_DRAW_ : bufferUsage readonly_prop
method _STATIC_DRAW_ : bufferUsage readonly_prop
method _DYNAMIC_DRAW_ : bufferUsage readonly_prop
method _FRONT : cullFaceMode readonly_prop
method _BACK : cullFaceMode readonly_prop
method _FRONT_AND_BACK_ : cullFaceMode readonly_prop
method _CULL_FACE_ : enableCap readonly_prop
method _BLEND : enableCap readonly_prop
method _DITHER : enableCap readonly_prop
method _STENCIL_TEST_ : enableCap readonly_prop
method _DEPTH_TEST_ : enableCap readonly_prop
method _SCISSOR_TEST_ : enableCap readonly_prop
method _POLYGON_OFFSET_FILL_ : enableCap readonly_prop
method _SAMPLE_ALPHA_TO_COVERAGE_ : enableCap readonly_prop
method _SAMPLE_COVERAGE_ : enableCap readonly_prop
method _NO_ERROR_ : errorCode readonly_prop
method _INVALID_ENUM_ : errorCode readonly_prop
method _INVALID_VALUE_ : errorCode readonly_prop
method _INVALID_OPERATION_ : errorCode readonly_prop
method _OUT_OF_MEMORY_ : errorCode readonly_prop
method _CONTEXT_LOST_WEBGL_ : errorCode readonly_prop
method _INVALID_FRAMEBUFFER_OPERATION_ : errorCode readonly_prop
method _CW : frontFaceDir readonly_prop
method _CCW : frontFaceDir readonly_prop
method _DONT_CARE_ : hintMode readonly_prop
method _FASTEST : hintMode readonly_prop
method _NICEST : hintMode readonly_prop
method _GENERATE_MIPMAP_HINT_ : hintTarget readonly_prop
method _BLEND_EQUATION_ : blendMode parameter readonly_prop
method _BLEND_EQUATION_RGB_ : blendMode parameter readonly_prop
method _BLEND_EQUATION_ALPHA_ : blendMode parameter readonly_prop
method _BLEND_DST_RGB_ : blendingFactor parameter readonly_prop
method _BLEND_SRC_RGB_ : blendingFactor parameter readonly_prop
method _BLEND_DST_ALPHA_ : blendingFactor parameter readonly_prop
method _BLEND_SRC_ALPHA_ : blendingFactor parameter readonly_prop
method _BLEND_COLOR_ : Typed_array.float32Array t parameter readonly_prop
method _ARRAY_BUFFER_BINDING_ : buffer t opt parameter readonly_prop
method _ELEMENT_ARRAY_BUFFER_BINDING_ : buffer t opt parameter readonly_prop
method _CULL_FACE_PARAM : bool t parameter readonly_prop
method _BLEND_PARAM : bool t parameter readonly_prop
method _DITHER_PARAM : bool t parameter readonly_prop
method _STENCIL_TEST_PARAM : bool t parameter readonly_prop
method _DEPTH_TEST_PARAM : bool t parameter readonly_prop
method _SCISSOR_TEST_PARAM : bool t parameter readonly_prop
method _POLYGON_OFFSET_FILL_PARAM : bool t parameter readonly_prop
method _LINE_WIDTH_ : number_t parameter readonly_prop
method _ALIASED_POINT_SIZE_RANGE_ : Typed_array.float32Array t parameter readonly_prop
method _ALIASED_LINE_WIDTH_RANGE_ : Typed_array.float32Array t parameter readonly_prop
method _CULL_FACE_MODE_ : cullFaceMode parameter readonly_prop
method _FRONT_FACE_ : frontFaceDir parameter readonly_prop
method _DEPTH_RANGE_ : Typed_array.float32Array t parameter readonly_prop
method _DEPTH_WRITEMASK_ : bool t parameter readonly_prop
method _DEPTH_CLEAR_VALUE_ : number_t parameter readonly_prop
method _DEPTH_FUNC_ : depthFunction parameter readonly_prop
method _STENCIL_CLEAR_VALUE_ : int parameter readonly_prop
method _STENCIL_FUNC_ : int parameter readonly_prop
method _STENCIL_FAIL_ : int parameter readonly_prop
method _STENCIL_PASS_DEPTH_FAIL_ : int parameter readonly_prop
method _STENCIL_PASS_DEPTH_PASS_ : int parameter readonly_prop
method _STENCIL_REF_ : int parameter readonly_prop
method _STENCIL_VALUE_MASK_ : int parameter readonly_prop
method _STENCIL_WRITEMASK_ : int parameter readonly_prop
method _STENCIL_BACK_FUNC_ : int parameter readonly_prop
method _STENCIL_BACK_FAIL_ : int parameter readonly_prop
method _STENCIL_BACK_PASS_DEPTH_FAIL_ : int parameter readonly_prop
method _STENCIL_BACK_PASS_DEPTH_PASS_ : int parameter readonly_prop
method _STENCIL_BACK_REF_ : int parameter readonly_prop
method _STENCIL_BACK_VALUE_MASK_ : int parameter readonly_prop
method _STENCIL_BACK_WRITEMASK_ : int parameter readonly_prop
method _VIEWPORT : Typed_array.int32Array t parameter readonly_prop
method _SCISSOR_BOX_ : Typed_array.int32Array t parameter readonly_prop
method _COLOR_CLEAR_VALUE_ : Typed_array.float32Array t parameter readonly_prop
method _COLOR_WRITEMASK_ : bool t js_array t parameter readonly_prop
method _UNPACK_ALIGNMENT_PARAM : int parameter readonly_prop
method _PACK_ALIGNMENT_ : int parameter readonly_prop
method _MAX_TEXTURE_SIZE_ : int parameter readonly_prop
method _MAX_VIEWPORT_DIMS_ : Typed_array.int32Array t parameter readonly_prop
method _SUBPIXEL_BITS_ : int parameter readonly_prop
method _RED_BITS_ : int parameter readonly_prop
method _GREEN_BITS_ : int parameter readonly_prop
method _BLUE_BITS_ : int parameter readonly_prop
method _ALPHA_BITS_ : int parameter readonly_prop
method _DEPTH_BITS_ : int parameter readonly_prop
method _STENCIL_BITS_ : int parameter readonly_prop
method _POLYGON_OFFSET_UNITS_ : number_t parameter readonly_prop
method _POLYGON_OFFSET_FACTOR_ : number_t parameter readonly_prop
method _TEXTURE_BINDING_2D_ : texture t opt parameter readonly_prop
method _TEXTURE_BINDING_CUBE_MAP_ : texture t opt parameter readonly_prop
method _SAMPLE_BUFFERS_ : int parameter readonly_prop
method _SAMPLES_ : int parameter readonly_prop
method _SAMPLE_COVERAGE_VALUE_ : number_t parameter readonly_prop
method _SAMPLE_COVERAGE_INVERT_ : bool t parameter readonly_prop
method _NUM_COMPRESSED_TEXTURE_FORMATS_ : int parameter readonly_prop
method _COMPRESSED_TEXTURE_FORMATS_ : Typed_array.uint32Array t parameter readonly_prop
method _GENERATE_MIPMAP_HINT_PARAM_ : hintMode parameter readonly_prop
method _BUFFER_SIZE_ : int bufferParameter readonly_prop
method _BUFFER_USAGE_ : bufferUsage bufferParameter readonly_prop
method _BYTE : dataType readonly_prop
method _UNSIGNED_BYTE_DT : dataType readonly_prop
method _SHORT : dataType readonly_prop
method _UNSIGNED_SHORT_ : dataType readonly_prop
method _INT : dataType readonly_prop
method _UNSIGNED_INT_ : dataType readonly_prop
method _FLOAT : dataType readonly_prop
method _UNSIGNED_BYTE_ : pixelType readonly_prop
method _UNSIGNED_SHORT_4_4_4_4_ : pixelType readonly_prop
method _UNSIGNED_SHORT_5_5_5_1_ : pixelType readonly_prop
method _UNSIGNED_SHORT_5_6_5_ : pixelType readonly_prop
method _ALPHA : pixelFormat readonly_prop
method _RGB : pixelFormat readonly_prop
method _RGBA : pixelFormat readonly_prop
method _LUMINANCE : pixelFormat readonly_prop
method _LUMINANCE_ALPHA_ : pixelFormat readonly_prop
method _STENCIL_INDEX_ : pixelFormat readonly_prop
method _DEPTH_STENCIL_ : pixelFormat readonly_prop
method _DEPTH_COMPONENT_ : pixelFormat readonly_prop
method _FRAGMENT_SHADER_ : shaderType readonly_prop
method _VERTEX_SHADER_ : shaderType readonly_prop
method _MAX_VERTEX_ATTRIBS_ : int parameter readonly_prop
method _MAX_VERTEX_UNIFORM_VECTORS_ : int parameter readonly_prop
method _MAX_VARYING_VECTORS_ : int parameter readonly_prop
method _MAX_COMBINED_TEXTURE_IMAGE_UNITS_ : int parameter readonly_prop
method _MAX_VERTEX_TEXTURE_IMAGE_UNITS_ : int parameter readonly_prop
method _MAX_TEXTURE_IMAGE_UNITS_ : int parameter readonly_prop
method _MAX_FRAGMENT_UNIFORM_VECTORS_ : int parameter readonly_prop
method _SHADER_TYPE_ : shaderType shaderParam readonly_prop
method _DELETE_STATUS_ : bool t shaderParam readonly_prop
method _COMPILE_STATUS_ : bool t shaderParam readonly_prop
method _DELETE_STATUS_PROG : bool t programParam readonly_prop
method _LINK_STATUS_ : bool t programParam readonly_prop
method _VALIDATE_STATUS_ : bool t programParam readonly_prop
method _ATTACHED_SHADERS_ : int programParam readonly_prop
method _ACTIVE_UNIFORMS_ : int programParam readonly_prop
method _ACTIVE_ATTRIBUTES_ : int programParam readonly_prop
method _SHADING_LANGUAGE_VERSION_ : js_string t parameter readonly_prop
method _CURRENT_PROGRAM_ : program t opt parameter readonly_prop
method _VENDOR : js_string t parameter readonly_prop
method _RENDERER : js_string t parameter readonly_prop
method _VERSION : js_string t parameter readonly_prop
method _MAX_CUBE_MAP_TEXTURE_SIZE_ : int parameter readonly_prop
method _ACTIVE_TEXTURE_ : int parameter readonly_prop
method _FRAMEBUFFER_BINDING_ : framebuffer t opt parameter readonly_prop
method _RENDERBUFFER_BINDING_ : renderbuffer t opt parameter readonly_prop
method _MAX_RENDERBUFFER_SIZE : int parameter readonly_prop
method _NEVER : depthFunction readonly_prop
method _LESS : depthFunction readonly_prop
method _EQUAL : depthFunction readonly_prop
method _LEQUAL : depthFunction readonly_prop
method _GREATER : depthFunction readonly_prop
method _NOTEQUAL : depthFunction readonly_prop
method _GEQUAL : depthFunction readonly_prop
method _ALWAYS : depthFunction readonly_prop
method _KEEP : stencilOp readonly_prop
method _REPLACE : stencilOp readonly_prop
method _INCR : stencilOp readonly_prop
method _DECR : stencilOp readonly_prop
method _INVERT : stencilOp readonly_prop
method _INCR_WRAP_ : stencilOp readonly_prop
method _DECR_WRAP_ : stencilOp readonly_prop
method _ZERO_ : stencilOp readonly_prop
method _NEAREST : texFilter readonly_prop
method _LINEAR : texFilter readonly_prop
method _NEAREST_MIPMAP_NEAREST_ : texFilter readonly_prop
method _LINEAR_MIPMAP_NEAREST_ : texFilter readonly_prop
method _NEAREST_MIPMAP_LINEAR_ : texFilter readonly_prop
method _LINEAR_MIPMAP_LINEAR_ : texFilter readonly_prop
method _TEXTURE_MAG_FILTER_ : texFilter texParam readonly_prop
method _TEXTURE_MIN_FILTER_ : texFilter texParam readonly_prop
method _TEXTURE_WRAP_S_ : wrapMode texParam readonly_prop
method _TEXTURE_WRAP_T_ : wrapMode texParam readonly_prop
method _NONE_OT : objectType readonly_prop
method _TEXTURE_OT : objectType readonly_prop
method _RENDERBUFFER_OT : objectType readonly_prop
method _TEXTURE_2D_ : texTarget readonly_prop
method _TEXTURE_CUBE_MAP_ : texTarget readonly_prop
method _TEXTURE_CUBE_MAP_POSITIVE_X_ : texTarget readonly_prop
method _TEXTURE_CUBE_MAP_NEGATIVE_X_ : texTarget readonly_prop
method _TEXTURE_CUBE_MAP_POSITIVE_Y_ : texTarget readonly_prop
method _TEXTURE_CUBE_MAP_NEGATIVE_Y_ : texTarget readonly_prop
method _TEXTURE_CUBE_MAP_POSITIVE_Z_ : texTarget readonly_prop
method _TEXTURE_CUBE_MAP_NEGATIVE_Z_ : texTarget readonly_prop
method _TEXTURE0 : textureUnit readonly_prop
method _TEXTURE1 : textureUnit readonly_prop
method _TEXTURE2 : textureUnit readonly_prop
method _TEXTURE3 : textureUnit readonly_prop
method _TEXTURE4 : textureUnit readonly_prop
method _TEXTURE5 : textureUnit readonly_prop
method _TEXTURE6 : textureUnit readonly_prop
method _TEXTURE7 : textureUnit readonly_prop
method _TEXTURE8 : textureUnit readonly_prop
method _TEXTURE9 : textureUnit readonly_prop
method _TEXTURE10 : textureUnit readonly_prop
method _TEXTURE11 : textureUnit readonly_prop
method _TEXTURE12 : textureUnit readonly_prop
method _TEXTURE13 : textureUnit readonly_prop
method _TEXTURE14 : textureUnit readonly_prop
method _TEXTURE15 : textureUnit readonly_prop
method _TEXTURE16 : textureUnit readonly_prop
method _TEXTURE17 : textureUnit readonly_prop
method _TEXTURE18 : textureUnit readonly_prop
method _TEXTURE19 : textureUnit readonly_prop
method _TEXTURE20 : textureUnit readonly_prop
method _TEXTURE21 : textureUnit readonly_prop
method _TEXTURE22 : textureUnit readonly_prop
method _TEXTURE23 : textureUnit readonly_prop
method _TEXTURE24 : textureUnit readonly_prop
method _TEXTURE25 : textureUnit readonly_prop
method _TEXTURE26 : textureUnit readonly_prop
method _TEXTURE27 : textureUnit readonly_prop
method _TEXTURE28 : textureUnit readonly_prop
method _TEXTURE29 : textureUnit readonly_prop
method _TEXTURE30 : textureUnit readonly_prop
method _TEXTURE31 : textureUnit readonly_prop
method _REPEAT : wrapMode readonly_prop
method _CLAMP_TO_EDGE_ : wrapMode readonly_prop
method _MIRRORED_REPEAT_ : wrapMode readonly_prop
method _FLOAT_ : uniformType readonly_prop
method _FLOAT_VEC2_ : uniformType readonly_prop
method _FLOAT_VEC3_ : uniformType readonly_prop
method _FLOAT_VEC4_ : uniformType readonly_prop
method _INT_ : uniformType readonly_prop
method _INT_VEC2_ : uniformType readonly_prop
method _INT_VEC3_ : uniformType readonly_prop
method _INT_VEC4_ : uniformType readonly_prop
method _BOOL_ : uniformType readonly_prop
method _BOOL_VEC2_ : uniformType readonly_prop
method _BOOL_VEC3_ : uniformType readonly_prop
method _BOOL_VEC4_ : uniformType readonly_prop
method _FLOAT_MAT2_ : uniformType readonly_prop
method _FLOAT_MAT3_ : uniformType readonly_prop
method _FLOAT_MAT4_ : uniformType readonly_prop
method _SAMPLER_2D_ : uniformType readonly_prop
method _SAMPLER_CUBE_ : uniformType readonly_prop
method _VERTEX_ATTRIB_ARRAY_ENABLED_ : bool t vertexAttribParam readonly_prop
method _VERTEX_ATTRIB_ARRAY_SIZE_ : int vertexAttribParam readonly_prop
method _VERTEX_ATTRIB_ARRAY_STRIDE_ : int vertexAttribParam readonly_prop
method _VERTEX_ATTRIB_ARRAY_TYPE_ : int vertexAttribParam readonly_prop
method _VERTEX_ATTRIB_ARRAY_NORMALIZED_ : bool t vertexAttribParam readonly_prop
method _VERTEX_ATTRIB_ARRAY_POINTER_ : vertexAttribPointerParam readonly_prop
method _VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ :
buffer t opt vertexAttribParam readonly_prop
method _CURRENT_VERTEX_ATTRIB_ :
Typed_array.float32Array t vertexAttribParam readonly_prop
method _LOW_FLOAT_ : shaderPrecisionType readonly_prop
method _MEDIUM_FLOAT_ : shaderPrecisionType readonly_prop
method _HIGH_FLOAT_ : shaderPrecisionType readonly_prop
method _LOW_INT_ : shaderPrecisionType readonly_prop
method _MEDIUM_INT_ : shaderPrecisionType readonly_prop
method _HIGH_INT_ : shaderPrecisionType readonly_prop
method _FRAMEBUFFER : fbTarget readonly_prop
method _RENDERBUFFER : rbTarget readonly_prop
method _RGBA4 : format readonly_prop
method _RGB5_A1_ : format readonly_prop
method _RGB565 : format readonly_prop
method _DEPTH_COMPONENT16_ : format readonly_prop
method _STENCIL_INDEX8_ : format readonly_prop
method _RENDERBUFFER_WIDTH_ : int renderbufferParam readonly_prop
method _RENDERBUFFER_HEIGHT_ : int renderbufferParam readonly_prop
method _RENDERBUFFER_INTERNAL_FORMAT_ : format renderbufferParam readonly_prop
method _RENDERBUFFER_RED_SIZE_ : int renderbufferParam readonly_prop
method _RENDERBUFFER_GREEN_SIZE_ : int renderbufferParam readonly_prop
method _RENDERBUFFER_BLUE_SIZE_ : int renderbufferParam readonly_prop
method _RENDERBUFFER_ALPHA_SIZE_ : int renderbufferParam readonly_prop
method _RENDERBUFFER_DEPTH_SIZE_ : int renderbufferParam readonly_prop
method _RENDERBUFFER_STENCIL_SIZE_ : int renderbufferParam readonly_prop
method _FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_ : objectType attachParam readonly_prop
method _FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_RENDERBUFFER :
renderbuffer t attachParam readonly_prop
method _FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_TEXTURE : texture t attachParam readonly_prop
method _FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_ : int attachParam readonly_prop
method _FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_ : int attachParam readonly_prop
method _COLOR_ATTACHMENT0_ : attachmentPoint readonly_prop
method _DEPTH_ATTACHMENT_ : attachmentPoint readonly_prop
method _STENCIL_ATTACHMENT_ : attachmentPoint readonly_prop
method _DEPTH_STENCIL_ATTACHMENT_ : attachmentPoint readonly_prop
method _FRAMEBUFFER_COMPLETE_ : framebufferStatus readonly_prop
method _FRAMEBUFFER_INCOMPLETE_ATTACHMENT_ : framebufferStatus readonly_prop
method _FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_ : framebufferStatus readonly_prop
method _FRAMEBUFFER_INCOMPLETE_DIMENSIONS_ : framebufferStatus readonly_prop
method _FRAMEBUFFER_UNSUPPORTED_ : framebufferStatus readonly_prop
method _UNPACK_FLIP_Y_WEBGL_PARAM : bool t parameter readonly_prop
method _UNPACK_PREMULTIPLY_ALPHA_WEBGL_PARAM : bool t parameter readonly_prop
method _UNPACK_COLORSPACE_CONVERSION_WEBGL_PARAM :
colorspaceConversion parameter readonly_prop
method _NONE : colorspaceConversion readonly_prop
method _BROWSER_DEFAULT_WEBGL_ : colorspaceConversion readonly_prop
method _UNPACK_ALIGNMENT_ : int pixelStoreParam readonly_prop
method _UNPACK_FLIP_Y_WEBGL_ : bool t pixelStoreParam readonly_prop
method _UNPACK_PREMULTIPLY_ALPHA_WEBGL_ : bool t pixelStoreParam readonly_prop
method _UNPACK_COLORSPACE_CONVERSION_WEBGL_ : int pixelStoreParam readonly_prop
end
(** 5.14 WebGLContextEvent *)
class type contextEvent = object
inherit Dom_html.event
method statusMessage : js_string t readonly_prop
end
module Event = struct
let webglcontextlost = Dom_html.Event.make "webglcontextlost"
let webglcontextrestored = Dom_html.Event.make "webglcontextrestored"
let webglcontextcreationerror = Dom_html.Event.make "webglcontextcreationerror"
end
class type canvasElement = object
method getContext : js_string t -> renderingContext t opt meth
method getContext_ : js_string t -> contextAttributes t -> renderingContext t opt meth
end
let getContext (c : Dom_html.canvasElement t) =
let c : canvasElement t = Js.Unsafe.coerce c in
let ctx = c##getContext (Js.string "webgl") in
if Opt.test ctx then ctx else c##(getContext (Js.string "experimental-webgl"))
let getContextWithAttributes (c : Dom_html.canvasElement t) attribs =
let c : canvasElement t = Js.Unsafe.coerce c in
let ctx = c##getContext_ (Js.string "webgl") attribs in
if Opt.test ctx then ctx else c##getContext_ (Js.string "experimental-webgl") attribs