diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/__init__.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..9b912d19ef8f0e54409434cb78557ba570cae4c7 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/__init__.py @@ -0,0 +1 @@ +"""OpenGL Extensions""" \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/__pycache__/__init__.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cc5c9b726eff1b31c9044152cc9c95500b59d726 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/__pycache__/__init__.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/__pycache__/multisample.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/__pycache__/multisample.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1f741b8adecf273d1720fece98d2765d7eb26e93 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/__pycache__/multisample.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/__pycache__/tbuffer.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/__pycache__/tbuffer.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5dc13eeabed6fa47566e962a6efb16aae37ef633 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/__pycache__/tbuffer.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/__pycache__/texture_compression_FXT1.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/__pycache__/texture_compression_FXT1.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..94469bed7819b9e5344ed9d36a27c57843cf6138 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/__pycache__/texture_compression_FXT1.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/multisample.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/multisample.py new file mode 100644 index 0000000000000000000000000000000000000000..3c3dfd3fde614636c1b27dcaf15e61b8b8069570 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/multisample.py @@ -0,0 +1,65 @@ +'''OpenGL extension DFX.multisample + +This module customises the behaviour of the +OpenGL.raw.GL.DFX.multisample to provide a more +Python-friendly API + +Overview (from the spec) + + This extension provides a mechanism to antialias all GL primitives: + points, lines, polygons, bitmaps, and images. The technique is to + sample all primitives multiple times at each pixel. The color sample + values are resolved to a single, displayable color each time a pixel + is updated, so the antialiasing appears to be automatic at the + application level. Because each sample includes depth and stencil + information, the depth and stencil functions perform equivalently to + the single-sample mode. + + An additional buffer, called the multisample buffer, is added to the + framebuffer. Pixel sample values, including color, depth, and + stencil values, are stored in this buffer. When the framebuffer + includes a multisample buffer, it does not also include separate + depth or stencil buffers, even if the multisample buffer does not + store depth or stencil values. Color buffers (left/right, + front/back, and aux) do coexist with the multisample buffer, + however. + + Multisample antialiasing is most valuable for rendering polygons, + because it requires no sorting for hidden surface elimination, and + it correctly handles adjacent polygons, object silhouettes, and even + intersecting polygons. If only points or lines are being rendered, + the "smooth" antialiasing mechanism provided by the base GL may + result in a higher quality image. + + This extension is a subset of SGIS_multisample. It differs in these + key ways: + + * Fragment alpha values are not affected by the fragment sample mask + * The sample locations may or may not be fixed. Thus, there is no + support for rendering the scene multiple times with different + sample points. + * Fragment masks are not computed for images or for bitmasks. + + Because of these differences a new extension was created. However, + it is not expected that this extension will co-exist with + SGIS_multisample. Because of this and the fact that there are only + 32 push/pop bits the MULTISAMPLE_BIT_SGIS state value is the same as + MUTLISAMPLE_BIT_3DFX. + +The official definition of this extension is available here: +http://www.opengl.org/registry/specs/DFX/multisample.txt +''' +from OpenGL import platform, constant, arrays +from OpenGL import extensions, wrapper +import ctypes +from OpenGL.raw.GL import _types, _glgets +from OpenGL.raw.GL.DFX.multisample import * +from OpenGL.raw.GL.DFX.multisample import _EXTENSION_NAME + +def glInitMultisampleDFX(): + '''Return boolean indicating whether this extension is available''' + from OpenGL import extensions + return extensions.hasGLExtension( _EXTENSION_NAME ) + + +### END AUTOGENERATED SECTION \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/tbuffer.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/tbuffer.py new file mode 100644 index 0000000000000000000000000000000000000000..0ff932cc12b47b7767abf81788a15a876f569560 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/tbuffer.py @@ -0,0 +1,29 @@ +'''OpenGL extension DFX.tbuffer + +This module customises the behaviour of the +OpenGL.raw.GL.DFX.tbuffer to provide a more +Python-friendly API + +Overview (from the spec) + + This extension allows a write mask to be defined for the fragment + mask which is created during multisample rendering. This can be used + to create effects such as motion blur and depth of field. + +The official definition of this extension is available here: +http://www.opengl.org/registry/specs/DFX/tbuffer.txt +''' +from OpenGL import platform, constant, arrays +from OpenGL import extensions, wrapper +import ctypes +from OpenGL.raw.GL import _types, _glgets +from OpenGL.raw.GL.DFX.tbuffer import * +from OpenGL.raw.GL.DFX.tbuffer import _EXTENSION_NAME + +def glInitTbufferDFX(): + '''Return boolean indicating whether this extension is available''' + from OpenGL import extensions + return extensions.hasGLExtension( _EXTENSION_NAME ) + + +### END AUTOGENERATED SECTION \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/texture_compression_FXT1.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/texture_compression_FXT1.py new file mode 100644 index 0000000000000000000000000000000000000000..7e5f0bff766c7c84ee77dbec14854ecd23a3d7e1 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/DFX/texture_compression_FXT1.py @@ -0,0 +1,42 @@ +'''OpenGL extension DFX.texture_compression_FXT1 + +This module customises the behaviour of the +OpenGL.raw.GL.DFX.texture_compression_FXT1 to provide a more +Python-friendly API + +Overview (from the spec) + + This extension additional texture compression functionality 's FXT1 + format, specific to 3dfxsubject to all the requirements and + limitations described by the extension GL_ARB_texture_compression. + The FXT1 texture format supports only 2D and 3D images without + borders. + + Because 3dfx expects to make continual improvement to its FXT1 + compressor implementation, 3dfx recommends that to achieve best + visual quality applications adopt the following procedure with + respect to reuse of textures compressed by the GL: + + 1) Save the RENDERER and VERSION strings along with images + compressed by the GL; + 2) Before reuse of the textures, compare the stored strings with + strings newly returned from the current GL; + 3) If out-of-date, repeat the compression and storage steps. + +The official definition of this extension is available here: +http://www.opengl.org/registry/specs/DFX/texture_compression_FXT1.txt +''' +from OpenGL import platform, constant, arrays +from OpenGL import extensions, wrapper +import ctypes +from OpenGL.raw.GL import _types, _glgets +from OpenGL.raw.GL.DFX.texture_compression_FXT1 import * +from OpenGL.raw.GL.DFX.texture_compression_FXT1 import _EXTENSION_NAME + +def glInitTextureCompressionFxt1DFX(): + '''Return boolean indicating whether this extension is available''' + from OpenGL import extensions + return extensions.hasGLExtension( _EXTENSION_NAME ) + + +### END AUTOGENERATED SECTION \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/DMP/__init__.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/DMP/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..9b912d19ef8f0e54409434cb78557ba570cae4c7 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/DMP/__init__.py @@ -0,0 +1 @@ +"""OpenGL Extensions""" \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/DMP/__pycache__/__init__.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/DMP/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f03645b5fd834de180252a3a67d58d41562d05ea Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/DMP/__pycache__/__init__.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/__init__.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..61522dc3910b88e51dc9768b541890930a498c79 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/__init__.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/blend_equation_separate.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/blend_equation_separate.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..306fc66f30a71072b31898eab36206c54dd4d278 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/blend_equation_separate.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/blend_logic_op.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/blend_logic_op.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..40fec5010022a775ce0ce9520d7f4db37aa9f386 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/blend_logic_op.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/blend_minmax.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/blend_minmax.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b1a17e7965b775c9085b872e1088163c45c288f9 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/blend_minmax.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/cmyka.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/cmyka.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2ef0ec083f8f5c07f067018830b1e1ae932239fe Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/cmyka.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/compiled_vertex_array.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/compiled_vertex_array.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..56bec8fa7b7b3569bbf60536ccad4e549c9cc1fc Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/compiled_vertex_array.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/copy_texture.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/copy_texture.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9e5a44a465cef2d55b2c4eb5681e696eb25f0627 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/copy_texture.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/cull_vertex.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/cull_vertex.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4e914a334756c4355498634e6ceedf7c2cdd77a2 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/cull_vertex.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/framebuffer_blit.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/framebuffer_blit.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..986ef46ff3b1e26b06d6356a73be7b15ae585b6b Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/framebuffer_blit.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/framebuffer_multisample_blit_scaled.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/framebuffer_multisample_blit_scaled.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..91424c8af97ebf839459f44680e24664cd416b92 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/framebuffer_multisample_blit_scaled.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/index_array_formats.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/index_array_formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..85ba4153da07a6b03ad70dff9fab1792c2cfcfee Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/index_array_formats.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/light_texture.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/light_texture.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a7be842b2c08578905031be0bff367401f517900 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/light_texture.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/packed_pixels.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/packed_pixels.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ace332a1024c54dc932f787a0fe40d75e4de0985 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/packed_pixels.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/paletted_texture.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/paletted_texture.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..806353b529d64ef408039a4a7f462d2534c44808 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/paletted_texture.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/pixel_transform_color_table.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/pixel_transform_color_table.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f8a46b6bb15074944eb7c7250f708d18f377f402 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/pixel_transform_color_table.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/provoking_vertex.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/provoking_vertex.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..272b4b8a43c7a1f1ca5acb8e089b43791cf7800e Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/provoking_vertex.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/rescale_normal.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/rescale_normal.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..005abedcaed546ff7e64fa60bd8945b8e1ff5c05 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/rescale_normal.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/secondary_color.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/secondary_color.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..37e7ea42d624fa5153fd45af78eb5e79a6161143 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/secondary_color.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/separate_shader_objects.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/separate_shader_objects.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c9e176d38d2926194a588b0a8f00c65cb4f75290 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/separate_shader_objects.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/shader_integer_mix.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/shader_integer_mix.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2004ef0008a8fc9cf7476cd811460a7b1316b452 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/shader_integer_mix.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture3D.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture3D.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..439069336b1108e2140e52ebe61acab2f3b2f7d8 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture3D.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_array.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_array.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f6cfdcbe34b692d95b8407b8eefe93475c606dc3 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_array.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_cube_map.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_cube_map.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2c3cd84e18b68d720bc833272e51091dccc01a66 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_cube_map.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_env_add.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_env_add.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3ad54e75f00b876a6a840562f8ce5595f2a316f2 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_env_add.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_env_combine.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_env_combine.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..422494855f64084bd24804f9a1568be12518c92d Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_env_combine.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_filter_anisotropic.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_filter_anisotropic.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..57848f589ed400371b0e910a226951fbfec43148 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_filter_anisotropic.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_shared_exponent.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_shared_exponent.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..df087822f98fecc0b41bac6c4386db1a917c93da Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_shared_exponent.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_swizzle.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_swizzle.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a397ce7de7769314225b216b70413c4f7da0377a Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/texture_swizzle.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/timer_query.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/timer_query.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fb6b66f5adbab379c359a77dceaf2d85d2f1b6c7 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/timer_query.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/vertex_shader.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/vertex_shader.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bf4c61719f6959b3e8d8cb2533d714687cf4c210 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/vertex_shader.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/vertex_weighting.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/vertex_weighting.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6570de75257b4f61c6ad4e77a621afb0e7c6c099 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/EXT/__pycache__/vertex_weighting.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/FJ/__init__.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/FJ/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..9b912d19ef8f0e54409434cb78557ba570cae4c7 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/FJ/__init__.py @@ -0,0 +1 @@ +"""OpenGL Extensions""" \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/FJ/__pycache__/__init__.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/FJ/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..41ce291d54d738e79f2706d3ed1ea2fe2cedda69 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/FJ/__pycache__/__init__.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__init__.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..9b912d19ef8f0e54409434cb78557ba570cae4c7 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__init__.py @@ -0,0 +1 @@ +"""OpenGL Extensions""" \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__pycache__/__init__.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1c4994ab48a748c7cbaa4fd083778353783c671a Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__pycache__/__init__.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__pycache__/convolution_border_modes.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__pycache__/convolution_border_modes.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a400ecbb112649d4be108682b64069b0937828fd Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__pycache__/convolution_border_modes.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__pycache__/image_transform.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__pycache__/image_transform.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e23fa415f4978e9512d7ee062d5607a6ddfb8214 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__pycache__/image_transform.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__pycache__/occlusion_test.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__pycache__/occlusion_test.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9c2f9499b93eb2bf640657eba97c1572ce4d2f44 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__pycache__/occlusion_test.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__pycache__/texture_lighting.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__pycache__/texture_lighting.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b167259cfec5800a22755ad4b70f6025962e08f6 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/__pycache__/texture_lighting.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/convolution_border_modes.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/convolution_border_modes.py new file mode 100644 index 0000000000000000000000000000000000000000..33bd276973d2fdf4b2aec3be6a603c28cde02094 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/convolution_border_modes.py @@ -0,0 +1,28 @@ +'''OpenGL extension HP.convolution_border_modes + +This module customises the behaviour of the +OpenGL.raw.GL.HP.convolution_border_modes to provide a more +Python-friendly API + +Overview (from the spec) + + This extension provides some additional border modes for the + EXT_convolution extension. + +The official definition of this extension is available here: +http://www.opengl.org/registry/specs/HP/convolution_border_modes.txt +''' +from OpenGL import platform, constant, arrays +from OpenGL import extensions, wrapper +import ctypes +from OpenGL.raw.GL import _types, _glgets +from OpenGL.raw.GL.HP.convolution_border_modes import * +from OpenGL.raw.GL.HP.convolution_border_modes import _EXTENSION_NAME + +def glInitConvolutionBorderModesHP(): + '''Return boolean indicating whether this extension is available''' + from OpenGL import extensions + return extensions.hasGLExtension( _EXTENSION_NAME ) + + +### END AUTOGENERATED SECTION \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/image_transform.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/image_transform.py new file mode 100644 index 0000000000000000000000000000000000000000..57a5ce215fadef5ff02dd2be9f7eb5e8bcc8c134 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/image_transform.py @@ -0,0 +1,47 @@ +'''OpenGL extension HP.image_transform + +This module customises the behaviour of the +OpenGL.raw.GL.HP.image_transform to provide a more +Python-friendly API + +Overview (from the spec) + + This extension provides support for scaling, rotation, and translation + of two-dimensional pixel rectangles at a fixed location in the pixel + transfer process. The 2D image transformation attributes are specified + as individual values so that that implementations may easily detect + scaling and rotation values that lend themselves to optimization. 2D + image transformation occurs immediately after the post-convolution color + table stage of the pixel pipeline. This extension also defines a color + table that is applied immediately after the image transformation operation. + +The official definition of this extension is available here: +http://www.opengl.org/registry/specs/HP/image_transform.txt +''' +from OpenGL import platform, constant, arrays +from OpenGL import extensions, wrapper +import ctypes +from OpenGL.raw.GL import _types, _glgets +from OpenGL.raw.GL.HP.image_transform import * +from OpenGL.raw.GL.HP.image_transform import _EXTENSION_NAME + +def glInitImageTransformHP(): + '''Return boolean indicating whether this extension is available''' + from OpenGL import extensions + return extensions.hasGLExtension( _EXTENSION_NAME ) + +# INPUT glImageTransformParameterivHP.params size not checked against 'pname' +glImageTransformParameterivHP=wrapper.wrapper(glImageTransformParameterivHP).setInputArraySize( + 'params', None +) +# INPUT glImageTransformParameterfvHP.params size not checked against 'pname' +glImageTransformParameterfvHP=wrapper.wrapper(glImageTransformParameterfvHP).setInputArraySize( + 'params', None +) +glGetImageTransformParameterivHP=wrapper.wrapper(glGetImageTransformParameterivHP).setOutput( + 'params',size=_glgets._glget_size_mapping,pnameArg='pname',orPassIn=True +) +glGetImageTransformParameterfvHP=wrapper.wrapper(glGetImageTransformParameterfvHP).setOutput( + 'params',size=_glgets._glget_size_mapping,pnameArg='pname',orPassIn=True +) +### END AUTOGENERATED SECTION \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/occlusion_test.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/occlusion_test.py new file mode 100644 index 0000000000000000000000000000000000000000..2d52815fef735b8b4b859e906135c66eedbbe1af --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/occlusion_test.py @@ -0,0 +1,26 @@ +'''OpenGL extension HP.occlusion_test + +This module customises the behaviour of the +OpenGL.raw.GL.HP.occlusion_test to provide a more +Python-friendly API + +Overview (from the spec) + + +The official definition of this extension is available here: +http://www.opengl.org/registry/specs/HP/occlusion_test.txt +''' +from OpenGL import platform, constant, arrays +from OpenGL import extensions, wrapper +import ctypes +from OpenGL.raw.GL import _types, _glgets +from OpenGL.raw.GL.HP.occlusion_test import * +from OpenGL.raw.GL.HP.occlusion_test import _EXTENSION_NAME + +def glInitOcclusionTestHP(): + '''Return boolean indicating whether this extension is available''' + from OpenGL import extensions + return extensions.hasGLExtension( _EXTENSION_NAME ) + + +### END AUTOGENERATED SECTION \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/texture_lighting.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/texture_lighting.py new file mode 100644 index 0000000000000000000000000000000000000000..e2b555c65f8a1420d45b82f11cb1007144560a5c --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/HP/texture_lighting.py @@ -0,0 +1,29 @@ +'''OpenGL extension HP.texture_lighting + +This module customises the behaviour of the +OpenGL.raw.GL.HP.texture_lighting to provide a more +Python-friendly API + +Overview (from the spec) + + This extension defines a mechanism for applications to request + that color originating from specular lighting be added to + the fragment color _after_ texture application. + +The official definition of this extension is available here: +http://www.opengl.org/registry/specs/HP/texture_lighting.txt +''' +from OpenGL import platform, constant, arrays +from OpenGL import extensions, wrapper +import ctypes +from OpenGL.raw.GL import _types, _glgets +from OpenGL.raw.GL.HP.texture_lighting import * +from OpenGL.raw.GL.HP.texture_lighting import _EXTENSION_NAME + +def glInitTextureLightingHP(): + '''Return boolean indicating whether this extension is available''' + from OpenGL import extensions + return extensions.hasGLExtension( _EXTENSION_NAME ) + + +### END AUTOGENERATED SECTION \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/NVX/__init__.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/NVX/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/NVX/__pycache__/__init__.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/NVX/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..158bead3d9bac60d9a2fe9e21c55a1da6983b46b Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/NVX/__pycache__/__init__.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/NVX/__pycache__/conditional_render.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/NVX/__pycache__/conditional_render.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..01a82c46c9d43df0847f54b386d8ef7e3457a16c Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/NVX/__pycache__/conditional_render.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/NVX/__pycache__/gpu_memory_info.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/NVX/__pycache__/gpu_memory_info.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a2c6315b99fbba9030751f99b23bada279225061 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/NVX/__pycache__/gpu_memory_info.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/NVX/conditional_render.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/NVX/conditional_render.py new file mode 100644 index 0000000000000000000000000000000000000000..5e972db03358d9217dd9790fc499776d58758681 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/NVX/conditional_render.py @@ -0,0 +1,23 @@ +'''OpenGL extension NVX.conditional_render + +This module customises the behaviour of the +OpenGL.raw.GL.NVX.conditional_render to provide a more +Python-friendly API + +The official definition of this extension is available here: +http://www.opengl.org/registry/specs/NVX/conditional_render.txt +''' +from OpenGL import platform, constant, arrays +from OpenGL import extensions, wrapper +import ctypes +from OpenGL.raw.GL import _types, _glgets +from OpenGL.raw.GL.NVX.conditional_render import * +from OpenGL.raw.GL.NVX.conditional_render import _EXTENSION_NAME + +def glInitConditionalRenderNVX(): + '''Return boolean indicating whether this extension is available''' + from OpenGL import extensions + return extensions.hasGLExtension( _EXTENSION_NAME ) + + +### END AUTOGENERATED SECTION \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/NVX/gpu_memory_info.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/NVX/gpu_memory_info.py new file mode 100644 index 0000000000000000000000000000000000000000..0b7584f60da0130c313e43187021d6612032f539 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/NVX/gpu_memory_info.py @@ -0,0 +1,23 @@ +'''OpenGL extension NVX.gpu_memory_info + +This module customises the behaviour of the +OpenGL.raw.GL.NVX.gpu_memory_info to provide a more +Python-friendly API + +The official definition of this extension is available here: +http://www.opengl.org/registry/specs/NVX/gpu_memory_info.txt +''' +from OpenGL import platform, constant, arrays +from OpenGL import extensions, wrapper +import ctypes +from OpenGL.raw.GL import _types, _glgets +from OpenGL.raw.GL.NVX.gpu_memory_info import * +from OpenGL.raw.GL.NVX.gpu_memory_info import _EXTENSION_NAME + +def glInitGpuMemoryInfoNVX(): + '''Return boolean indicating whether this extension is available''' + from OpenGL import extensions + return extensions.hasGLExtension( _EXTENSION_NAME ) + + +### END AUTOGENERATED SECTION \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/__init__.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..9b912d19ef8f0e54409434cb78557ba570cae4c7 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/__init__.py @@ -0,0 +1 @@ +"""OpenGL Extensions""" \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/__pycache__/compressed_paletted_texture.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/__pycache__/compressed_paletted_texture.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7229321826c09654b73946c5a882e8d37c7949fd Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/__pycache__/compressed_paletted_texture.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/__pycache__/fixed_point.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/__pycache__/fixed_point.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c9a87a64c3ad589da27405bf780f38554b6a5737 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/__pycache__/fixed_point.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/__pycache__/query_matrix.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/__pycache__/query_matrix.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6165006aac26511d547f4b41692c959f96050ff9 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/__pycache__/query_matrix.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/byte_coordinates.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/byte_coordinates.py new file mode 100644 index 0000000000000000000000000000000000000000..a044852a8753e45213ac37e1e853791f1f1cca4d --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/byte_coordinates.py @@ -0,0 +1,55 @@ +'''OpenGL extension OES.byte_coordinates + +This module customises the behaviour of the +OpenGL.raw.GL.OES.byte_coordinates to provide a more +Python-friendly API + +The official definition of this extension is available here: +http://www.opengl.org/registry/specs/OES/byte_coordinates.txt +''' +from OpenGL import platform, constant, arrays +from OpenGL import extensions, wrapper +import ctypes +from OpenGL.raw.GL import _types, _glgets +from OpenGL.raw.GL.OES.byte_coordinates import * +from OpenGL.raw.GL.OES.byte_coordinates import _EXTENSION_NAME + +def glInitByteCoordinatesOES(): + '''Return boolean indicating whether this extension is available''' + from OpenGL import extensions + return extensions.hasGLExtension( _EXTENSION_NAME ) + +glMultiTexCoord1bvOES=wrapper.wrapper(glMultiTexCoord1bvOES).setInputArraySize( + 'coords', 1 +) +glMultiTexCoord2bvOES=wrapper.wrapper(glMultiTexCoord2bvOES).setInputArraySize( + 'coords', 2 +) +glMultiTexCoord3bvOES=wrapper.wrapper(glMultiTexCoord3bvOES).setInputArraySize( + 'coords', 3 +) +glMultiTexCoord4bvOES=wrapper.wrapper(glMultiTexCoord4bvOES).setInputArraySize( + 'coords', 4 +) +glTexCoord1bvOES=wrapper.wrapper(glTexCoord1bvOES).setInputArraySize( + 'coords', 1 +) +glTexCoord2bvOES=wrapper.wrapper(glTexCoord2bvOES).setInputArraySize( + 'coords', 2 +) +glTexCoord3bvOES=wrapper.wrapper(glTexCoord3bvOES).setInputArraySize( + 'coords', 3 +) +glTexCoord4bvOES=wrapper.wrapper(glTexCoord4bvOES).setInputArraySize( + 'coords', 4 +) +glVertex2bvOES=wrapper.wrapper(glVertex2bvOES).setInputArraySize( + 'coords', 2 +) +glVertex3bvOES=wrapper.wrapper(glVertex3bvOES).setInputArraySize( + 'coords', 3 +) +glVertex4bvOES=wrapper.wrapper(glVertex4bvOES).setInputArraySize( + 'coords', 4 +) +### END AUTOGENERATED SECTION \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/compressed_paletted_texture.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/compressed_paletted_texture.py new file mode 100644 index 0000000000000000000000000000000000000000..278c6374bada1a9ff9937ec0c3e80763f87b9cb6 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/compressed_paletted_texture.py @@ -0,0 +1,23 @@ +'''OpenGL extension OES.compressed_paletted_texture + +This module customises the behaviour of the +OpenGL.raw.GL.OES.compressed_paletted_texture to provide a more +Python-friendly API + +The official definition of this extension is available here: +http://www.opengl.org/registry/specs/OES/compressed_paletted_texture.txt +''' +from OpenGL import platform, constant, arrays +from OpenGL import extensions, wrapper +import ctypes +from OpenGL.raw.GL import _types, _glgets +from OpenGL.raw.GL.OES.compressed_paletted_texture import * +from OpenGL.raw.GL.OES.compressed_paletted_texture import _EXTENSION_NAME + +def glInitCompressedPalettedTextureOES(): + '''Return boolean indicating whether this extension is available''' + from OpenGL import extensions + return extensions.hasGLExtension( _EXTENSION_NAME ) + + +### END AUTOGENERATED SECTION \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/fixed_point.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/fixed_point.py new file mode 100644 index 0000000000000000000000000000000000000000..18639f7c77cf0c4f20e93047c5c165e9c6c52942 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/fixed_point.py @@ -0,0 +1,208 @@ +'''OpenGL extension OES.fixed_point + +This module customises the behaviour of the +OpenGL.raw.GL.OES.fixed_point to provide a more +Python-friendly API + +The official definition of this extension is available here: +http://www.opengl.org/registry/specs/OES/fixed_point.txt +''' +from OpenGL import platform, constant, arrays +from OpenGL import extensions, wrapper +import ctypes +from OpenGL.raw.GL import _types, _glgets +from OpenGL.raw.GL.OES.fixed_point import * +from OpenGL.raw.GL.OES.fixed_point import _EXTENSION_NAME + +def glInitFixedPointOES(): + '''Return boolean indicating whether this extension is available''' + from OpenGL import extensions + return extensions.hasGLExtension( _EXTENSION_NAME ) + +glClipPlanexOES=wrapper.wrapper(glClipPlanexOES).setInputArraySize( + 'equation', 4 +) +# INPUT glFogxvOES.param size not checked against 'pname' +glFogxvOES=wrapper.wrapper(glFogxvOES).setInputArraySize( + 'param', None +) +glGetClipPlanexOES=wrapper.wrapper(glGetClipPlanexOES).setInputArraySize( + 'equation', 4 +) +# INPUT glGetFixedvOES.params size not checked against 'pname' +glGetFixedvOES=wrapper.wrapper(glGetFixedvOES).setInputArraySize( + 'params', None +) +# INPUT glGetTexEnvxvOES.params size not checked against 'pname' +glGetTexEnvxvOES=wrapper.wrapper(glGetTexEnvxvOES).setInputArraySize( + 'params', None +) +# INPUT glGetTexParameterxvOES.params size not checked against 'pname' +glGetTexParameterxvOES=wrapper.wrapper(glGetTexParameterxvOES).setInputArraySize( + 'params', None +) +# INPUT glLightModelxvOES.param size not checked against 'pname' +glLightModelxvOES=wrapper.wrapper(glLightModelxvOES).setInputArraySize( + 'param', None +) +# INPUT glLightxvOES.params size not checked against 'pname' +glLightxvOES=wrapper.wrapper(glLightxvOES).setInputArraySize( + 'params', None +) +glLoadMatrixxOES=wrapper.wrapper(glLoadMatrixxOES).setInputArraySize( + 'm', 16 +) +# INPUT glMaterialxvOES.param size not checked against 'pname' +glMaterialxvOES=wrapper.wrapper(glMaterialxvOES).setInputArraySize( + 'param', None +) +glMultMatrixxOES=wrapper.wrapper(glMultMatrixxOES).setInputArraySize( + 'm', 16 +) +# INPUT glPointParameterxvOES.params size not checked against 'pname' +glPointParameterxvOES=wrapper.wrapper(glPointParameterxvOES).setInputArraySize( + 'params', None +) +# INPUT glTexEnvxvOES.params size not checked against 'pname' +glTexEnvxvOES=wrapper.wrapper(glTexEnvxvOES).setInputArraySize( + 'params', None +) +# INPUT glTexParameterxvOES.params size not checked against 'pname' +glTexParameterxvOES=wrapper.wrapper(glTexParameterxvOES).setInputArraySize( + 'params', None +) +# INPUT glGetLightxvOES.params size not checked against 'pname' +glGetLightxvOES=wrapper.wrapper(glGetLightxvOES).setInputArraySize( + 'params', None +) +# INPUT glGetMaterialxvOES.params size not checked against 'pname' +glGetMaterialxvOES=wrapper.wrapper(glGetMaterialxvOES).setInputArraySize( + 'params', None +) +# INPUT glBitmapxOES.bitmap size not checked against 'width,height' +glBitmapxOES=wrapper.wrapper(glBitmapxOES).setInputArraySize( + 'bitmap', None +) +glColor3xvOES=wrapper.wrapper(glColor3xvOES).setInputArraySize( + 'components', 3 +) +glColor4xvOES=wrapper.wrapper(glColor4xvOES).setInputArraySize( + 'components', 4 +) +# INPUT glConvolutionParameterxvOES.params size not checked against 'pname' +glConvolutionParameterxvOES=wrapper.wrapper(glConvolutionParameterxvOES).setInputArraySize( + 'params', None +) +glEvalCoord1xvOES=wrapper.wrapper(glEvalCoord1xvOES).setInputArraySize( + 'coords', 1 +) +glEvalCoord2xvOES=wrapper.wrapper(glEvalCoord2xvOES).setInputArraySize( + 'coords', 2 +) +# INPUT glFeedbackBufferxOES.buffer size not checked against n +glFeedbackBufferxOES=wrapper.wrapper(glFeedbackBufferxOES).setInputArraySize( + 'buffer', None +) +# INPUT glGetConvolutionParameterxvOES.params size not checked against 'pname' +glGetConvolutionParameterxvOES=wrapper.wrapper(glGetConvolutionParameterxvOES).setInputArraySize( + 'params', None +) +# INPUT glGetHistogramParameterxvOES.params size not checked against 'pname' +glGetHistogramParameterxvOES=wrapper.wrapper(glGetHistogramParameterxvOES).setInputArraySize( + 'params', None +) +# INPUT glGetLightxOES.params size not checked against 'pname' +glGetLightxOES=wrapper.wrapper(glGetLightxOES).setInputArraySize( + 'params', None +) +# INPUT glGetMapxvOES.v size not checked against 'query' +glGetMapxvOES=wrapper.wrapper(glGetMapxvOES).setInputArraySize( + 'v', None +) +# INPUT glGetPixelMapxv.values size not checked against size +glGetPixelMapxv=wrapper.wrapper(glGetPixelMapxv).setInputArraySize( + 'values', None +) +# INPUT glGetTexGenxvOES.params size not checked against 'pname' +glGetTexGenxvOES=wrapper.wrapper(glGetTexGenxvOES).setInputArraySize( + 'params', None +) +# INPUT glGetTexLevelParameterxvOES.params size not checked against 'pname' +glGetTexLevelParameterxvOES=wrapper.wrapper(glGetTexLevelParameterxvOES).setInputArraySize( + 'params', None +) +glIndexxvOES=wrapper.wrapper(glIndexxvOES).setInputArraySize( + 'component', 1 +) +glLoadTransposeMatrixxOES=wrapper.wrapper(glLoadTransposeMatrixxOES).setInputArraySize( + 'm', 16 +) +glMultTransposeMatrixxOES=wrapper.wrapper(glMultTransposeMatrixxOES).setInputArraySize( + 'm', 16 +) +glMultiTexCoord1xvOES=wrapper.wrapper(glMultiTexCoord1xvOES).setInputArraySize( + 'coords', 1 +) +glMultiTexCoord2xvOES=wrapper.wrapper(glMultiTexCoord2xvOES).setInputArraySize( + 'coords', 2 +) +glMultiTexCoord3xvOES=wrapper.wrapper(glMultiTexCoord3xvOES).setInputArraySize( + 'coords', 3 +) +glMultiTexCoord4xvOES=wrapper.wrapper(glMultiTexCoord4xvOES).setInputArraySize( + 'coords', 4 +) +glNormal3xvOES=wrapper.wrapper(glNormal3xvOES).setInputArraySize( + 'coords', 3 +) +# INPUT glPixelMapx.values size not checked against size +glPixelMapx=wrapper.wrapper(glPixelMapx).setInputArraySize( + 'values', None +) +# INPUT glPrioritizeTexturesxOES.textures size not checked against n +# INPUT glPrioritizeTexturesxOES.priorities size not checked against n +glPrioritizeTexturesxOES=wrapper.wrapper(glPrioritizeTexturesxOES).setInputArraySize( + 'textures', None +).setInputArraySize( + 'priorities', None +) +glRasterPos2xvOES=wrapper.wrapper(glRasterPos2xvOES).setInputArraySize( + 'coords', 2 +) +glRasterPos3xvOES=wrapper.wrapper(glRasterPos3xvOES).setInputArraySize( + 'coords', 3 +) +glRasterPos4xvOES=wrapper.wrapper(glRasterPos4xvOES).setInputArraySize( + 'coords', 4 +) +glRectxvOES=wrapper.wrapper(glRectxvOES).setInputArraySize( + 'v1', 2 +).setInputArraySize( + 'v2', 2 +) +glTexCoord1xvOES=wrapper.wrapper(glTexCoord1xvOES).setInputArraySize( + 'coords', 1 +) +glTexCoord2xvOES=wrapper.wrapper(glTexCoord2xvOES).setInputArraySize( + 'coords', 2 +) +glTexCoord3xvOES=wrapper.wrapper(glTexCoord3xvOES).setInputArraySize( + 'coords', 3 +) +glTexCoord4xvOES=wrapper.wrapper(glTexCoord4xvOES).setInputArraySize( + 'coords', 4 +) +# INPUT glTexGenxvOES.params size not checked against 'pname' +glTexGenxvOES=wrapper.wrapper(glTexGenxvOES).setInputArraySize( + 'params', None +) +glVertex2xvOES=wrapper.wrapper(glVertex2xvOES).setInputArraySize( + 'coords', 2 +) +glVertex3xvOES=wrapper.wrapper(glVertex3xvOES).setInputArraySize( + 'coords', 3 +) +glVertex4xvOES=wrapper.wrapper(glVertex4xvOES).setInputArraySize( + 'coords', 4 +) +### END AUTOGENERATED SECTION \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/query_matrix.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/query_matrix.py new file mode 100644 index 0000000000000000000000000000000000000000..32a426c8a55e6d9ca350fb7c2225af4b25c11f22 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/query_matrix.py @@ -0,0 +1,27 @@ +'''OpenGL extension OES.query_matrix + +This module customises the behaviour of the +OpenGL.raw.GL.OES.query_matrix to provide a more +Python-friendly API + +The official definition of this extension is available here: +http://www.opengl.org/registry/specs/OES/query_matrix.txt +''' +from OpenGL import platform, constant, arrays +from OpenGL import extensions, wrapper +import ctypes +from OpenGL.raw.GL import _types, _glgets +from OpenGL.raw.GL.OES.query_matrix import * +from OpenGL.raw.GL.OES.query_matrix import _EXTENSION_NAME + +def glInitQueryMatrixOES(): + '''Return boolean indicating whether this extension is available''' + from OpenGL import extensions + return extensions.hasGLExtension( _EXTENSION_NAME ) + +glQueryMatrixxOES=wrapper.wrapper(glQueryMatrixxOES).setInputArraySize( + 'mantissa', 16 +).setInputArraySize( + 'exponent', 16 +) +### END AUTOGENERATED SECTION \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/read_format.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/read_format.py new file mode 100644 index 0000000000000000000000000000000000000000..fdd5adf796d79498f61695113247f30d6825d0e8 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/read_format.py @@ -0,0 +1,23 @@ +'''OpenGL extension OES.read_format + +This module customises the behaviour of the +OpenGL.raw.GL.OES.read_format to provide a more +Python-friendly API + +The official definition of this extension is available here: +http://www.opengl.org/registry/specs/OES/read_format.txt +''' +from OpenGL import platform, constant, arrays +from OpenGL import extensions, wrapper +import ctypes +from OpenGL.raw.GL import _types, _glgets +from OpenGL.raw.GL.OES.read_format import * +from OpenGL.raw.GL.OES.read_format import _EXTENSION_NAME + +def glInitReadFormatOES(): + '''Return boolean indicating whether this extension is available''' + from OpenGL import extensions + return extensions.hasGLExtension( _EXTENSION_NAME ) + + +### END AUTOGENERATED SECTION \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/single_precision.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/single_precision.py new file mode 100644 index 0000000000000000000000000000000000000000..43fa66bd1f3d1d92f1339055936009a9f56fc5ac --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/OES/single_precision.py @@ -0,0 +1,28 @@ +'''OpenGL extension OES.single_precision + +This module customises the behaviour of the +OpenGL.raw.GL.OES.single_precision to provide a more +Python-friendly API + +The official definition of this extension is available here: +http://www.opengl.org/registry/specs/OES/single_precision.txt +''' +from OpenGL import platform, constant, arrays +from OpenGL import extensions, wrapper +import ctypes +from OpenGL.raw.GL import _types, _glgets +from OpenGL.raw.GL.OES.single_precision import * +from OpenGL.raw.GL.OES.single_precision import _EXTENSION_NAME + +def glInitSinglePrecisionOES(): + '''Return boolean indicating whether this extension is available''' + from OpenGL import extensions + return extensions.hasGLExtension( _EXTENSION_NAME ) + +glClipPlanefOES=wrapper.wrapper(glClipPlanefOES).setInputArraySize( + 'equation', 4 +) +glGetClipPlanefOES=wrapper.wrapper(glGetClipPlanefOES).setInputArraySize( + 'equation', 4 +) +### END AUTOGENERATED SECTION \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/QCOM/__init__.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/QCOM/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..9b912d19ef8f0e54409434cb78557ba570cae4c7 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/QCOM/__init__.py @@ -0,0 +1 @@ +"""OpenGL Extensions""" \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/QCOM/__pycache__/__init__.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/QCOM/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..817208d5591c6f4fd77eb369d307e2e71887d5d6 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/QCOM/__pycache__/__init__.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/SUNX/__init__.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/SUNX/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..9b912d19ef8f0e54409434cb78557ba570cae4c7 --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/SUNX/__init__.py @@ -0,0 +1 @@ +"""OpenGL Extensions""" \ No newline at end of file diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/SUNX/__pycache__/__init__.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/SUNX/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..82e1d3d0ad37f78cfb8c459d487d3f402a23a440 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/SUNX/__pycache__/__init__.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/SUNX/__pycache__/constant_data.cpython-310.pyc b/vllm/lib/python3.10/site-packages/OpenGL/GL/SUNX/__pycache__/constant_data.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3d36e8cb07f2b2353cfc9fb2889ff7ad73666ea6 Binary files /dev/null and b/vllm/lib/python3.10/site-packages/OpenGL/GL/SUNX/__pycache__/constant_data.cpython-310.pyc differ diff --git a/vllm/lib/python3.10/site-packages/OpenGL/GL/SUNX/constant_data.py b/vllm/lib/python3.10/site-packages/OpenGL/GL/SUNX/constant_data.py new file mode 100644 index 0000000000000000000000000000000000000000..63764b81198bc0b474c4d4cfb112d4f6ae0ec31e --- /dev/null +++ b/vllm/lib/python3.10/site-packages/OpenGL/GL/SUNX/constant_data.py @@ -0,0 +1,32 @@ +'''OpenGL extension SUNX.constant_data + +This module customises the behaviour of the +OpenGL.raw.GL.SUNX.constant_data to provide a more +Python-friendly API + +Overview (from the spec) + + This extension allows the pixel data specified by the + application to be used internally without making a second copy. + This extension affects how the pixel data in client memory is + interpreted and therefore affects DrawPixels, Bitmap, + PolygonStipple, TexImage1D, TexImage2D, TexImage3DEXT, + ColorTableSGI. + +The official definition of this extension is available here: +http://www.opengl.org/registry/specs/SUNX/constant_data.txt +''' +from OpenGL import platform, constant, arrays +from OpenGL import extensions, wrapper +import ctypes +from OpenGL.raw.GL import _types, _glgets +from OpenGL.raw.GL.SUNX.constant_data import * +from OpenGL.raw.GL.SUNX.constant_data import _EXTENSION_NAME + +def glInitConstantDataSUNX(): + '''Return boolean indicating whether this extension is available''' + from OpenGL import extensions + return extensions.hasGLExtension( _EXTENSION_NAME ) + + +### END AUTOGENERATED SECTION \ No newline at end of file