Add files using upload-large-folder tool
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- parrot/share/terminfo/x/xerox1720 +0 -0
- parrot/share/terminfo/x/xl83 +0 -0
- parrot/share/terminfo/x/xnuppc-144x48-m +0 -0
- parrot/share/terminfo/x/xterm+256color +0 -0
- parrot/share/terminfo/x/xterm+meta +0 -0
- parrot/share/terminfo/x/xterm-256color +0 -0
- parrot/share/terminfo/x/xterm-pcolor +0 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/__init__.cpython-310.pyc +0 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/blend_minmax.cpython-310.pyc +0 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/discard_framebuffer.cpython-310.pyc +0 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/map_buffer_range.cpython-310.pyc +0 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/multi_draw_arrays.cpython-310.pyc +0 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/multisampled_render_to_texture.cpython-310.pyc +0 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/read_format_bgra.cpython-310.pyc +0 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/robustness.cpython-310.pyc +0 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/sRGB.cpython-310.pyc +0 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/texture_compression_dxt1.cpython-310.pyc +0 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/texture_filter_anisotropic.cpython-310.pyc +0 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/texture_format_BGRA8888.cpython-310.pyc +0 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/texture_lod_bias.cpython-310.pyc +0 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/texture_storage.cpython-310.pyc +0 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/blend_minmax.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/map_buffer_range.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/multi_draw_arrays.py +36 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/robustness.py +34 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/sRGB.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/texture_filter_anisotropic.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/texture_format_BGRA8888.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/texture_lod_bias.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/EGL_image_external.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/__init__.py +1 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/blend_equation_separate.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/blend_func_separate.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/blend_subtract.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/byte_coordinates.py +55 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/compressed_ETC1_RGB8_texture.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/compressed_paletted_texture.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/depth24.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/depth32.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/draw_texture.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/element_index_uint.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/extended_matrix_palette.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/fbo_render_mipmap.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/fixed_point.py +208 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/framebuffer_object.py +46 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/matrix_get.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/matrix_palette.py +30 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/packed_depth_stencil.py +23 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/point_size_array.py +26 -0
- vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/point_sprite.py +23 -0
parrot/share/terminfo/x/xerox1720
ADDED
|
Binary file (356 Bytes). View file
|
|
|
parrot/share/terminfo/x/xl83
ADDED
|
Binary file (414 Bytes). View file
|
|
|
parrot/share/terminfo/x/xnuppc-144x48-m
ADDED
|
Binary file (987 Bytes). View file
|
|
|
parrot/share/terminfo/x/xterm+256color
ADDED
|
Binary file (1.1 kB). View file
|
|
|
parrot/share/terminfo/x/xterm+meta
ADDED
|
Binary file (276 Bytes). View file
|
|
|
parrot/share/terminfo/x/xterm-256color
ADDED
|
Binary file (3.91 kB). View file
|
|
|
parrot/share/terminfo/x/xterm-pcolor
ADDED
|
Binary file (1.66 kB). View file
|
|
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/__init__.cpython-310.pyc
ADDED
|
Binary file (195 Bytes). View file
|
|
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/blend_minmax.cpython-310.pyc
ADDED
|
Binary file (997 Bytes). View file
|
|
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/discard_framebuffer.cpython-310.pyc
ADDED
|
Binary file (1.12 kB). View file
|
|
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/map_buffer_range.cpython-310.pyc
ADDED
|
Binary file (1.02 kB). View file
|
|
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/multi_draw_arrays.cpython-310.pyc
ADDED
|
Binary file (1.19 kB). View file
|
|
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/multisampled_render_to_texture.cpython-310.pyc
ADDED
|
Binary file (1.1 kB). View file
|
|
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/read_format_bgra.cpython-310.pyc
ADDED
|
Binary file (1.02 kB). View file
|
|
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/robustness.cpython-310.pyc
ADDED
|
Binary file (1.15 kB). View file
|
|
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/sRGB.cpython-310.pyc
ADDED
|
Binary file (947 Bytes). View file
|
|
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/texture_compression_dxt1.cpython-310.pyc
ADDED
|
Binary file (1.07 kB). View file
|
|
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/texture_filter_anisotropic.cpython-310.pyc
ADDED
|
Binary file (1.08 kB). View file
|
|
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/texture_format_BGRA8888.cpython-310.pyc
ADDED
|
Binary file (1.06 kB). View file
|
|
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/texture_lod_bias.cpython-310.pyc
ADDED
|
Binary file (1.02 kB). View file
|
|
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/__pycache__/texture_storage.cpython-310.pyc
ADDED
|
Binary file (1.02 kB). View file
|
|
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/blend_minmax.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension EXT.blend_minmax
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.EXT.blend_minmax to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/EXT/blend_minmax.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.EXT.blend_minmax import *
|
| 15 |
+
from OpenGL.raw.GLES1.EXT.blend_minmax import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitBlendMinmaxEXT():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/map_buffer_range.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension EXT.map_buffer_range
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.EXT.map_buffer_range to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/EXT/map_buffer_range.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.EXT.map_buffer_range import *
|
| 15 |
+
from OpenGL.raw.GLES1.EXT.map_buffer_range import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitMapBufferRangeEXT():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/multi_draw_arrays.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension EXT.multi_draw_arrays
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.EXT.multi_draw_arrays to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/EXT/multi_draw_arrays.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.EXT.multi_draw_arrays import *
|
| 15 |
+
from OpenGL.raw.GLES1.EXT.multi_draw_arrays import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitMultiDrawArraysEXT():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
# INPUT glMultiDrawArraysEXT.count size not checked against 'primcount'
|
| 23 |
+
# INPUT glMultiDrawArraysEXT.first size not checked against 'primcount'
|
| 24 |
+
glMultiDrawArraysEXT=wrapper.wrapper(glMultiDrawArraysEXT).setInputArraySize(
|
| 25 |
+
'count', None
|
| 26 |
+
).setInputArraySize(
|
| 27 |
+
'first', None
|
| 28 |
+
)
|
| 29 |
+
# INPUT glMultiDrawElementsEXT.count size not checked against 'primcount'
|
| 30 |
+
# INPUT glMultiDrawElementsEXT.indices size not checked against 'primcount'
|
| 31 |
+
glMultiDrawElementsEXT=wrapper.wrapper(glMultiDrawElementsEXT).setInputArraySize(
|
| 32 |
+
'count', None
|
| 33 |
+
).setInputArraySize(
|
| 34 |
+
'indices', None
|
| 35 |
+
)
|
| 36 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/robustness.py
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension EXT.robustness
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.EXT.robustness to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/EXT/robustness.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.EXT.robustness import *
|
| 15 |
+
from OpenGL.raw.GLES1.EXT.robustness import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitRobustnessEXT():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
# INPUT glReadnPixelsEXT.data size not checked against bufSize
|
| 23 |
+
glReadnPixelsEXT=wrapper.wrapper(glReadnPixelsEXT).setInputArraySize(
|
| 24 |
+
'data', None
|
| 25 |
+
)
|
| 26 |
+
# INPUT glGetnUniformfvEXT.params size not checked against bufSize
|
| 27 |
+
glGetnUniformfvEXT=wrapper.wrapper(glGetnUniformfvEXT).setInputArraySize(
|
| 28 |
+
'params', None
|
| 29 |
+
)
|
| 30 |
+
# INPUT glGetnUniformivEXT.params size not checked against bufSize
|
| 31 |
+
glGetnUniformivEXT=wrapper.wrapper(glGetnUniformivEXT).setInputArraySize(
|
| 32 |
+
'params', None
|
| 33 |
+
)
|
| 34 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/sRGB.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension EXT.sRGB
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.EXT.sRGB to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/EXT/sRGB.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.EXT.sRGB import *
|
| 15 |
+
from OpenGL.raw.GLES1.EXT.sRGB import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitSrgbEXT():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/texture_filter_anisotropic.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension EXT.texture_filter_anisotropic
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.EXT.texture_filter_anisotropic to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/EXT/texture_filter_anisotropic.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.EXT.texture_filter_anisotropic import *
|
| 15 |
+
from OpenGL.raw.GLES1.EXT.texture_filter_anisotropic import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitTextureFilterAnisotropicEXT():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/texture_format_BGRA8888.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension EXT.texture_format_BGRA8888
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.EXT.texture_format_BGRA8888 to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/EXT/texture_format_BGRA8888.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.EXT.texture_format_BGRA8888 import *
|
| 15 |
+
from OpenGL.raw.GLES1.EXT.texture_format_BGRA8888 import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitTextureFormatBgra8888EXT():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/EXT/texture_lod_bias.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension EXT.texture_lod_bias
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.EXT.texture_lod_bias to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/EXT/texture_lod_bias.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.EXT.texture_lod_bias import *
|
| 15 |
+
from OpenGL.raw.GLES1.EXT.texture_lod_bias import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitTextureLodBiasEXT():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/EGL_image_external.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.EGL_image_external
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.EGL_image_external to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/EGL_image_external.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.EGL_image_external import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.EGL_image_external import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitEglImageExternalOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
"""OpenGL Extensions"""
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/blend_equation_separate.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.blend_equation_separate
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.blend_equation_separate to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/blend_equation_separate.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.blend_equation_separate import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.blend_equation_separate import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitBlendEquationSeparateOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/blend_func_separate.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.blend_func_separate
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.blend_func_separate to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/blend_func_separate.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.blend_func_separate import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.blend_func_separate import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitBlendFuncSeparateOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/blend_subtract.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.blend_subtract
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.blend_subtract to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/blend_subtract.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.blend_subtract import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.blend_subtract import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitBlendSubtractOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/byte_coordinates.py
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.byte_coordinates
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.byte_coordinates to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/byte_coordinates.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.byte_coordinates import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.byte_coordinates import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitByteCoordinatesOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
glMultiTexCoord1bvOES=wrapper.wrapper(glMultiTexCoord1bvOES).setInputArraySize(
|
| 23 |
+
'coords', 1
|
| 24 |
+
)
|
| 25 |
+
glMultiTexCoord2bvOES=wrapper.wrapper(glMultiTexCoord2bvOES).setInputArraySize(
|
| 26 |
+
'coords', 2
|
| 27 |
+
)
|
| 28 |
+
glMultiTexCoord3bvOES=wrapper.wrapper(glMultiTexCoord3bvOES).setInputArraySize(
|
| 29 |
+
'coords', 3
|
| 30 |
+
)
|
| 31 |
+
glMultiTexCoord4bvOES=wrapper.wrapper(glMultiTexCoord4bvOES).setInputArraySize(
|
| 32 |
+
'coords', 4
|
| 33 |
+
)
|
| 34 |
+
glTexCoord1bvOES=wrapper.wrapper(glTexCoord1bvOES).setInputArraySize(
|
| 35 |
+
'coords', 1
|
| 36 |
+
)
|
| 37 |
+
glTexCoord2bvOES=wrapper.wrapper(glTexCoord2bvOES).setInputArraySize(
|
| 38 |
+
'coords', 2
|
| 39 |
+
)
|
| 40 |
+
glTexCoord3bvOES=wrapper.wrapper(glTexCoord3bvOES).setInputArraySize(
|
| 41 |
+
'coords', 3
|
| 42 |
+
)
|
| 43 |
+
glTexCoord4bvOES=wrapper.wrapper(glTexCoord4bvOES).setInputArraySize(
|
| 44 |
+
'coords', 4
|
| 45 |
+
)
|
| 46 |
+
glVertex2bvOES=wrapper.wrapper(glVertex2bvOES).setInputArraySize(
|
| 47 |
+
'coords', 2
|
| 48 |
+
)
|
| 49 |
+
glVertex3bvOES=wrapper.wrapper(glVertex3bvOES).setInputArraySize(
|
| 50 |
+
'coords', 3
|
| 51 |
+
)
|
| 52 |
+
glVertex4bvOES=wrapper.wrapper(glVertex4bvOES).setInputArraySize(
|
| 53 |
+
'coords', 4
|
| 54 |
+
)
|
| 55 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/compressed_ETC1_RGB8_texture.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.compressed_ETC1_RGB8_texture
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.compressed_ETC1_RGB8_texture to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/compressed_ETC1_RGB8_texture.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.compressed_ETC1_RGB8_texture import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.compressed_ETC1_RGB8_texture import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitCompressedEtc1Rgb8TextureOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/compressed_paletted_texture.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.compressed_paletted_texture
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.compressed_paletted_texture to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/compressed_paletted_texture.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.compressed_paletted_texture import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.compressed_paletted_texture import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitCompressedPalettedTextureOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/depth24.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.depth24
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.depth24 to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/depth24.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.depth24 import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.depth24 import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitDepth24OES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/depth32.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.depth32
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.depth32 to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/depth32.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.depth32 import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.depth32 import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitDepth32OES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/draw_texture.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.draw_texture
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.draw_texture to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/draw_texture.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.draw_texture import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.draw_texture import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitDrawTextureOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/element_index_uint.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.element_index_uint
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.element_index_uint to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/element_index_uint.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.element_index_uint import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.element_index_uint import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitElementIndexUintOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/extended_matrix_palette.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.extended_matrix_palette
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.extended_matrix_palette to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/extended_matrix_palette.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.extended_matrix_palette import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.extended_matrix_palette import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitExtendedMatrixPaletteOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/fbo_render_mipmap.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.fbo_render_mipmap
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.fbo_render_mipmap to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/fbo_render_mipmap.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.fbo_render_mipmap import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.fbo_render_mipmap import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitFboRenderMipmapOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/fixed_point.py
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.fixed_point
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.fixed_point to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/fixed_point.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.fixed_point import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.fixed_point import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitFixedPointOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
glClipPlanexOES=wrapper.wrapper(glClipPlanexOES).setInputArraySize(
|
| 23 |
+
'equation', 4
|
| 24 |
+
)
|
| 25 |
+
# INPUT glFogxvOES.param size not checked against 'pname'
|
| 26 |
+
glFogxvOES=wrapper.wrapper(glFogxvOES).setInputArraySize(
|
| 27 |
+
'param', None
|
| 28 |
+
)
|
| 29 |
+
glGetClipPlanexOES=wrapper.wrapper(glGetClipPlanexOES).setInputArraySize(
|
| 30 |
+
'equation', 4
|
| 31 |
+
)
|
| 32 |
+
# INPUT glGetFixedvOES.params size not checked against 'pname'
|
| 33 |
+
glGetFixedvOES=wrapper.wrapper(glGetFixedvOES).setInputArraySize(
|
| 34 |
+
'params', None
|
| 35 |
+
)
|
| 36 |
+
# INPUT glGetTexEnvxvOES.params size not checked against 'pname'
|
| 37 |
+
glGetTexEnvxvOES=wrapper.wrapper(glGetTexEnvxvOES).setInputArraySize(
|
| 38 |
+
'params', None
|
| 39 |
+
)
|
| 40 |
+
# INPUT glGetTexParameterxvOES.params size not checked against 'pname'
|
| 41 |
+
glGetTexParameterxvOES=wrapper.wrapper(glGetTexParameterxvOES).setInputArraySize(
|
| 42 |
+
'params', None
|
| 43 |
+
)
|
| 44 |
+
# INPUT glLightModelxvOES.param size not checked against 'pname'
|
| 45 |
+
glLightModelxvOES=wrapper.wrapper(glLightModelxvOES).setInputArraySize(
|
| 46 |
+
'param', None
|
| 47 |
+
)
|
| 48 |
+
# INPUT glLightxvOES.params size not checked against 'pname'
|
| 49 |
+
glLightxvOES=wrapper.wrapper(glLightxvOES).setInputArraySize(
|
| 50 |
+
'params', None
|
| 51 |
+
)
|
| 52 |
+
glLoadMatrixxOES=wrapper.wrapper(glLoadMatrixxOES).setInputArraySize(
|
| 53 |
+
'm', 16
|
| 54 |
+
)
|
| 55 |
+
# INPUT glMaterialxvOES.param size not checked against 'pname'
|
| 56 |
+
glMaterialxvOES=wrapper.wrapper(glMaterialxvOES).setInputArraySize(
|
| 57 |
+
'param', None
|
| 58 |
+
)
|
| 59 |
+
glMultMatrixxOES=wrapper.wrapper(glMultMatrixxOES).setInputArraySize(
|
| 60 |
+
'm', 16
|
| 61 |
+
)
|
| 62 |
+
# INPUT glPointParameterxvOES.params size not checked against 'pname'
|
| 63 |
+
glPointParameterxvOES=wrapper.wrapper(glPointParameterxvOES).setInputArraySize(
|
| 64 |
+
'params', None
|
| 65 |
+
)
|
| 66 |
+
# INPUT glTexEnvxvOES.params size not checked against 'pname'
|
| 67 |
+
glTexEnvxvOES=wrapper.wrapper(glTexEnvxvOES).setInputArraySize(
|
| 68 |
+
'params', None
|
| 69 |
+
)
|
| 70 |
+
# INPUT glTexParameterxvOES.params size not checked against 'pname'
|
| 71 |
+
glTexParameterxvOES=wrapper.wrapper(glTexParameterxvOES).setInputArraySize(
|
| 72 |
+
'params', None
|
| 73 |
+
)
|
| 74 |
+
# INPUT glGetLightxvOES.params size not checked against 'pname'
|
| 75 |
+
glGetLightxvOES=wrapper.wrapper(glGetLightxvOES).setInputArraySize(
|
| 76 |
+
'params', None
|
| 77 |
+
)
|
| 78 |
+
# INPUT glGetMaterialxvOES.params size not checked against 'pname'
|
| 79 |
+
glGetMaterialxvOES=wrapper.wrapper(glGetMaterialxvOES).setInputArraySize(
|
| 80 |
+
'params', None
|
| 81 |
+
)
|
| 82 |
+
# INPUT glBitmapxOES.bitmap size not checked against 'width,height'
|
| 83 |
+
glBitmapxOES=wrapper.wrapper(glBitmapxOES).setInputArraySize(
|
| 84 |
+
'bitmap', None
|
| 85 |
+
)
|
| 86 |
+
glColor3xvOES=wrapper.wrapper(glColor3xvOES).setInputArraySize(
|
| 87 |
+
'components', 3
|
| 88 |
+
)
|
| 89 |
+
glColor4xvOES=wrapper.wrapper(glColor4xvOES).setInputArraySize(
|
| 90 |
+
'components', 4
|
| 91 |
+
)
|
| 92 |
+
# INPUT glConvolutionParameterxvOES.params size not checked against 'pname'
|
| 93 |
+
glConvolutionParameterxvOES=wrapper.wrapper(glConvolutionParameterxvOES).setInputArraySize(
|
| 94 |
+
'params', None
|
| 95 |
+
)
|
| 96 |
+
glEvalCoord1xvOES=wrapper.wrapper(glEvalCoord1xvOES).setInputArraySize(
|
| 97 |
+
'coords', 1
|
| 98 |
+
)
|
| 99 |
+
glEvalCoord2xvOES=wrapper.wrapper(glEvalCoord2xvOES).setInputArraySize(
|
| 100 |
+
'coords', 2
|
| 101 |
+
)
|
| 102 |
+
# INPUT glFeedbackBufferxOES.buffer size not checked against n
|
| 103 |
+
glFeedbackBufferxOES=wrapper.wrapper(glFeedbackBufferxOES).setInputArraySize(
|
| 104 |
+
'buffer', None
|
| 105 |
+
)
|
| 106 |
+
# INPUT glGetConvolutionParameterxvOES.params size not checked against 'pname'
|
| 107 |
+
glGetConvolutionParameterxvOES=wrapper.wrapper(glGetConvolutionParameterxvOES).setInputArraySize(
|
| 108 |
+
'params', None
|
| 109 |
+
)
|
| 110 |
+
# INPUT glGetHistogramParameterxvOES.params size not checked against 'pname'
|
| 111 |
+
glGetHistogramParameterxvOES=wrapper.wrapper(glGetHistogramParameterxvOES).setInputArraySize(
|
| 112 |
+
'params', None
|
| 113 |
+
)
|
| 114 |
+
# INPUT glGetLightxOES.params size not checked against 'pname'
|
| 115 |
+
glGetLightxOES=wrapper.wrapper(glGetLightxOES).setInputArraySize(
|
| 116 |
+
'params', None
|
| 117 |
+
)
|
| 118 |
+
# INPUT glGetMapxvOES.v size not checked against 'query'
|
| 119 |
+
glGetMapxvOES=wrapper.wrapper(glGetMapxvOES).setInputArraySize(
|
| 120 |
+
'v', None
|
| 121 |
+
)
|
| 122 |
+
# INPUT glGetPixelMapxv.values size not checked against size
|
| 123 |
+
glGetPixelMapxv=wrapper.wrapper(glGetPixelMapxv).setInputArraySize(
|
| 124 |
+
'values', None
|
| 125 |
+
)
|
| 126 |
+
# INPUT glGetTexGenxvOES.params size not checked against 'pname'
|
| 127 |
+
glGetTexGenxvOES=wrapper.wrapper(glGetTexGenxvOES).setInputArraySize(
|
| 128 |
+
'params', None
|
| 129 |
+
)
|
| 130 |
+
# INPUT glGetTexLevelParameterxvOES.params size not checked against 'pname'
|
| 131 |
+
glGetTexLevelParameterxvOES=wrapper.wrapper(glGetTexLevelParameterxvOES).setInputArraySize(
|
| 132 |
+
'params', None
|
| 133 |
+
)
|
| 134 |
+
glIndexxvOES=wrapper.wrapper(glIndexxvOES).setInputArraySize(
|
| 135 |
+
'component', 1
|
| 136 |
+
)
|
| 137 |
+
glLoadTransposeMatrixxOES=wrapper.wrapper(glLoadTransposeMatrixxOES).setInputArraySize(
|
| 138 |
+
'm', 16
|
| 139 |
+
)
|
| 140 |
+
glMultTransposeMatrixxOES=wrapper.wrapper(glMultTransposeMatrixxOES).setInputArraySize(
|
| 141 |
+
'm', 16
|
| 142 |
+
)
|
| 143 |
+
glMultiTexCoord1xvOES=wrapper.wrapper(glMultiTexCoord1xvOES).setInputArraySize(
|
| 144 |
+
'coords', 1
|
| 145 |
+
)
|
| 146 |
+
glMultiTexCoord2xvOES=wrapper.wrapper(glMultiTexCoord2xvOES).setInputArraySize(
|
| 147 |
+
'coords', 2
|
| 148 |
+
)
|
| 149 |
+
glMultiTexCoord3xvOES=wrapper.wrapper(glMultiTexCoord3xvOES).setInputArraySize(
|
| 150 |
+
'coords', 3
|
| 151 |
+
)
|
| 152 |
+
glMultiTexCoord4xvOES=wrapper.wrapper(glMultiTexCoord4xvOES).setInputArraySize(
|
| 153 |
+
'coords', 4
|
| 154 |
+
)
|
| 155 |
+
glNormal3xvOES=wrapper.wrapper(glNormal3xvOES).setInputArraySize(
|
| 156 |
+
'coords', 3
|
| 157 |
+
)
|
| 158 |
+
# INPUT glPixelMapx.values size not checked against size
|
| 159 |
+
glPixelMapx=wrapper.wrapper(glPixelMapx).setInputArraySize(
|
| 160 |
+
'values', None
|
| 161 |
+
)
|
| 162 |
+
# INPUT glPrioritizeTexturesxOES.textures size not checked against n
|
| 163 |
+
# INPUT glPrioritizeTexturesxOES.priorities size not checked against n
|
| 164 |
+
glPrioritizeTexturesxOES=wrapper.wrapper(glPrioritizeTexturesxOES).setInputArraySize(
|
| 165 |
+
'textures', None
|
| 166 |
+
).setInputArraySize(
|
| 167 |
+
'priorities', None
|
| 168 |
+
)
|
| 169 |
+
glRasterPos2xvOES=wrapper.wrapper(glRasterPos2xvOES).setInputArraySize(
|
| 170 |
+
'coords', 2
|
| 171 |
+
)
|
| 172 |
+
glRasterPos3xvOES=wrapper.wrapper(glRasterPos3xvOES).setInputArraySize(
|
| 173 |
+
'coords', 3
|
| 174 |
+
)
|
| 175 |
+
glRasterPos4xvOES=wrapper.wrapper(glRasterPos4xvOES).setInputArraySize(
|
| 176 |
+
'coords', 4
|
| 177 |
+
)
|
| 178 |
+
glRectxvOES=wrapper.wrapper(glRectxvOES).setInputArraySize(
|
| 179 |
+
'v1', 2
|
| 180 |
+
).setInputArraySize(
|
| 181 |
+
'v2', 2
|
| 182 |
+
)
|
| 183 |
+
glTexCoord1xvOES=wrapper.wrapper(glTexCoord1xvOES).setInputArraySize(
|
| 184 |
+
'coords', 1
|
| 185 |
+
)
|
| 186 |
+
glTexCoord2xvOES=wrapper.wrapper(glTexCoord2xvOES).setInputArraySize(
|
| 187 |
+
'coords', 2
|
| 188 |
+
)
|
| 189 |
+
glTexCoord3xvOES=wrapper.wrapper(glTexCoord3xvOES).setInputArraySize(
|
| 190 |
+
'coords', 3
|
| 191 |
+
)
|
| 192 |
+
glTexCoord4xvOES=wrapper.wrapper(glTexCoord4xvOES).setInputArraySize(
|
| 193 |
+
'coords', 4
|
| 194 |
+
)
|
| 195 |
+
# INPUT glTexGenxvOES.params size not checked against 'pname'
|
| 196 |
+
glTexGenxvOES=wrapper.wrapper(glTexGenxvOES).setInputArraySize(
|
| 197 |
+
'params', None
|
| 198 |
+
)
|
| 199 |
+
glVertex2xvOES=wrapper.wrapper(glVertex2xvOES).setInputArraySize(
|
| 200 |
+
'coords', 2
|
| 201 |
+
)
|
| 202 |
+
glVertex3xvOES=wrapper.wrapper(glVertex3xvOES).setInputArraySize(
|
| 203 |
+
'coords', 3
|
| 204 |
+
)
|
| 205 |
+
glVertex4xvOES=wrapper.wrapper(glVertex4xvOES).setInputArraySize(
|
| 206 |
+
'coords', 4
|
| 207 |
+
)
|
| 208 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/framebuffer_object.py
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.framebuffer_object
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.framebuffer_object to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/framebuffer_object.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.framebuffer_object import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.framebuffer_object import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitFramebufferObjectOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
# INPUT glDeleteRenderbuffersOES.renderbuffers size not checked against n
|
| 23 |
+
glDeleteRenderbuffersOES=wrapper.wrapper(glDeleteRenderbuffersOES).setInputArraySize(
|
| 24 |
+
'renderbuffers', None
|
| 25 |
+
)
|
| 26 |
+
# INPUT glGenRenderbuffersOES.renderbuffers size not checked against n
|
| 27 |
+
glGenRenderbuffersOES=wrapper.wrapper(glGenRenderbuffersOES).setInputArraySize(
|
| 28 |
+
'renderbuffers', None
|
| 29 |
+
)
|
| 30 |
+
# INPUT glGetRenderbufferParameterivOES.params size not checked against 'pname'
|
| 31 |
+
glGetRenderbufferParameterivOES=wrapper.wrapper(glGetRenderbufferParameterivOES).setInputArraySize(
|
| 32 |
+
'params', None
|
| 33 |
+
)
|
| 34 |
+
# INPUT glDeleteFramebuffersOES.framebuffers size not checked against n
|
| 35 |
+
glDeleteFramebuffersOES=wrapper.wrapper(glDeleteFramebuffersOES).setInputArraySize(
|
| 36 |
+
'framebuffers', None
|
| 37 |
+
)
|
| 38 |
+
# INPUT glGenFramebuffersOES.framebuffers size not checked against n
|
| 39 |
+
glGenFramebuffersOES=wrapper.wrapper(glGenFramebuffersOES).setInputArraySize(
|
| 40 |
+
'framebuffers', None
|
| 41 |
+
)
|
| 42 |
+
# INPUT glGetFramebufferAttachmentParameterivOES.params size not checked against 'pname'
|
| 43 |
+
glGetFramebufferAttachmentParameterivOES=wrapper.wrapper(glGetFramebufferAttachmentParameterivOES).setInputArraySize(
|
| 44 |
+
'params', None
|
| 45 |
+
)
|
| 46 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/matrix_get.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.matrix_get
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.matrix_get to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/matrix_get.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.matrix_get import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.matrix_get import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitMatrixGetOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/matrix_palette.py
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.matrix_palette
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.matrix_palette to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/matrix_palette.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.matrix_palette import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.matrix_palette import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitMatrixPaletteOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
# INPUT glMatrixIndexPointerOES.pointer size not checked against 'size,type,stride'
|
| 23 |
+
glMatrixIndexPointerOES=wrapper.wrapper(glMatrixIndexPointerOES).setInputArraySize(
|
| 24 |
+
'pointer', None
|
| 25 |
+
)
|
| 26 |
+
# INPUT glWeightPointerOES.pointer size not checked against 'type,stride'
|
| 27 |
+
glWeightPointerOES=wrapper.wrapper(glWeightPointerOES).setInputArraySize(
|
| 28 |
+
'pointer', None
|
| 29 |
+
)
|
| 30 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/packed_depth_stencil.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.packed_depth_stencil
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.packed_depth_stencil to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/packed_depth_stencil.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.packed_depth_stencil import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.packed_depth_stencil import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitPackedDepthStencilOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/point_size_array.py
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.point_size_array
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.point_size_array to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/point_size_array.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.point_size_array import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.point_size_array import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitPointSizeArrayOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
# INPUT glPointSizePointerOES.pointer size not checked against 'type,stride'
|
| 23 |
+
glPointSizePointerOES=wrapper.wrapper(glPointSizePointerOES).setInputArraySize(
|
| 24 |
+
'pointer', None
|
| 25 |
+
)
|
| 26 |
+
### END AUTOGENERATED SECTION
|
vllm/lib/python3.10/site-packages/OpenGL/GLES1/OES/point_sprite.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
'''OpenGL extension OES.point_sprite
|
| 2 |
+
|
| 3 |
+
This module customises the behaviour of the
|
| 4 |
+
OpenGL.raw.GLES1.OES.point_sprite to provide a more
|
| 5 |
+
Python-friendly API
|
| 6 |
+
|
| 7 |
+
The official definition of this extension is available here:
|
| 8 |
+
http://www.opengl.org/registry/specs/OES/point_sprite.txt
|
| 9 |
+
'''
|
| 10 |
+
from OpenGL import platform, constant, arrays
|
| 11 |
+
from OpenGL import extensions, wrapper
|
| 12 |
+
import ctypes
|
| 13 |
+
from OpenGL.raw.GLES1 import _types, _glgets
|
| 14 |
+
from OpenGL.raw.GLES1.OES.point_sprite import *
|
| 15 |
+
from OpenGL.raw.GLES1.OES.point_sprite import _EXTENSION_NAME
|
| 16 |
+
|
| 17 |
+
def glInitPointSpriteOES():
|
| 18 |
+
'''Return boolean indicating whether this extension is available'''
|
| 19 |
+
from OpenGL import extensions
|
| 20 |
+
return extensions.hasGLExtension( _EXTENSION_NAME )
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
### END AUTOGENERATED SECTION
|