fake-bpy-module 20240713__py3-none-any.whl → 20240715__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bgl/__init__.pyi +0 -558
- bpy/path/__init__.pyi +0 -182
- bpy/types/__init__.pyi +37 -1
- bpy/utils/__init__.pyi +0 -215
- bpy/utils/previews/__init__.pyi +9 -80
- bpy_extras/anim_utils/__init__.pyi +0 -55
- bpy_extras/asset_utils/__init__.pyi +1 -14
- bpy_extras/id_map_utils/__init__.pyi +0 -10
- bpy_extras/image_utils/__init__.pyi +0 -49
- bpy_extras/io_utils/__init__.pyi +0 -131
- bpy_extras/keyconfig_utils/__init__.pyi +0 -11
- bpy_extras/mesh_utils/__init__.pyi +0 -88
- bpy_extras/node_utils/__init__.pyi +0 -1
- bpy_extras/object_utils/__init__.pyi +0 -96
- bpy_extras/view3d_utils/__init__.pyi +0 -94
- {fake_bpy_module-20240713.dist-info → fake_bpy_module-20240715.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240713.dist-info → fake_bpy_module-20240715.dist-info}/RECORD +20 -20
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240713.dist-info → fake_bpy_module-20240715.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240713.dist-info → fake_bpy_module-20240715.dist-info}/top_level.txt +0 -0
bgl/__init__.pyi
CHANGED
|
@@ -79,14 +79,6 @@ def glActiveTexture(texture: int):
|
|
|
79
79
|
|
|
80
80
|
...
|
|
81
81
|
|
|
82
|
-
def glActiveTexture(p0: int):
|
|
83
|
-
"""
|
|
84
|
-
|
|
85
|
-
:type p0: int
|
|
86
|
-
"""
|
|
87
|
-
|
|
88
|
-
...
|
|
89
|
-
|
|
90
82
|
def glAttachShader(program: int, shader: int):
|
|
91
83
|
"""Attaches a shader object to a program object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glAttachShader.xhtml>`__
|
|
92
84
|
|
|
@@ -98,15 +90,6 @@ def glAttachShader(program: int, shader: int):
|
|
|
98
90
|
|
|
99
91
|
...
|
|
100
92
|
|
|
101
|
-
def glAttachShader(p0: int, p1: int):
|
|
102
|
-
"""
|
|
103
|
-
|
|
104
|
-
:type p0: int
|
|
105
|
-
:type p1: int
|
|
106
|
-
"""
|
|
107
|
-
|
|
108
|
-
...
|
|
109
|
-
|
|
110
93
|
def glBeginQuery(p0: int, p1: int):
|
|
111
94
|
"""
|
|
112
95
|
|
|
@@ -186,15 +169,6 @@ def glBindTexture(target: set[str], texture: int):
|
|
|
186
169
|
|
|
187
170
|
...
|
|
188
171
|
|
|
189
|
-
def glBindTexture(p0: int, p1: int):
|
|
190
|
-
"""
|
|
191
|
-
|
|
192
|
-
:type p0: int
|
|
193
|
-
:type p1: int
|
|
194
|
-
"""
|
|
195
|
-
|
|
196
|
-
...
|
|
197
|
-
|
|
198
172
|
def glBindVertexArray(p0: int):
|
|
199
173
|
"""
|
|
200
174
|
|
|
@@ -244,15 +218,6 @@ def glBlendFunc(sfactor: set[str], dfactor: set[str]):
|
|
|
244
218
|
|
|
245
219
|
...
|
|
246
220
|
|
|
247
|
-
def glBlendFunc(p0: int, p1: int):
|
|
248
|
-
"""
|
|
249
|
-
|
|
250
|
-
:type p0: int
|
|
251
|
-
:type p1: int
|
|
252
|
-
"""
|
|
253
|
-
|
|
254
|
-
...
|
|
255
|
-
|
|
256
221
|
def glBlitFramebuffer(
|
|
257
222
|
p0: int,
|
|
258
223
|
p1: int,
|
|
@@ -320,14 +285,6 @@ def glClear(mask):
|
|
|
320
285
|
|
|
321
286
|
...
|
|
322
287
|
|
|
323
|
-
def glClear(p0: int):
|
|
324
|
-
"""
|
|
325
|
-
|
|
326
|
-
:type p0: int
|
|
327
|
-
"""
|
|
328
|
-
|
|
329
|
-
...
|
|
330
|
-
|
|
331
288
|
def glClearColor(red: float, green, blue, alpha):
|
|
332
289
|
"""Specify clear values for the color buffers`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glClearColor.xhtml>`__
|
|
333
290
|
|
|
@@ -338,17 +295,6 @@ def glClearColor(red: float, green, blue, alpha):
|
|
|
338
295
|
|
|
339
296
|
...
|
|
340
297
|
|
|
341
|
-
def glClearColor(p0: float, p1: float, p2: float, p3: float):
|
|
342
|
-
"""
|
|
343
|
-
|
|
344
|
-
:type p0: float
|
|
345
|
-
:type p1: float
|
|
346
|
-
:type p2: float
|
|
347
|
-
:type p3: float
|
|
348
|
-
"""
|
|
349
|
-
|
|
350
|
-
...
|
|
351
|
-
|
|
352
298
|
def glClearDepth(depth: int):
|
|
353
299
|
"""Specify the clear value for the depth buffer`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glClearDepth.xhtml>`__
|
|
354
300
|
|
|
@@ -359,14 +305,6 @@ def glClearDepth(depth: int):
|
|
|
359
305
|
|
|
360
306
|
...
|
|
361
307
|
|
|
362
|
-
def glClearDepth(p0: float):
|
|
363
|
-
"""
|
|
364
|
-
|
|
365
|
-
:type p0: float
|
|
366
|
-
"""
|
|
367
|
-
|
|
368
|
-
...
|
|
369
|
-
|
|
370
308
|
def glClearStencil(s: int):
|
|
371
309
|
"""Specify the clear value for the stencil buffer`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glClearStencil.xhtml>`__
|
|
372
310
|
|
|
@@ -376,14 +314,6 @@ def glClearStencil(s: int):
|
|
|
376
314
|
|
|
377
315
|
...
|
|
378
316
|
|
|
379
|
-
def glClearStencil(p0: int):
|
|
380
|
-
"""
|
|
381
|
-
|
|
382
|
-
:type p0: int
|
|
383
|
-
"""
|
|
384
|
-
|
|
385
|
-
...
|
|
386
|
-
|
|
387
317
|
def glClipPlane(plane: set[str], equation: Buffer):
|
|
388
318
|
"""Specify a plane against which all geometry is clipped`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glClipPlane.xhtml>`__
|
|
389
319
|
|
|
@@ -407,17 +337,6 @@ def glColorMask(red: int, green, blue, alpha):
|
|
|
407
337
|
|
|
408
338
|
...
|
|
409
339
|
|
|
410
|
-
def glColorMask(p0: bool, p1: bool, p2: bool, p3: bool):
|
|
411
|
-
"""
|
|
412
|
-
|
|
413
|
-
:type p0: bool
|
|
414
|
-
:type p1: bool
|
|
415
|
-
:type p2: bool
|
|
416
|
-
:type p3: bool
|
|
417
|
-
"""
|
|
418
|
-
|
|
419
|
-
...
|
|
420
|
-
|
|
421
340
|
def glCompileShader(shader: int):
|
|
422
341
|
"""Compiles a shader object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glCompileShader.xhtml>`__
|
|
423
342
|
|
|
@@ -427,14 +346,6 @@ def glCompileShader(shader: int):
|
|
|
427
346
|
|
|
428
347
|
...
|
|
429
348
|
|
|
430
|
-
def glCompileShader(p0: int):
|
|
431
|
-
"""
|
|
432
|
-
|
|
433
|
-
:type p0: int
|
|
434
|
-
"""
|
|
435
|
-
|
|
436
|
-
...
|
|
437
|
-
|
|
438
349
|
def glCompressedTexImage1D(
|
|
439
350
|
p0: int, p1: int, p2: int, p3: int, p4: int, p5: int, p6: typing.Any
|
|
440
351
|
):
|
|
@@ -587,23 +498,6 @@ def glCopyTexImage2D(
|
|
|
587
498
|
|
|
588
499
|
...
|
|
589
500
|
|
|
590
|
-
def glCopyTexImage2D(
|
|
591
|
-
p0: int, p1: int, p2: int, p3: int, p4: int, p5: int, p6: int, p7: int
|
|
592
|
-
):
|
|
593
|
-
"""
|
|
594
|
-
|
|
595
|
-
:type p0: int
|
|
596
|
-
:type p1: int
|
|
597
|
-
:type p2: int
|
|
598
|
-
:type p3: int
|
|
599
|
-
:type p4: int
|
|
600
|
-
:type p5: int
|
|
601
|
-
:type p6: int
|
|
602
|
-
:type p7: int
|
|
603
|
-
"""
|
|
604
|
-
|
|
605
|
-
...
|
|
606
|
-
|
|
607
501
|
def glCopyTexSubImage1D(p0: int, p1: int, p2: int, p3: int, p4: int, p5: int):
|
|
608
502
|
"""
|
|
609
503
|
|
|
@@ -661,15 +555,6 @@ def glCreateProgram() -> int:
|
|
|
661
555
|
|
|
662
556
|
...
|
|
663
557
|
|
|
664
|
-
def glCreateProgram(p0: typing.Any) -> int:
|
|
665
|
-
"""
|
|
666
|
-
|
|
667
|
-
:type p0: typing.Any
|
|
668
|
-
:rtype: int
|
|
669
|
-
"""
|
|
670
|
-
|
|
671
|
-
...
|
|
672
|
-
|
|
673
558
|
def glCreateShader(shaderType: GL_GEOMETRY_SHADER) -> int:
|
|
674
559
|
"""Creates a shader object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glCreateShader.xhtml>`__
|
|
675
560
|
|
|
@@ -680,15 +565,6 @@ def glCreateShader(shaderType: GL_GEOMETRY_SHADER) -> int:
|
|
|
680
565
|
|
|
681
566
|
...
|
|
682
567
|
|
|
683
|
-
def glCreateShader(p0: int) -> int:
|
|
684
|
-
"""
|
|
685
|
-
|
|
686
|
-
:type p0: int
|
|
687
|
-
:rtype: int
|
|
688
|
-
"""
|
|
689
|
-
|
|
690
|
-
...
|
|
691
|
-
|
|
692
568
|
def glCullFace(mode: set[str]):
|
|
693
569
|
"""Specify whether front- or back-facing facets can be culled`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glCullFace.xhtml>`__
|
|
694
570
|
|
|
@@ -698,14 +574,6 @@ def glCullFace(mode: set[str]):
|
|
|
698
574
|
|
|
699
575
|
...
|
|
700
576
|
|
|
701
|
-
def glCullFace(p0: int):
|
|
702
|
-
"""
|
|
703
|
-
|
|
704
|
-
:type p0: int
|
|
705
|
-
"""
|
|
706
|
-
|
|
707
|
-
...
|
|
708
|
-
|
|
709
577
|
def glDeleteBuffers(p0: int, p1: int):
|
|
710
578
|
"""
|
|
711
579
|
|
|
@@ -733,14 +601,6 @@ def glDeleteProgram(program: int):
|
|
|
733
601
|
|
|
734
602
|
...
|
|
735
603
|
|
|
736
|
-
def glDeleteProgram(p0: int):
|
|
737
|
-
"""
|
|
738
|
-
|
|
739
|
-
:type p0: int
|
|
740
|
-
"""
|
|
741
|
-
|
|
742
|
-
...
|
|
743
|
-
|
|
744
604
|
def glDeleteQueries(p0: int, p1: int):
|
|
745
605
|
"""
|
|
746
606
|
|
|
@@ -768,14 +628,6 @@ def glDeleteShader(shader: int):
|
|
|
768
628
|
|
|
769
629
|
...
|
|
770
630
|
|
|
771
|
-
def glDeleteShader(p0: int):
|
|
772
|
-
"""
|
|
773
|
-
|
|
774
|
-
:type p0: int
|
|
775
|
-
"""
|
|
776
|
-
|
|
777
|
-
...
|
|
778
|
-
|
|
779
631
|
def glDeleteTextures(n: int, textures: Buffer):
|
|
780
632
|
"""Delete named textures`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glDeleteTextures.xhtml>`__
|
|
781
633
|
|
|
@@ -787,15 +639,6 @@ def glDeleteTextures(n: int, textures: Buffer):
|
|
|
787
639
|
|
|
788
640
|
...
|
|
789
641
|
|
|
790
|
-
def glDeleteTextures(p0: int, p1: int):
|
|
791
|
-
"""
|
|
792
|
-
|
|
793
|
-
:type p0: int
|
|
794
|
-
:type p1: int
|
|
795
|
-
"""
|
|
796
|
-
|
|
797
|
-
...
|
|
798
|
-
|
|
799
642
|
def glDeleteVertexArrays(p0: int, p1: int):
|
|
800
643
|
"""
|
|
801
644
|
|
|
@@ -814,14 +657,6 @@ def glDepthFunc(func: set[str]):
|
|
|
814
657
|
|
|
815
658
|
...
|
|
816
659
|
|
|
817
|
-
def glDepthFunc(p0: int):
|
|
818
|
-
"""
|
|
819
|
-
|
|
820
|
-
:type p0: int
|
|
821
|
-
"""
|
|
822
|
-
|
|
823
|
-
...
|
|
824
|
-
|
|
825
660
|
def glDepthMask(flag: int):
|
|
826
661
|
"""Enable or disable writing into the depth buffer`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glDepthMask.xhtml>`__
|
|
827
662
|
|
|
@@ -833,14 +668,6 @@ def glDepthMask(flag: int):
|
|
|
833
668
|
|
|
834
669
|
...
|
|
835
670
|
|
|
836
|
-
def glDepthMask(p0: bool):
|
|
837
|
-
"""
|
|
838
|
-
|
|
839
|
-
:type p0: bool
|
|
840
|
-
"""
|
|
841
|
-
|
|
842
|
-
...
|
|
843
|
-
|
|
844
671
|
def glDepthRange(zNear: int, zFar: int):
|
|
845
672
|
"""Specify mapping of depth values from normalized device coordinates to window coordinates`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glDepthRange.xhtml>`__
|
|
846
673
|
|
|
@@ -854,15 +681,6 @@ def glDepthRange(zNear: int, zFar: int):
|
|
|
854
681
|
|
|
855
682
|
...
|
|
856
683
|
|
|
857
|
-
def glDepthRange(p0: float, p1: float):
|
|
858
|
-
"""
|
|
859
|
-
|
|
860
|
-
:type p0: float
|
|
861
|
-
:type p1: float
|
|
862
|
-
"""
|
|
863
|
-
|
|
864
|
-
...
|
|
865
|
-
|
|
866
684
|
def glDetachShader(program: int, shader: int):
|
|
867
685
|
"""Detaches a shader object from a program object to which it is attached.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glDetachShader.xhtml>`__
|
|
868
686
|
|
|
@@ -874,15 +692,6 @@ def glDetachShader(program: int, shader: int):
|
|
|
874
692
|
|
|
875
693
|
...
|
|
876
694
|
|
|
877
|
-
def glDetachShader(p0: int, p1: int):
|
|
878
|
-
"""
|
|
879
|
-
|
|
880
|
-
:type p0: int
|
|
881
|
-
:type p1: int
|
|
882
|
-
"""
|
|
883
|
-
|
|
884
|
-
...
|
|
885
|
-
|
|
886
695
|
def glDisable(cap: set[str]):
|
|
887
696
|
"""Disable server-side GL capabilities`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glEnable.xhtml>`__
|
|
888
697
|
|
|
@@ -892,14 +701,6 @@ def glDisable(cap: set[str]):
|
|
|
892
701
|
|
|
893
702
|
...
|
|
894
703
|
|
|
895
|
-
def glDisable(p0: int):
|
|
896
|
-
"""
|
|
897
|
-
|
|
898
|
-
:type p0: int
|
|
899
|
-
"""
|
|
900
|
-
|
|
901
|
-
...
|
|
902
|
-
|
|
903
704
|
def glDisableVertexAttribArray(p0: int):
|
|
904
705
|
"""
|
|
905
706
|
|
|
@@ -927,14 +728,6 @@ def glDrawBuffer(mode: set[str]):
|
|
|
927
728
|
|
|
928
729
|
...
|
|
929
730
|
|
|
930
|
-
def glDrawBuffer(p0: int):
|
|
931
|
-
"""
|
|
932
|
-
|
|
933
|
-
:type p0: int
|
|
934
|
-
"""
|
|
935
|
-
|
|
936
|
-
...
|
|
937
|
-
|
|
938
731
|
def glDrawBuffers(p0: int, p1: int):
|
|
939
732
|
"""
|
|
940
733
|
|
|
@@ -985,14 +778,6 @@ def glEnable(cap: set[str]):
|
|
|
985
778
|
|
|
986
779
|
...
|
|
987
780
|
|
|
988
|
-
def glEnable(p0: int):
|
|
989
|
-
"""
|
|
990
|
-
|
|
991
|
-
:type p0: int
|
|
992
|
-
"""
|
|
993
|
-
|
|
994
|
-
...
|
|
995
|
-
|
|
996
781
|
def glEnableVertexAttribArray(p0: int):
|
|
997
782
|
"""
|
|
998
783
|
|
|
@@ -1066,27 +851,11 @@ def glFinish():
|
|
|
1066
851
|
|
|
1067
852
|
...
|
|
1068
853
|
|
|
1069
|
-
def glFinish(p0: typing.Any):
|
|
1070
|
-
"""
|
|
1071
|
-
|
|
1072
|
-
:type p0: typing.Any
|
|
1073
|
-
"""
|
|
1074
|
-
|
|
1075
|
-
...
|
|
1076
|
-
|
|
1077
854
|
def glFlush():
|
|
1078
855
|
"""Force Execution of GL commands in finite time`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glFlush.xhtml>`__"""
|
|
1079
856
|
|
|
1080
857
|
...
|
|
1081
858
|
|
|
1082
|
-
def glFlush(p0: typing.Any):
|
|
1083
|
-
"""
|
|
1084
|
-
|
|
1085
|
-
:type p0: typing.Any
|
|
1086
|
-
"""
|
|
1087
|
-
|
|
1088
|
-
...
|
|
1089
|
-
|
|
1090
859
|
def glFog(pname: set[str], param: typing.Any):
|
|
1091
860
|
"""B{glFogf, glFogi, glFogfv, glFogiv}Specify fog parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glFog.xhtml>`__
|
|
1092
861
|
|
|
@@ -1132,14 +901,6 @@ def glFrontFace(mode: set[str]):
|
|
|
1132
901
|
|
|
1133
902
|
...
|
|
1134
903
|
|
|
1135
|
-
def glFrontFace(p0: int):
|
|
1136
|
-
"""
|
|
1137
|
-
|
|
1138
|
-
:type p0: int
|
|
1139
|
-
"""
|
|
1140
|
-
|
|
1141
|
-
...
|
|
1142
|
-
|
|
1143
904
|
def glGenBuffers(p0: int, p1: int):
|
|
1144
905
|
"""
|
|
1145
906
|
|
|
@@ -1187,15 +948,6 @@ def glGenTextures(n: int, textures: Buffer):
|
|
|
1187
948
|
|
|
1188
949
|
...
|
|
1189
950
|
|
|
1190
|
-
def glGenTextures(p0: int, p1: int):
|
|
1191
|
-
"""
|
|
1192
|
-
|
|
1193
|
-
:type p0: int
|
|
1194
|
-
:type p1: int
|
|
1195
|
-
"""
|
|
1196
|
-
|
|
1197
|
-
...
|
|
1198
|
-
|
|
1199
951
|
def glGenVertexArrays(p0: int, p1: int):
|
|
1200
952
|
"""
|
|
1201
953
|
|
|
@@ -1306,17 +1058,6 @@ def glGetAttachedShaders(program: int, maxCount: int, count: Buffer, shaders: Bu
|
|
|
1306
1058
|
|
|
1307
1059
|
...
|
|
1308
1060
|
|
|
1309
|
-
def glGetAttachedShaders(p0: int, p1: int, p2: int, p3: int):
|
|
1310
|
-
"""
|
|
1311
|
-
|
|
1312
|
-
:type p0: int
|
|
1313
|
-
:type p1: int
|
|
1314
|
-
:type p2: int
|
|
1315
|
-
:type p3: int
|
|
1316
|
-
"""
|
|
1317
|
-
|
|
1318
|
-
...
|
|
1319
|
-
|
|
1320
1061
|
def glGetAttribLocation(p0: int, p1: str) -> int:
|
|
1321
1062
|
"""
|
|
1322
1063
|
|
|
@@ -1401,15 +1142,6 @@ def glGetError():
|
|
|
1401
1142
|
|
|
1402
1143
|
...
|
|
1403
1144
|
|
|
1404
|
-
def glGetError(p0: typing.Any) -> int:
|
|
1405
|
-
"""
|
|
1406
|
-
|
|
1407
|
-
:type p0: typing.Any
|
|
1408
|
-
:rtype: int
|
|
1409
|
-
"""
|
|
1410
|
-
|
|
1411
|
-
...
|
|
1412
|
-
|
|
1413
1145
|
def glGetFloatv(p0: int, p1: float):
|
|
1414
1146
|
"""
|
|
1415
1147
|
|
|
@@ -1506,17 +1238,6 @@ def glGetProgramInfoLog(program: int, maxLength: int, length: Buffer, infoLog: B
|
|
|
1506
1238
|
|
|
1507
1239
|
...
|
|
1508
1240
|
|
|
1509
|
-
def glGetProgramInfoLog(p0: int, p1: int, p2: int, p3: int):
|
|
1510
|
-
"""
|
|
1511
|
-
|
|
1512
|
-
:type p0: int
|
|
1513
|
-
:type p1: int
|
|
1514
|
-
:type p2: int
|
|
1515
|
-
:type p3: int
|
|
1516
|
-
"""
|
|
1517
|
-
|
|
1518
|
-
...
|
|
1519
|
-
|
|
1520
1241
|
def glGetProgramiv(program: int, pname: int, params: Buffer):
|
|
1521
1242
|
"""Returns a parameter from a program object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetProgram.xhtml>`__
|
|
1522
1243
|
|
|
@@ -1530,16 +1251,6 @@ def glGetProgramiv(program: int, pname: int, params: Buffer):
|
|
|
1530
1251
|
|
|
1531
1252
|
...
|
|
1532
1253
|
|
|
1533
|
-
def glGetProgramiv(p0: int, p1: int, p2: int):
|
|
1534
|
-
"""
|
|
1535
|
-
|
|
1536
|
-
:type p0: int
|
|
1537
|
-
:type p1: int
|
|
1538
|
-
:type p2: int
|
|
1539
|
-
"""
|
|
1540
|
-
|
|
1541
|
-
...
|
|
1542
|
-
|
|
1543
1254
|
def glGetQueryObjectiv(p0: int, p1: int, p2: int):
|
|
1544
1255
|
"""
|
|
1545
1256
|
|
|
@@ -1583,17 +1294,6 @@ def glGetShaderInfoLog(program, maxLength: int, length: Buffer, infoLog: Buffer)
|
|
|
1583
1294
|
|
|
1584
1295
|
...
|
|
1585
1296
|
|
|
1586
|
-
def glGetShaderInfoLog(p0: int, p1: int, p2: int, p3: int):
|
|
1587
|
-
"""
|
|
1588
|
-
|
|
1589
|
-
:type p0: int
|
|
1590
|
-
:type p1: int
|
|
1591
|
-
:type p2: int
|
|
1592
|
-
:type p3: int
|
|
1593
|
-
"""
|
|
1594
|
-
|
|
1595
|
-
...
|
|
1596
|
-
|
|
1597
1297
|
def glGetShaderSource(shader: int, bufSize: int, length: Buffer, source: Buffer):
|
|
1598
1298
|
"""Returns the source code string from a shader object`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetShaderSource.xhtml>`__
|
|
1599
1299
|
|
|
@@ -1609,17 +1309,6 @@ def glGetShaderSource(shader: int, bufSize: int, length: Buffer, source: Buffer)
|
|
|
1609
1309
|
|
|
1610
1310
|
...
|
|
1611
1311
|
|
|
1612
|
-
def glGetShaderSource(p0: int, p1: int, p2: int, p3: int):
|
|
1613
|
-
"""
|
|
1614
|
-
|
|
1615
|
-
:type p0: int
|
|
1616
|
-
:type p1: int
|
|
1617
|
-
:type p2: int
|
|
1618
|
-
:type p3: int
|
|
1619
|
-
"""
|
|
1620
|
-
|
|
1621
|
-
...
|
|
1622
|
-
|
|
1623
1312
|
def glGetShaderiv(p0: int, p1: int, p2: int):
|
|
1624
1313
|
"""
|
|
1625
1314
|
|
|
@@ -1639,15 +1328,6 @@ def glGetString(name: set[str]):
|
|
|
1639
1328
|
|
|
1640
1329
|
...
|
|
1641
1330
|
|
|
1642
|
-
def glGetString(p0: int) -> str:
|
|
1643
|
-
"""
|
|
1644
|
-
|
|
1645
|
-
:type p0: int
|
|
1646
|
-
:rtype: str
|
|
1647
|
-
"""
|
|
1648
|
-
|
|
1649
|
-
...
|
|
1650
|
-
|
|
1651
1331
|
def glGetStringi(p0: int, p1: int) -> str:
|
|
1652
1332
|
"""
|
|
1653
1333
|
|
|
@@ -1705,18 +1385,6 @@ def glGetTexImage(
|
|
|
1705
1385
|
|
|
1706
1386
|
...
|
|
1707
1387
|
|
|
1708
|
-
def glGetTexImage(p0: int, p1: int, p2: int, p3: int, p4: typing.Any):
|
|
1709
|
-
"""
|
|
1710
|
-
|
|
1711
|
-
:type p0: int
|
|
1712
|
-
:type p1: int
|
|
1713
|
-
:type p2: int
|
|
1714
|
-
:type p3: int
|
|
1715
|
-
:type p4: typing.Any
|
|
1716
|
-
"""
|
|
1717
|
-
|
|
1718
|
-
...
|
|
1719
|
-
|
|
1720
1388
|
def glGetTexLevelParameter(
|
|
1721
1389
|
target: set[str], level: int, pname: set[str], params: Buffer
|
|
1722
1390
|
):
|
|
@@ -1893,15 +1561,6 @@ def glHint(target: set[str], mode: set[str]):
|
|
|
1893
1561
|
|
|
1894
1562
|
...
|
|
1895
1563
|
|
|
1896
|
-
def glHint(p0: int, p1: int):
|
|
1897
|
-
"""
|
|
1898
|
-
|
|
1899
|
-
:type p0: int
|
|
1900
|
-
:type p1: int
|
|
1901
|
-
"""
|
|
1902
|
-
|
|
1903
|
-
...
|
|
1904
|
-
|
|
1905
1564
|
def glIsBuffer(p0: int) -> bool:
|
|
1906
1565
|
"""
|
|
1907
1566
|
|
|
@@ -1920,15 +1579,6 @@ def glIsEnabled(cap: set[str]):
|
|
|
1920
1579
|
|
|
1921
1580
|
...
|
|
1922
1581
|
|
|
1923
|
-
def glIsEnabled(p0: int) -> bool:
|
|
1924
|
-
"""
|
|
1925
|
-
|
|
1926
|
-
:type p0: int
|
|
1927
|
-
:rtype: bool
|
|
1928
|
-
"""
|
|
1929
|
-
|
|
1930
|
-
...
|
|
1931
|
-
|
|
1932
1582
|
def glIsProgram(program: int):
|
|
1933
1583
|
"""Determines if a name corresponds to a program object`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glIsProgram.xhtml>`__
|
|
1934
1584
|
|
|
@@ -1938,15 +1588,6 @@ def glIsProgram(program: int):
|
|
|
1938
1588
|
|
|
1939
1589
|
...
|
|
1940
1590
|
|
|
1941
|
-
def glIsProgram(p0: int) -> bool:
|
|
1942
|
-
"""
|
|
1943
|
-
|
|
1944
|
-
:type p0: int
|
|
1945
|
-
:rtype: bool
|
|
1946
|
-
"""
|
|
1947
|
-
|
|
1948
|
-
...
|
|
1949
|
-
|
|
1950
1591
|
def glIsQuery(p0: int) -> bool:
|
|
1951
1592
|
"""
|
|
1952
1593
|
|
|
@@ -1965,15 +1606,6 @@ def glIsShader(shader: int):
|
|
|
1965
1606
|
|
|
1966
1607
|
...
|
|
1967
1608
|
|
|
1968
|
-
def glIsShader(p0: int) -> bool:
|
|
1969
|
-
"""
|
|
1970
|
-
|
|
1971
|
-
:type p0: int
|
|
1972
|
-
:rtype: bool
|
|
1973
|
-
"""
|
|
1974
|
-
|
|
1975
|
-
...
|
|
1976
|
-
|
|
1977
1609
|
def glIsTexture(texture: int):
|
|
1978
1610
|
"""Determine if a name corresponds to a texture`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glIsTexture.xhtml>`__
|
|
1979
1611
|
|
|
@@ -1983,15 +1615,6 @@ def glIsTexture(texture: int):
|
|
|
1983
1615
|
|
|
1984
1616
|
...
|
|
1985
1617
|
|
|
1986
|
-
def glIsTexture(p0: int) -> bool:
|
|
1987
|
-
"""
|
|
1988
|
-
|
|
1989
|
-
:type p0: int
|
|
1990
|
-
:rtype: bool
|
|
1991
|
-
"""
|
|
1992
|
-
|
|
1993
|
-
...
|
|
1994
|
-
|
|
1995
1618
|
def glIsVertexArray(p0: int) -> bool:
|
|
1996
1619
|
"""
|
|
1997
1620
|
|
|
@@ -2039,14 +1662,6 @@ def glLineWidth(width: float):
|
|
|
2039
1662
|
|
|
2040
1663
|
...
|
|
2041
1664
|
|
|
2042
|
-
def glLineWidth(p0: float):
|
|
2043
|
-
"""
|
|
2044
|
-
|
|
2045
|
-
:type p0: float
|
|
2046
|
-
"""
|
|
2047
|
-
|
|
2048
|
-
...
|
|
2049
|
-
|
|
2050
1665
|
def glLinkProgram(program: int):
|
|
2051
1666
|
"""Links a program object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glLinkProgram.xhtml>`__
|
|
2052
1667
|
|
|
@@ -2056,14 +1671,6 @@ def glLinkProgram(program: int):
|
|
|
2056
1671
|
|
|
2057
1672
|
...
|
|
2058
1673
|
|
|
2059
|
-
def glLinkProgram(p0: int):
|
|
2060
|
-
"""
|
|
2061
|
-
|
|
2062
|
-
:type p0: int
|
|
2063
|
-
"""
|
|
2064
|
-
|
|
2065
|
-
...
|
|
2066
|
-
|
|
2067
1674
|
def glLoadMatrix(m: Buffer):
|
|
2068
1675
|
"""B{glLoadMatrixd, glLoadMatixf}Replace the current matrix with the specified matrix`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glLoadMatrix.xhtml>`__
|
|
2069
1676
|
|
|
@@ -2083,14 +1690,6 @@ def glLogicOp(opcode: set[str]):
|
|
|
2083
1690
|
|
|
2084
1691
|
...
|
|
2085
1692
|
|
|
2086
|
-
def glLogicOp(p0: int):
|
|
2087
|
-
"""
|
|
2088
|
-
|
|
2089
|
-
:type p0: int
|
|
2090
|
-
"""
|
|
2091
|
-
|
|
2092
|
-
...
|
|
2093
|
-
|
|
2094
1693
|
def glMap1(
|
|
2095
1694
|
target: set[str], u1: typing.Any, u2, stride: int, order: int, points: Buffer
|
|
2096
1695
|
):
|
|
@@ -2295,14 +1894,6 @@ def glPointSize(size: float):
|
|
|
2295
1894
|
|
|
2296
1895
|
...
|
|
2297
1896
|
|
|
2298
|
-
def glPointSize(p0: float):
|
|
2299
|
-
"""
|
|
2300
|
-
|
|
2301
|
-
:type p0: float
|
|
2302
|
-
"""
|
|
2303
|
-
|
|
2304
|
-
...
|
|
2305
|
-
|
|
2306
1897
|
def glPolygonMode(face: set[str], mode: set[str]):
|
|
2307
1898
|
"""Select a polygon rasterization mode`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glPolygonMode.xhtml>`__
|
|
2308
1899
|
|
|
@@ -2317,15 +1908,6 @@ def glPolygonMode(face: set[str], mode: set[str]):
|
|
|
2317
1908
|
|
|
2318
1909
|
...
|
|
2319
1910
|
|
|
2320
|
-
def glPolygonMode(p0: int, p1: int):
|
|
2321
|
-
"""
|
|
2322
|
-
|
|
2323
|
-
:type p0: int
|
|
2324
|
-
:type p1: int
|
|
2325
|
-
"""
|
|
2326
|
-
|
|
2327
|
-
...
|
|
2328
|
-
|
|
2329
1911
|
def glPolygonOffset(factor: float, units: float):
|
|
2330
1912
|
"""Set the scale and units used to calculate depth values`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glPolygonOffset.xhtml>`__
|
|
2331
1913
|
|
|
@@ -2339,15 +1921,6 @@ def glPolygonOffset(factor: float, units: float):
|
|
|
2339
1921
|
|
|
2340
1922
|
...
|
|
2341
1923
|
|
|
2342
|
-
def glPolygonOffset(p0: float, p1: float):
|
|
2343
|
-
"""
|
|
2344
|
-
|
|
2345
|
-
:type p0: float
|
|
2346
|
-
:type p1: float
|
|
2347
|
-
"""
|
|
2348
|
-
|
|
2349
|
-
...
|
|
2350
|
-
|
|
2351
1924
|
def glRasterPos(x: typing.Any, y, z, w):
|
|
2352
1925
|
"""B{glRasterPos2d, glRasterPos2f, glRasterPos2i, glRasterPos2s, glRasterPos3d,
|
|
2353
1926
|
glRasterPos3f, glRasterPos3i, glRasterPos3s, glRasterPos4d, glRasterPos4f,
|
|
@@ -2372,14 +1945,6 @@ def glReadBuffer(mode: set[str]):
|
|
|
2372
1945
|
|
|
2373
1946
|
...
|
|
2374
1947
|
|
|
2375
|
-
def glReadBuffer(p0: int):
|
|
2376
|
-
"""
|
|
2377
|
-
|
|
2378
|
-
:type p0: int
|
|
2379
|
-
"""
|
|
2380
|
-
|
|
2381
|
-
...
|
|
2382
|
-
|
|
2383
1948
|
def glReadPixels(
|
|
2384
1949
|
x: int, y, width: int, height, format: set[str], type: set[str], pixels: Buffer
|
|
2385
1950
|
):
|
|
@@ -2402,20 +1967,6 @@ def glReadPixels(
|
|
|
2402
1967
|
|
|
2403
1968
|
...
|
|
2404
1969
|
|
|
2405
|
-
def glReadPixels(p0: int, p1: int, p2: int, p3: int, p4: int, p5: int, p6: typing.Any):
|
|
2406
|
-
"""
|
|
2407
|
-
|
|
2408
|
-
:type p0: int
|
|
2409
|
-
:type p1: int
|
|
2410
|
-
:type p2: int
|
|
2411
|
-
:type p3: int
|
|
2412
|
-
:type p4: int
|
|
2413
|
-
:type p5: int
|
|
2414
|
-
:type p6: typing.Any
|
|
2415
|
-
"""
|
|
2416
|
-
|
|
2417
|
-
...
|
|
2418
|
-
|
|
2419
1970
|
def glRect(x1: typing.Any, y1, x2: typing.Any, y2, v1: typing.Any, v2):
|
|
2420
1971
|
"""B{glRectd, glRectf, glRecti, glRects, glRectdv, glRectfv, glRectiv, glRectsv}Draw a rectangle`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glRect.xhtml>`__
|
|
2421
1972
|
|
|
@@ -2492,17 +2043,6 @@ def glScissor(x: int, y, width: int, height):
|
|
|
2492
2043
|
|
|
2493
2044
|
...
|
|
2494
2045
|
|
|
2495
|
-
def glScissor(p0: int, p1: int, p2: int, p3: int):
|
|
2496
|
-
"""
|
|
2497
|
-
|
|
2498
|
-
:type p0: int
|
|
2499
|
-
:type p1: int
|
|
2500
|
-
:type p2: int
|
|
2501
|
-
:type p3: int
|
|
2502
|
-
"""
|
|
2503
|
-
|
|
2504
|
-
...
|
|
2505
|
-
|
|
2506
2046
|
def glShaderSource(shader: int, shader_string: str):
|
|
2507
2047
|
"""Replaces the source code in a shader object.`OpenGL Docs <https://www.opengl.org/sdk/docs/man/html/glShaderSource.xhtml>`__
|
|
2508
2048
|
|
|
@@ -2530,16 +2070,6 @@ def glStencilFunc(func: set[str], ref: int, mask: int):
|
|
|
2530
2070
|
|
|
2531
2071
|
...
|
|
2532
2072
|
|
|
2533
|
-
def glStencilFunc(p0: int, p1: int, p2: int):
|
|
2534
|
-
"""
|
|
2535
|
-
|
|
2536
|
-
:type p0: int
|
|
2537
|
-
:type p1: int
|
|
2538
|
-
:type p2: int
|
|
2539
|
-
"""
|
|
2540
|
-
|
|
2541
|
-
...
|
|
2542
|
-
|
|
2543
2073
|
def glStencilFuncSeparate(p0: int, p1: int, p2: int, p3: int):
|
|
2544
2074
|
"""
|
|
2545
2075
|
|
|
@@ -2561,14 +2091,6 @@ def glStencilMask(mask: int):
|
|
|
2561
2091
|
|
|
2562
2092
|
...
|
|
2563
2093
|
|
|
2564
|
-
def glStencilMask(p0: int):
|
|
2565
|
-
"""
|
|
2566
|
-
|
|
2567
|
-
:type p0: int
|
|
2568
|
-
"""
|
|
2569
|
-
|
|
2570
|
-
...
|
|
2571
|
-
|
|
2572
2094
|
def glStencilMaskSeparate(p0: int, p1: int):
|
|
2573
2095
|
"""
|
|
2574
2096
|
|
|
@@ -2598,16 +2120,6 @@ def glStencilOp(fail: set[str], zfail: set[str], zpass: set[str]):
|
|
|
2598
2120
|
|
|
2599
2121
|
...
|
|
2600
2122
|
|
|
2601
|
-
def glStencilOp(p0: int, p1: int, p2: int):
|
|
2602
|
-
"""
|
|
2603
|
-
|
|
2604
|
-
:type p0: int
|
|
2605
|
-
:type p1: int
|
|
2606
|
-
:type p2: int
|
|
2607
|
-
"""
|
|
2608
|
-
|
|
2609
|
-
...
|
|
2610
|
-
|
|
2611
2123
|
def glStencilOpSeparate(p0: int, p1: int, p2: int, p3: int):
|
|
2612
2124
|
"""
|
|
2613
2125
|
|
|
@@ -2705,23 +2217,6 @@ def glTexImage1D(
|
|
|
2705
2217
|
|
|
2706
2218
|
...
|
|
2707
2219
|
|
|
2708
|
-
def glTexImage1D(
|
|
2709
|
-
p0: int, p1: int, p2: int, p3: int, p4: int, p5: int, p6: int, p7: typing.Any
|
|
2710
|
-
):
|
|
2711
|
-
"""
|
|
2712
|
-
|
|
2713
|
-
:type p0: int
|
|
2714
|
-
:type p1: int
|
|
2715
|
-
:type p2: int
|
|
2716
|
-
:type p3: int
|
|
2717
|
-
:type p4: int
|
|
2718
|
-
:type p5: int
|
|
2719
|
-
:type p6: int
|
|
2720
|
-
:type p7: typing.Any
|
|
2721
|
-
"""
|
|
2722
|
-
|
|
2723
|
-
...
|
|
2724
|
-
|
|
2725
2220
|
def glTexImage2D(
|
|
2726
2221
|
target: set[str],
|
|
2727
2222
|
level: int,
|
|
@@ -2762,32 +2257,6 @@ def glTexImage2D(
|
|
|
2762
2257
|
|
|
2763
2258
|
...
|
|
2764
2259
|
|
|
2765
|
-
def glTexImage2D(
|
|
2766
|
-
p0: int,
|
|
2767
|
-
p1: int,
|
|
2768
|
-
p2: int,
|
|
2769
|
-
p3: int,
|
|
2770
|
-
p4: int,
|
|
2771
|
-
p5: int,
|
|
2772
|
-
p6: int,
|
|
2773
|
-
p7: int,
|
|
2774
|
-
p8: typing.Any,
|
|
2775
|
-
):
|
|
2776
|
-
"""
|
|
2777
|
-
|
|
2778
|
-
:type p0: int
|
|
2779
|
-
:type p1: int
|
|
2780
|
-
:type p2: int
|
|
2781
|
-
:type p3: int
|
|
2782
|
-
:type p4: int
|
|
2783
|
-
:type p5: int
|
|
2784
|
-
:type p6: int
|
|
2785
|
-
:type p7: int
|
|
2786
|
-
:type p8: typing.Any
|
|
2787
|
-
"""
|
|
2788
|
-
|
|
2789
|
-
...
|
|
2790
|
-
|
|
2791
2260
|
def glTexImage2DMultisample(p0: int, p1: int, p2: int, p3: int, p4: int, p5: bool):
|
|
2792
2261
|
"""
|
|
2793
2262
|
|
|
@@ -3271,14 +2740,6 @@ def glUseProgram(program: int):
|
|
|
3271
2740
|
|
|
3272
2741
|
...
|
|
3273
2742
|
|
|
3274
|
-
def glUseProgram(p0: int):
|
|
3275
|
-
"""
|
|
3276
|
-
|
|
3277
|
-
:type p0: int
|
|
3278
|
-
"""
|
|
3279
|
-
|
|
3280
|
-
...
|
|
3281
|
-
|
|
3282
2743
|
def glValidateProgram(program: int):
|
|
3283
2744
|
"""Validates a program object`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glValidateProgram.xhtml>`__
|
|
3284
2745
|
|
|
@@ -3288,14 +2749,6 @@ def glValidateProgram(program: int):
|
|
|
3288
2749
|
|
|
3289
2750
|
...
|
|
3290
2751
|
|
|
3291
|
-
def glValidateProgram(p0: int):
|
|
3292
|
-
"""
|
|
3293
|
-
|
|
3294
|
-
:type p0: int
|
|
3295
|
-
"""
|
|
3296
|
-
|
|
3297
|
-
...
|
|
3298
|
-
|
|
3299
2752
|
def glVertexAttrib1d(p0: int, p1: float):
|
|
3300
2753
|
"""
|
|
3301
2754
|
|
|
@@ -3680,17 +3133,6 @@ def glViewport(x: int, y, width: int, height):
|
|
|
3680
3133
|
|
|
3681
3134
|
...
|
|
3682
3135
|
|
|
3683
|
-
def glViewport(p0: int, p1: int, p2: int, p3: int):
|
|
3684
|
-
"""
|
|
3685
|
-
|
|
3686
|
-
:type p0: int
|
|
3687
|
-
:type p1: int
|
|
3688
|
-
:type p2: int
|
|
3689
|
-
:type p3: int
|
|
3690
|
-
"""
|
|
3691
|
-
|
|
3692
|
-
...
|
|
3693
|
-
|
|
3694
3136
|
GL_ACTIVE_ATTRIBUTES: float
|
|
3695
3137
|
|
|
3696
3138
|
GL_ACTIVE_ATTRIBUTE_MAX_LENGTH: float
|