PyOpenGL-accelerate 3.1.9__cp313-cp313-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- OpenGL_accelerate/__init__.py +11 -0
- OpenGL_accelerate/arraydatatype.cp313-win_amd64.pyd +0 -0
- OpenGL_accelerate/buffers_formathandler.cp313-win_amd64.pyd +0 -0
- OpenGL_accelerate/errorchecker.cp313-win_amd64.pyd +0 -0
- OpenGL_accelerate/formathandler.cp313-win_amd64.pyd +0 -0
- OpenGL_accelerate/formathandler.pxd +14 -0
- OpenGL_accelerate/latebind.cp313-win_amd64.pyd +0 -0
- OpenGL_accelerate/nones_formathandler.cp313-win_amd64.pyd +0 -0
- OpenGL_accelerate/numpy_formathandler.cp313-win_amd64.pyd +0 -0
- OpenGL_accelerate/vbo.cp313-win_amd64.pyd +0 -0
- OpenGL_accelerate/wrapper.cp313-win_amd64.pyd +0 -0
- OpenGL_accelerate/wrapper.pxd +11 -0
- PyOpenGL_accelerate-3.1.9.dist-info/METADATA +84 -0
- PyOpenGL_accelerate-3.1.9.dist-info/RECORD +17 -0
- PyOpenGL_accelerate-3.1.9.dist-info/WHEEL +5 -0
- PyOpenGL_accelerate-3.1.9.dist-info/license.txt +40 -0
- PyOpenGL_accelerate-3.1.9.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"""Cython-coded accelerators for the PyOpenGL wrapper
|
|
2
|
+
|
|
3
|
+
This package contains Cython accelerator modules which
|
|
4
|
+
attempt to speed up certain aspects of the PyOpenGL 3.x
|
|
5
|
+
wrapper mechanism. The source code is part of the
|
|
6
|
+
PyOpenGL package and is built via the setupaccel.py
|
|
7
|
+
script in the top level of the PyOpenGL source package.
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
__version__ = "3.1.9"
|
|
11
|
+
__version_tuple__ = (3, 1, 9)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""Cython import description for formathandler types"""
|
|
2
|
+
#cython: language_level=3
|
|
3
|
+
|
|
4
|
+
cdef class FormatHandler:
|
|
5
|
+
cdef public int ERROR_ON_COPY
|
|
6
|
+
cdef object c_from_param( self, object instance, object typeCode)
|
|
7
|
+
cdef object c_dataPointer( self, object instance )
|
|
8
|
+
cdef c_zeros( self, object dims, object typeCode )
|
|
9
|
+
cdef c_arraySize( self, object instance, object typeCode )
|
|
10
|
+
cdef c_arrayByteCount( self, object instance )
|
|
11
|
+
cdef c_arrayToGLType( self, object value )
|
|
12
|
+
cdef c_asArray( self, object instance, object typeCode)
|
|
13
|
+
cdef c_unitSize( self, object instance, typeCode )
|
|
14
|
+
cdef c_dimensions( self, object instance)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"""Importable Cython declarations for wrapper module"""
|
|
2
|
+
#cython: language_level=3
|
|
3
|
+
|
|
4
|
+
cdef class cArgConverter:
|
|
5
|
+
cdef object c_call( self, tuple pyArgs, int index, object baseOperation )
|
|
6
|
+
cdef class pyArgConverter:
|
|
7
|
+
cdef object c_call( self, object incoming, object function, tuple arguments )
|
|
8
|
+
cdef class cArgumentConverter:
|
|
9
|
+
cdef object c_call( self, object incoming )
|
|
10
|
+
cdef class returnConverter:
|
|
11
|
+
cdef object c_call( self, object result, object baseOperation, tuple pyArgs, tuple cArgs )
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: PyOpenGL-accelerate
|
|
3
|
+
Version: 3.1.9
|
|
4
|
+
Summary: Cython-coded accelerators for PyOpenGL
|
|
5
|
+
Home-page: http://pyopengl.sourceforge.net
|
|
6
|
+
Download-URL: http://sourceforge.net/project/showfiles.php?group_id=5988
|
|
7
|
+
Author: Mike C. Fletcher
|
|
8
|
+
Author-email: "Mike C. Fletcher" <mcfletch@vrplumber.com>
|
|
9
|
+
License: NOTE:
|
|
10
|
+
|
|
11
|
+
THIS SOFTWARE IS NOT FAULT TOLERANT AND SHOULD NOT BE USED IN ANY
|
|
12
|
+
SITUATION ENDANGERING HUMAN LIFE OR PROPERTY.
|
|
13
|
+
|
|
14
|
+
OpenGL-ctypes PyOpenGL-accelerate License
|
|
15
|
+
|
|
16
|
+
Copyright (c) 2005-2009, Michael C. Fletcher and Contributors
|
|
17
|
+
All rights reserved.
|
|
18
|
+
|
|
19
|
+
Redistribution and use in source and binary forms, with or without
|
|
20
|
+
modification, are permitted provided that the following conditions
|
|
21
|
+
are met:
|
|
22
|
+
|
|
23
|
+
Redistributions of source code must retain the above copyright
|
|
24
|
+
notice, this list of conditions and the following disclaimer.
|
|
25
|
+
|
|
26
|
+
Redistributions in binary form must reproduce the above
|
|
27
|
+
copyright notice, this list of conditions and the following
|
|
28
|
+
disclaimer in the documentation and/or other materials
|
|
29
|
+
provided with the distribution.
|
|
30
|
+
|
|
31
|
+
The name of Michael C. Fletcher, or the name of any Contributor,
|
|
32
|
+
may not be used to endorse or promote products derived from this
|
|
33
|
+
software without specific prior written permission.
|
|
34
|
+
|
|
35
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
36
|
+
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
37
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
38
|
+
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
39
|
+
COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|
40
|
+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
41
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
42
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
43
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
44
|
+
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
45
|
+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
46
|
+
OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
Project-URL: Homepage, https://mcfletch.github.io/pyopengl/
|
|
51
|
+
Project-URL: Download, https://pypi.org/project/PyOpenGL-accelerate/
|
|
52
|
+
Project-URL: Source, https://github.com/mcfletch/pyopengl
|
|
53
|
+
Project-URL: Documentation, https://mcfletch.github.io/pyopengl/documentation/index.html
|
|
54
|
+
Keywords: Graphics,3D,OpenGL,GLU,GLUT,GLE,GLX,EXT,ARB,Mesa,PyOpenGL
|
|
55
|
+
Platform: Win32
|
|
56
|
+
Platform: Linux
|
|
57
|
+
Platform: OS-X
|
|
58
|
+
Platform: Posix
|
|
59
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
60
|
+
Classifier: Programming Language :: Python
|
|
61
|
+
Classifier: Programming Language :: Python :: 2
|
|
62
|
+
Classifier: Programming Language :: Python :: 3
|
|
63
|
+
Classifier: Topic :: Multimedia :: Graphics :: 3D Rendering
|
|
64
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
65
|
+
Classifier: Intended Audience :: Developers
|
|
66
|
+
Description-Content-Type: text/markdown
|
|
67
|
+
License-File: license.txt
|
|
68
|
+
Dynamic: download-url
|
|
69
|
+
|
|
70
|
+
# Acceleration code for PyOpenGL
|
|
71
|
+
|
|
72
|
+
This set of C (Cython) extensions provides acceleration of common operations
|
|
73
|
+
for slow points in PyOpenGL 3.x. It is not a requirement for using PyOpenGL
|
|
74
|
+
but performance without it will be poor.
|
|
75
|
+
|
|
76
|
+
## Build Process
|
|
77
|
+
|
|
78
|
+
Cython is updated frequently to support newer versions of Python. As of
|
|
79
|
+
release 3.1.9 we no longer check in the Cython generated code for the
|
|
80
|
+
wrapper modules, relying on the build machines to generate the wrappers.
|
|
81
|
+
|
|
82
|
+
The Github CI Pipeline should generate and release binary builds for most
|
|
83
|
+
major platforms (Windows, Linux, Mac), but if you need to build from source,
|
|
84
|
+
a `pip install .` **should** work from the PyOpenGL repository.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
OpenGL_accelerate/__init__.py,sha256=SNQmRh9-Am-zrwtn1dLeXyx1tS3pA51zwpKbB385e28,393
|
|
2
|
+
OpenGL_accelerate/arraydatatype.cp313-win_amd64.pyd,sha256=mmOC93xGt1QEi8DpVF8a_B57Dw7G8pmvG6mpf3csR9w,222720
|
|
3
|
+
OpenGL_accelerate/buffers_formathandler.cp313-win_amd64.pyd,sha256=D1Nb0UfNZ9wfioXvqIBH5y2WQtQtaTHQ7e_h1O6-uuc,69632
|
|
4
|
+
OpenGL_accelerate/errorchecker.cp313-win_amd64.pyd,sha256=whN_JNRnf1J8Cbjj73W1ZcWwAAFLGB5oio1r70QttHQ,63488
|
|
5
|
+
OpenGL_accelerate/formathandler.cp313-win_amd64.pyd,sha256=f6YJtqTUAans3HmZwhj-P0MT-42guSzrFg-2sC3jM9w,73216
|
|
6
|
+
OpenGL_accelerate/formathandler.pxd,sha256=TuD-JHuQXyCqwSItj1-YblA7hhxSwe5BNL2dD1N_L-g,629
|
|
7
|
+
OpenGL_accelerate/latebind.cp313-win_amd64.pyd,sha256=3hD-SRF-qt6mQ630AUg6sbQZ4G4LcbjClcwNLuvHdbk,65024
|
|
8
|
+
OpenGL_accelerate/nones_formathandler.cp313-win_amd64.pyd,sha256=vCStWVprJdDEBEkVTxT37GGK0JlKwVAmluSgqgm6Zws,49664
|
|
9
|
+
OpenGL_accelerate/numpy_formathandler.cp313-win_amd64.pyd,sha256=hY_mg-e9Jty9TBBboAZHJfd0fLtWdvV2iUxtKZOcnuY,87040
|
|
10
|
+
OpenGL_accelerate/vbo.cp313-win_amd64.pyd,sha256=8j-yEaehNB-kv_fLro1xzxQS7ZMUmaf2c797g4fpcZ4,141824
|
|
11
|
+
OpenGL_accelerate/wrapper.cp313-win_amd64.pyd,sha256=F8BZta4m4R51PhLAooWI6GCan0Z-rBP7Kt_u6Gv1HXE,254464
|
|
12
|
+
OpenGL_accelerate/wrapper.pxd,sha256=kZD4XlqkPhxf8Ue1jM4QqZHVG2NsVtOBcGz1Q-4Yn4E,497
|
|
13
|
+
PyOpenGL_accelerate-3.1.9.dist-info/METADATA,sha256=fTwOTk2j7nhws8WjRJyUgMK97e13NoALKna_E_Kh4AA,3976
|
|
14
|
+
PyOpenGL_accelerate-3.1.9.dist-info/WHEEL,sha256=6bXTkCllrWLYPW3gCPkeRA91N4604g9hqNhQqZWsUzQ,101
|
|
15
|
+
PyOpenGL_accelerate-3.1.9.dist-info/license.txt,sha256=kclzjOE6CeDGZE56HAy1aynrcUuZ3ISPMlHg9SsQfdU,1751
|
|
16
|
+
PyOpenGL_accelerate-3.1.9.dist-info/top_level.txt,sha256=9o0RHjJ27rL4yafmZevzZL2UGWVjawgxkrWN9pZsRFQ,18
|
|
17
|
+
PyOpenGL_accelerate-3.1.9.dist-info/RECORD,,
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
NOTE:
|
|
2
|
+
|
|
3
|
+
THIS SOFTWARE IS NOT FAULT TOLERANT AND SHOULD NOT BE USED IN ANY
|
|
4
|
+
SITUATION ENDANGERING HUMAN LIFE OR PROPERTY.
|
|
5
|
+
|
|
6
|
+
OpenGL-ctypes PyOpenGL-accelerate License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2005-2009, Michael C. Fletcher and Contributors
|
|
9
|
+
All rights reserved.
|
|
10
|
+
|
|
11
|
+
Redistribution and use in source and binary forms, with or without
|
|
12
|
+
modification, are permitted provided that the following conditions
|
|
13
|
+
are met:
|
|
14
|
+
|
|
15
|
+
Redistributions of source code must retain the above copyright
|
|
16
|
+
notice, this list of conditions and the following disclaimer.
|
|
17
|
+
|
|
18
|
+
Redistributions in binary form must reproduce the above
|
|
19
|
+
copyright notice, this list of conditions and the following
|
|
20
|
+
disclaimer in the documentation and/or other materials
|
|
21
|
+
provided with the distribution.
|
|
22
|
+
|
|
23
|
+
The name of Michael C. Fletcher, or the name of any Contributor,
|
|
24
|
+
may not be used to endorse or promote products derived from this
|
|
25
|
+
software without specific prior written permission.
|
|
26
|
+
|
|
27
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
28
|
+
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
29
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
30
|
+
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
31
|
+
COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|
32
|
+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
33
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
34
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
35
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
36
|
+
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
37
|
+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
38
|
+
OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
39
|
+
|
|
40
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
OpenGL_accelerate
|