OpenImageIO 3.0.3.1__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.
- OpenImageIO/OpenImageIO.cp313-win_amd64.pyd +0 -0
- OpenImageIO/__init__.py +49 -0
- OpenImageIO/bin/Iex_v_3_2_4_OpenImageIO_v3_0.dll +0 -0
- OpenImageIO/bin/IlmThread_v_3_2_4_OpenImageIO_v3_0.dll +0 -0
- OpenImageIO/bin/Imath_v_3_1_10_OpenImageIO_v3_0.dll +0 -0
- OpenImageIO/bin/OpenEXRCore_v_3_2_4_OpenImageIO_v3_0.dll +0 -0
- OpenImageIO/bin/OpenEXRUtil_v_3_2_4_OpenImageIO_v3_0.dll +0 -0
- OpenImageIO/bin/OpenEXR_v_3_2_4_OpenImageIO_v3_0.dll +0 -0
- OpenImageIO/bin/OpenImageIO.dll +0 -0
- OpenImageIO/bin/OpenImageIO_Util.dll +0 -0
- OpenImageIO/bin/maketx.exe +0 -0
- OpenImageIO/bin/oiiotool.exe +0 -0
- OpenImageIO/bin/tiff.dll +0 -0
- OpenImageIO/bin/zlib1.dll +0 -0
- OpenImageIO/lib/Iex_v_3_2_4_OpenImageIO_v3_0.lib +0 -0
- OpenImageIO/lib/IlmThread_v_3_2_4_OpenImageIO_v3_0.lib +0 -0
- OpenImageIO/lib/Imath_v_3_1_10_OpenImageIO_v3_0.lib +0 -0
- OpenImageIO/lib/OpenEXRCore_v_3_2_4_OpenImageIO_v3_0.lib +0 -0
- OpenImageIO/lib/OpenEXRUtil_v_3_2_4_OpenImageIO_v3_0.lib +0 -0
- OpenImageIO/lib/OpenEXR_v_3_2_4_OpenImageIO_v3_0.lib +0 -0
- OpenImageIO/lib/tiff.lib +0 -0
- OpenImageIO/lib/tiffxx.lib +0 -0
- OpenImageIO/lib/zlib.lib +0 -0
- OpenImageIO/lib/zlibstatic.lib +0 -0
- OpenImageIO/share/fonts/OpenImageIO/DroidSans-Bold.ttf +0 -0
- OpenImageIO/share/fonts/OpenImageIO/DroidSans.ttf +0 -0
- OpenImageIO/share/fonts/OpenImageIO/DroidSansMono.ttf +0 -0
- OpenImageIO/share/fonts/OpenImageIO/DroidSerif-Bold.ttf +0 -0
- OpenImageIO/share/fonts/OpenImageIO/DroidSerif-BoldItalic.ttf +0 -0
- OpenImageIO/share/fonts/OpenImageIO/DroidSerif-Italic.ttf +0 -0
- OpenImageIO/share/fonts/OpenImageIO/DroidSerif.ttf +0 -0
- openimageio-3.0.3.1.dist-info/METADATA +197 -0
- openimageio-3.0.3.1.dist-info/RECORD +37 -0
- openimageio-3.0.3.1.dist-info/WHEEL +5 -0
- openimageio-3.0.3.1.dist-info/entry_points.txt +4 -0
- openimageio-3.0.3.1.dist-info/licenses/LICENSE.md +201 -0
- openimageio-3.0.3.1.dist-info/licenses/THIRD-PARTY.md +310 -0
|
Binary file
|
OpenImageIO/__init__.py
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Copyright Contributors to the OpenImageIO project.
|
|
2
|
+
# SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
# https://github.com/AcademySoftwareFoundation/OpenImageIO
|
|
4
|
+
|
|
5
|
+
import os
|
|
6
|
+
import sys
|
|
7
|
+
import platform
|
|
8
|
+
import subprocess
|
|
9
|
+
|
|
10
|
+
_here = os.path.abspath(os.path.dirname(__file__))
|
|
11
|
+
|
|
12
|
+
# Set $OpenImageIO_ROOT if not already set *before* importing the OpenImageIO module.
|
|
13
|
+
if not os.getenv("OpenImageIO_ROOT"):
|
|
14
|
+
if all([os.path.exists(os.path.join(_here, i)) for i in ["share", "bin", "lib"]]):
|
|
15
|
+
os.environ["OpenImageIO_ROOT"] = _here
|
|
16
|
+
|
|
17
|
+
if platform.system() == "Windows":
|
|
18
|
+
# Python wheel module is dynamically linked to the OIIO DLL present in the bin folder.
|
|
19
|
+
_bin_dir = os.path.join(_here, "bin")
|
|
20
|
+
if os.path.exists(_bin_dir):
|
|
21
|
+
os.add_dll_directory(_bin_dir)
|
|
22
|
+
elif sys.version_info >= (3, 8):
|
|
23
|
+
# This works around the python 3.8 change to stop loading DLLs from PATH on Windows.
|
|
24
|
+
# We reproduce the old behavior by manually tokenizing PATH, checking that the
|
|
25
|
+
# directories exist and are not ".", then add them to the DLL load path.
|
|
26
|
+
# This behavior is disabled by default, but can be enabled by setting the environment
|
|
27
|
+
# variable "OPENIMAGEIO_PYTHON_LOAD_DLLS_FROM_PATH" to "1"
|
|
28
|
+
if os.getenv("OPENIMAGEIO_PYTHON_LOAD_DLLS_FROM_PATH", "0") == "1":
|
|
29
|
+
for path in os.getenv("PATH", "").split(os.pathsep):
|
|
30
|
+
if os.path.exists(path) and path != ".":
|
|
31
|
+
os.add_dll_directory(path)
|
|
32
|
+
|
|
33
|
+
from .OpenImageIO import * # type: ignore # noqa: F401, F403, E402
|
|
34
|
+
|
|
35
|
+
__doc__ = """
|
|
36
|
+
OpenImageIO is a toolset for reading, writing, and manipulating image files of
|
|
37
|
+
any image file format relevant to VFX / animation via a format-agnostic API
|
|
38
|
+
with a feature set, scalability, and robustness needed for feature film
|
|
39
|
+
production.
|
|
40
|
+
"""[1:-1]
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
def _call_program(name, args):
|
|
44
|
+
bin_dir = os.path.join(os.path.dirname(__file__), 'bin')
|
|
45
|
+
return subprocess.call([os.path.join(bin_dir, name)] + args)
|
|
46
|
+
|
|
47
|
+
def _command_line():
|
|
48
|
+
name = os.path.basename(sys.argv[0])
|
|
49
|
+
raise SystemExit(_call_program(name, sys.argv[1:]))
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
OpenImageIO/bin/tiff.dll
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
OpenImageIO/lib/tiff.lib
ADDED
|
Binary file
|
|
Binary file
|
OpenImageIO/lib/zlib.lib
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: OpenImageIO
|
|
3
|
+
Version: 3.0.3.1
|
|
4
|
+
Summary: Reading, writing, and processing images in a wide variety of file formats, using a format-agnostic API, aimed at VFX applications.
|
|
5
|
+
Author-Email: Larry Gritz <lg@larrygritz.com>, OpenImageIO Contributors <oiio-dev@lists.aswf.io>
|
|
6
|
+
Maintainer-Email: OpenImageIO Contributors <oiio-dev@lists.aswf.io>
|
|
7
|
+
License: Apache-2.0
|
|
8
|
+
Classifier: Natural Language :: English
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
18
|
+
Classifier: Topic :: Multimedia :: Graphics
|
|
19
|
+
Classifier: Topic :: Multimedia :: Video
|
|
20
|
+
Classifier: Topic :: Multimedia :: Video :: Display
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Project-URL: Homepage, https://openimageio.org/
|
|
23
|
+
Project-URL: Source, https://github.com/AcademySoftwareFoundation/OpenImageIO
|
|
24
|
+
Project-URL: Documentation, https://docs.openimageio.org
|
|
25
|
+
Project-URL: Issues, https://github.com/AcademySoftwareFoundation/OpenImageIO/issues
|
|
26
|
+
Requires-Python: >=3.8
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
|
|
29
|
+
<!-- SPDX-License-Identifier: CC-BY-4.0 -->
|
|
30
|
+
<!-- Copyright Contributors to the OpenImageIO Project. -->
|
|
31
|
+
<p align="center">
|
|
32
|
+
<img src="ASWF/logos/openimageio-horizontal-gradient.png">
|
|
33
|
+
</p>
|
|
34
|
+
|
|
35
|
+
[](https://github.com/AcademySoftwareFoundation/OpenImageIO/blob/main/LICENSE.md)
|
|
36
|
+
[](https://github.com/AcademySoftwareFoundation/OpenImageIO/actions/workflows/ci.yml)
|
|
37
|
+
[](https://bestpractices.coreinfrastructure.org/projects/2694)
|
|
38
|
+
[](https://repology.org/project/openimageio/versions)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
Introduction
|
|
42
|
+
------------
|
|
43
|
+
|
|
44
|
+
**Mission statement**: OpenImageIO is a toolset for reading, writing, and
|
|
45
|
+
manipulating image files of any image file format relevant to VFX / animation
|
|
46
|
+
via a format-agnostic API with a feature set, scalability, and robustness
|
|
47
|
+
needed for feature film production.
|
|
48
|
+
|
|
49
|
+
The primary target audience for OIIO is VFX studios and developers of
|
|
50
|
+
tools such as renderers, compositors, viewers, and other image-related
|
|
51
|
+
software you'd find in a production pipeline.
|
|
52
|
+
|
|
53
|
+
OpenImageIO consists of:
|
|
54
|
+
|
|
55
|
+
* Simple but powerful ImageInput and ImageOutput APIs that provide
|
|
56
|
+
an abstraction for reading and writing image files of nearly any
|
|
57
|
+
format, without the calling application needing to know any of the
|
|
58
|
+
details of these file formats, and indeed without the calling
|
|
59
|
+
application needing to be aware of which formats are available.
|
|
60
|
+
|
|
61
|
+
* A library that manages subclasses of ImageInput and ImageOutput that
|
|
62
|
+
implement I/O from specific file formats, with each file format's
|
|
63
|
+
implementation stored as a plug-in. Therefore, an application using
|
|
64
|
+
OpenImageIO's APIs can read and write any image file for which a
|
|
65
|
+
plugin can be found at runtime.
|
|
66
|
+
|
|
67
|
+
* Plugins implementing I/O for several popular image file formats,
|
|
68
|
+
including TIFF, JPEG/JFIF, JPEG XL, OpenEXR, PNG, HDR/RGBE, ICO, BMP, Targa,
|
|
69
|
+
JPEG-2000, RMan Zfile, FITS, DDS, Softimage PIC, PNM, DPX, Cineon,
|
|
70
|
+
IFF, OpenVDB, Ptex, Photoshop PSD, Wavefront RLA, SGI, WebP,
|
|
71
|
+
GIF, DICOM, HEIF/HEIC/AVIF, many "RAW" digital camera formats, and a variety
|
|
72
|
+
of movie formats (readable as individual frames). More are being developed
|
|
73
|
+
all the time.
|
|
74
|
+
|
|
75
|
+
* Several command line image tools based on these classes, including
|
|
76
|
+
oiiotool (command-line format conversion and image processing), iinfo
|
|
77
|
+
(print detailed info about images), iconvert (convert among formats,
|
|
78
|
+
data types, or modify metadata), idiff (compare images), igrep (search
|
|
79
|
+
images for matching metadata), and iv (an image viewer). Because these
|
|
80
|
+
tools are based on ImageInput/ImageOutput, they work with any image
|
|
81
|
+
formats for which ImageIO plugins are available.
|
|
82
|
+
|
|
83
|
+
* An ImageCache class that transparently manages a cache so that it
|
|
84
|
+
can access truly vast amounts of image data (tens of thousands of
|
|
85
|
+
image files totaling multiple TB) very efficiently using only a tiny
|
|
86
|
+
amount (tens of megabytes at most) of runtime memory.
|
|
87
|
+
|
|
88
|
+
* A TextureSystem class that provides filtered MIP-map texture
|
|
89
|
+
lookups, atop the nice caching behavior of ImageCache. This is used
|
|
90
|
+
in commercial renderers and has been used on many large VFX and
|
|
91
|
+
animated films.
|
|
92
|
+
|
|
93
|
+
* ImageBuf and ImageBufAlgo functions -- a simple class for storing
|
|
94
|
+
and manipulating whole images in memory, and a collection of the
|
|
95
|
+
most useful computations you might want to do involving those images,
|
|
96
|
+
including many image processing operations.
|
|
97
|
+
|
|
98
|
+
* Python bindings for all of the major APIs.
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
🏢 Project administration and Licensing
|
|
103
|
+
---------------------------------------
|
|
104
|
+
|
|
105
|
+
OpenImageIO is (c) Copyright Contributors to the OpenImageIO project.
|
|
106
|
+
|
|
107
|
+
For original code, we use the [Apache-2.0 license](LICENSE.md), and for
|
|
108
|
+
documentation, the [Creative Commons Attribution 4.0 Unported
|
|
109
|
+
License](http://creativecommons.org/licenses/by/4.0/). In 2023 we asked
|
|
110
|
+
historical users to [relicense](RELICENSING.md) from the original BSD-3-clause
|
|
111
|
+
license to Apache-2.0, and over 99.86% of lines of code have been relicensed
|
|
112
|
+
to Apache-2.0. A small amount of code incorporated into this repository from
|
|
113
|
+
other projects are covered by compatible [third-party open source
|
|
114
|
+
licenses](THIRD-PARTY.md).
|
|
115
|
+
|
|
116
|
+
The OpenImageIO project is part of the [Academy Software
|
|
117
|
+
Foundation](https://www.aswf.io/), a part of the Linux Foundation formed in
|
|
118
|
+
collaboration with the Academy of Motion Picture Arts and Sciences. The
|
|
119
|
+
[Technical Charter](aswf/Technical-Charter.md) and [Project
|
|
120
|
+
Governance](GOVERNANCE.md) explain how the project is run, who makes
|
|
121
|
+
decisions, etc. Please be aware of our [Code of Conduct](CODE_OF_CONDUCT.md).
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
💁 User Documentation
|
|
125
|
+
---------------------
|
|
126
|
+
|
|
127
|
+
[OpenImageIO Documentation](https://docs.openimageio.org)
|
|
128
|
+
is the best place to start if you are interested in how to use OpenImageIO,
|
|
129
|
+
its APIs, its component programs (once they are built). There is also a [PDF
|
|
130
|
+
version](https://readthedocs.org/projects/openimageio/downloads/pdf/latest/).
|
|
131
|
+
|
|
132
|
+
Additional resources:
|
|
133
|
+
|
|
134
|
+
- [User quick start](docs/QuickStart.md) is a quick example of using
|
|
135
|
+
OpenImageIO in Python, C++, and the command line.
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
👷 Building and installing OpenImageIO
|
|
139
|
+
--------------------------------------
|
|
140
|
+
- [Build and installation instructions](INSTALL.md) for OpenImageIO. Such
|
|
141
|
+
as it is. This could use some work, particularly for Windows.
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
🚑 Contact & reporting problems
|
|
145
|
+
-------------------------------
|
|
146
|
+
|
|
147
|
+
Simple "how do I...", "I'm having trouble", or "is this a bug" questions are
|
|
148
|
+
best asked on the [oiio-dev developer mail
|
|
149
|
+
list](https://lists.aswf.io/g/oiio-dev). That's where the most people will see
|
|
150
|
+
it and potentially be able to answer your question quickly (more so than a GH
|
|
151
|
+
"issue"). For quick questions, you could also try the [ASWF
|
|
152
|
+
Slack](https://slack.aswf.io) `#openimageio` channel.
|
|
153
|
+
|
|
154
|
+
Bugs, build problems, and discovered vulnerabilities that you are relatively
|
|
155
|
+
certain is a legit problem in the code, and **for which you can give clear
|
|
156
|
+
instructions for how to reproduce**, should be [reported as
|
|
157
|
+
issues](https://github.com/AcademySoftwareFoundation/OpenImageIO/issues).
|
|
158
|
+
|
|
159
|
+
If confidentiality precludes a public question or issue, you may contact us
|
|
160
|
+
privately at [info@openimageio.org](info@openimageio.org), or for
|
|
161
|
+
security-related issues [security@openimageio.org](security@openimageio.org).
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
🔧 Contributing and developer documentation
|
|
165
|
+
-------------------------------------------
|
|
166
|
+
|
|
167
|
+
OpenImageIO welcomes code contributions, and [nearly 200 people](CREDITS.md)
|
|
168
|
+
have done so over the years. We take code contributions via the usual GitHub
|
|
169
|
+
pull request (PR) mechanism.
|
|
170
|
+
|
|
171
|
+
* [Architecture overview](docs/dev/Architecture.md) is a high-level
|
|
172
|
+
description of the major classes and their relationships.
|
|
173
|
+
* [CONTRIBUTING](CONTRIBUTING.md) has detailed instructions about the
|
|
174
|
+
development process.
|
|
175
|
+
* [ROADMAP](docs/ROADMAP.md) is a high-level overview of the current
|
|
176
|
+
development priorities for the next annual release, expected in September,
|
|
177
|
+
2024.
|
|
178
|
+
* [RELEASING](docs/dev/RELEASING.md) explains our policies and procedures for
|
|
179
|
+
making releases. We have a major, possibly-compatibility-breaking, release
|
|
180
|
+
annually in September/October, and minor bug fix and safe feature addition
|
|
181
|
+
release at the beginning of every month.
|
|
182
|
+
* [Building the docs](src/doc/Building_the_docs.md) has instructions for
|
|
183
|
+
building the documentation locally, which may be helpful if you are editing
|
|
184
|
+
the documentation in nontrivial ways and want to preview the appearance.
|
|
185
|
+
* Other developer documentation is in the [docs/dev](docs/dev) directory.
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
☎️ Communications channels and additional resources
|
|
189
|
+
--------------------------------------------------
|
|
190
|
+
|
|
191
|
+
* [Main web page](http://www.openimageio.org)
|
|
192
|
+
* [GitHub project page](http://github.com/AcademySoftwareFoundation/OpenImageIO)
|
|
193
|
+
* [Developer mail list](https://lists.aswf.io/g/oiio-dev)
|
|
194
|
+
* [ASWF Slack](https://slack.aswf.io) (look for the `#openimageio` channel)
|
|
195
|
+
* Biweekly Technical Steering Committee (TSC) Zoom meetings are on the [ASWF
|
|
196
|
+
Calendar](https://calendar.openimageio.org) (click on the OpenImageIO
|
|
197
|
+
meeting entries, every second Monday, to get the Zoom link, anyone may join)
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
OpenImageIO/__init__.py,sha256=QaYEaNceIit05OvpglmmY9UaQP0a80HVEvFXr_EH8cw,2127
|
|
2
|
+
OpenImageIO/bin/Iex_v_3_2_4_OpenImageIO_v3_0.dll,sha256=RbVeOBTJeLBEOQ3KPahZddemzdaq0tdjJKcLwToPUrA,282112
|
|
3
|
+
OpenImageIO/bin/IlmThread_v_3_2_4_OpenImageIO_v3_0.dll,sha256=z2wT1qBBhfTNSO5-R0FUAvYTCOVgFokSkDCq1y9pRK8,46592
|
|
4
|
+
OpenImageIO/bin/Imath_v_3_1_10_OpenImageIO_v3_0.dll,sha256=6fewucoWASAwZD4u4678VGYB4ynyOLHKL6HCB9rDBz0,336896
|
|
5
|
+
OpenImageIO/bin/maketx.exe,sha256=7zRgOt9SNpF5X_JLafBGecUnFIcdf5D00lOF1d2RDgk,133120
|
|
6
|
+
OpenImageIO/bin/oiiotool.exe,sha256=6VIfn5LoFgosyaUeNxv8E7CHC2JuwDQtIQ31nBNEZyo,844800
|
|
7
|
+
OpenImageIO/bin/OpenEXR_v_3_2_4_OpenImageIO_v3_0.dll,sha256=JjwtVQy81OicRzSE9BKbdn7GFl2qVrrOmOuoYzfysBw,2958336
|
|
8
|
+
OpenImageIO/bin/OpenEXRCore_v_3_2_4_OpenImageIO_v3_0.dll,sha256=OTYCOTCzQ4SGFkbhdvInmTL15Xa-vCLsTEbmSwvXvqk,2284544
|
|
9
|
+
OpenImageIO/bin/OpenEXRUtil_v_3_2_4_OpenImageIO_v3_0.dll,sha256=oLqFw9amu21eGFX08oyr5ILbax6nl0SXjKmMPbEVmoI,164352
|
|
10
|
+
OpenImageIO/bin/OpenImageIO.dll,sha256=-wowuR5QseQjZ0SLszMjVFUnyA09Fzg4GPHsbBHeu78,10546176
|
|
11
|
+
OpenImageIO/bin/OpenImageIO_Util.dll,sha256=JA2wrrzmAGQSkNdljy78muhZ-nvA7pW3OFM9BRzOldI,643072
|
|
12
|
+
OpenImageIO/bin/tiff.dll,sha256=Cf6oJD0vKUo3Durmb977oPb2gTugHmxnuVE6w_Og6qk,1014784
|
|
13
|
+
OpenImageIO/bin/zlib1.dll,sha256=eZeg-gkXlsvtpk7ISb_xcfFxdKTQqPVY3Us8D8g7HTI,85504
|
|
14
|
+
OpenImageIO/lib/Iex_v_3_2_4_OpenImageIO_v3_0.lib,sha256=aS_ipxyam7jPy_tIgim_Km18AO8RJJy25JXMjv3dL3k,733528
|
|
15
|
+
OpenImageIO/lib/IlmThread_v_3_2_4_OpenImageIO_v3_0.lib,sha256=07HDuu3jMi1UlXWyKDZkejz56eMIPuB0GCQo5jQlwg4,16332
|
|
16
|
+
OpenImageIO/lib/Imath_v_3_1_10_OpenImageIO_v3_0.lib,sha256=vZhnW1Y4zhsJtxtjwieAnlVKZt5q-lCW3iTIiOrXIy4,22966
|
|
17
|
+
OpenImageIO/lib/OpenEXR_v_3_2_4_OpenImageIO_v3_0.lib,sha256=NEjora3c5J-cQAtDfA9ozzN2bZ2UBIuNsSptck3gU_U,1343702
|
|
18
|
+
OpenImageIO/lib/OpenEXRCore_v_3_2_4_OpenImageIO_v3_0.lib,sha256=1J4hl6DRHG__ytFUPJof9Adgy9w6tlmwZH3HxGk5zI4,41384
|
|
19
|
+
OpenImageIO/lib/OpenEXRUtil_v_3_2_4_OpenImageIO_v3_0.lib,sha256=WZ-DmEr9lQ_m30YHg302fQqLQFpUbs1fqYvAg_GT0rk,155766
|
|
20
|
+
OpenImageIO/lib/tiff.lib,sha256=OeRn1LLFiQGjBS92v-lUaTBQKYT4yJzDlt2nP8tMqfs,41966
|
|
21
|
+
OpenImageIO/lib/tiffxx.lib,sha256=Q0mgBg8DbcUgLsrOFJ8SU9sjFGELCYSCBQ9sA0o54Gg,19394
|
|
22
|
+
OpenImageIO/lib/zlib.lib,sha256=LFCy9OiGFTgZUKmyvx4o0ssFIS8CRDNin1Os4seoEtY,16746
|
|
23
|
+
OpenImageIO/lib/zlibstatic.lib,sha256=rIwXw9odm5uc0LkinipHg6J2u8dB0JN9zJXsq7gx9RY,186478
|
|
24
|
+
OpenImageIO/OpenImageIO.cp313-win_amd64.pyd,sha256=3P-cx7fpH-H6hV9Wt80E3y2LanVRY2C-rDu9nQSLgw8,1230336
|
|
25
|
+
OpenImageIO/share/fonts/OpenImageIO/DroidSans-Bold.ttf,sha256=sOZ2q1LphZoQvan0STvIGe2ETOTRsFW5uoGOJtKHwfw,42480
|
|
26
|
+
OpenImageIO/share/fonts/OpenImageIO/DroidSans.ttf,sha256=kPCgU9YbpQQuHC2wDklYS8iw0LPgf7FgnDkbVBsKtPo,41028
|
|
27
|
+
OpenImageIO/share/fonts/OpenImageIO/DroidSansMono.ttf,sha256=MFEurbRgSOPfrwSL4ODCdtER_B3pc3EZcQSfQl6_-mc,117072
|
|
28
|
+
OpenImageIO/share/fonts/OpenImageIO/DroidSerif-Bold.ttf,sha256=K7mEhqdaDuTXsiOzdN4k_CLvDP5NGpNEtrZYPQRZwbA,48880
|
|
29
|
+
OpenImageIO/share/fonts/OpenImageIO/DroidSerif-BoldItalic.ttf,sha256=8VG_pEquKZPV1aZ1TBNY7hQ_lP9w-0Wmt4UlD-ukWxQ,45652
|
|
30
|
+
OpenImageIO/share/fonts/OpenImageIO/DroidSerif-Italic.ttf,sha256=QK-U5Zm2pggs1fVx9FcekOqvvu0UirFjhOJoEB-Nea8,40416
|
|
31
|
+
OpenImageIO/share/fonts/OpenImageIO/DroidSerif.ttf,sha256=QeZbMN1huENzaTPgMfMTk-nbTNurrt7Q9UGi30788vg,43648
|
|
32
|
+
openimageio-3.0.3.1.dist-info/METADATA,sha256=H0USiNMmAY-dGFKyXAVQn2uQMqtIB5bEi57K4B-u_GI,9725
|
|
33
|
+
openimageio-3.0.3.1.dist-info/WHEEL,sha256=EIu1Wj122E8B0k-vZcnNpwplI01di2dp-9WoG1ZyqT0,106
|
|
34
|
+
openimageio-3.0.3.1.dist-info/entry_points.txt,sha256=gOPEalL_-k8LCDZeeaPkvhjrdkO50DA3jL-hrLHN7y4,91
|
|
35
|
+
openimageio-3.0.3.1.dist-info/licenses/LICENSE.md,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
|
|
36
|
+
openimageio-3.0.3.1.dist-info/licenses/THIRD-PARTY.md,sha256=a4Q7oL4eic-7BL2pSf9dxk2fyTL4wYOX7O1JpAfdJi4,13728
|
|
37
|
+
openimageio-3.0.3.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,310 @@
|
|
|
1
|
+
See [LICENSE.md](LICENSE.md) for the main open source license of original
|
|
2
|
+
code written for the OpenImageIO project, which is the Apache-2.0 license.
|
|
3
|
+
|
|
4
|
+
The remainder of this file reproduces the open source licensing details
|
|
5
|
+
of other projects that have been imported, incorporated into, or derived
|
|
6
|
+
into parts of OIIO.
|
|
7
|
+
|
|
8
|
+
In no particular order:
|
|
9
|
+
|
|
10
|
+
-------------------------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
BSD 3-Clause License (https://opensource.org/license/bsd-3-clause)
|
|
13
|
+
SPDX-License-Identifier: BSD-3-Clause
|
|
14
|
+
|
|
15
|
+
* OpenImageIO prior to July 1, 2023
|
|
16
|
+
|
|
17
|
+
Code that was contributed to OpenImageIO prior to July 1 2023, and has not
|
|
18
|
+
yet been [relicensed](RELICENSING.md), was contributed under the BSD
|
|
19
|
+
3-clause license. Currently, less than 0.15% of the codebase (by lines of
|
|
20
|
+
code) remains under this license.
|
|
21
|
+
|
|
22
|
+
* Gelato, Copyright (c) 2004 by NVIDIA Corp.
|
|
23
|
+
|
|
24
|
+
The initial (version 0.1) code found in imageio.h, fmath.h, filter.h,
|
|
25
|
+
argparse, and the JPEG reader/writer had elements derived from
|
|
26
|
+
BSD-licensed example code and headers from NVIDIA's Gelato Renderer. It's
|
|
27
|
+
not clear that any of that original code still survives in the modern
|
|
28
|
+
OIIO, but since some elements are derived from that, we still acknowledge
|
|
29
|
+
the original copyright here.
|
|
30
|
+
|
|
31
|
+
* Open Shading Language. Copyright contributors to the OSL project.
|
|
32
|
+
https://github.com/AcademySoftwareFoundation/OpenShadingLanguage
|
|
33
|
+
|
|
34
|
+
A few parts here and there, notably parts of fmath.h and many of the CMake
|
|
35
|
+
files, contain code that was originally developed for Open Shading
|
|
36
|
+
Language but subsequently moved to OIIO.
|
|
37
|
+
|
|
38
|
+
* OpenColorIO (c) Copyright contributors to the OpenColorIO Project.
|
|
39
|
+
https://github.com/AcademySoftwareFoundation/OpenColorIO
|
|
40
|
+
|
|
41
|
+
The sample OpenColorIO configurations in our testsuite are borrowed from
|
|
42
|
+
this ASWF project, also BSD-3-Clause licensed.
|
|
43
|
+
|
|
44
|
+
* OpenEXR/Imath (c) Copyright contributors to the OpenEXR Project.
|
|
45
|
+
https://github.com/AcademySoftwareFoundation/Imath
|
|
46
|
+
|
|
47
|
+
Some templates in vecparam.h were first developed for Imath.
|
|
48
|
+
|
|
49
|
+
* DPX reader/writer (c) Copyright 2009 Patrick A. Palmer.
|
|
50
|
+
https://github.com/patrickpalmer/dpx
|
|
51
|
+
|
|
52
|
+
* KissFFT (c) Copyright 2003-2010 Mark Borgerding
|
|
53
|
+
https://github.com/mborgerding/kissfft
|
|
54
|
+
|
|
55
|
+
* FindOpenVDB.cmake (c) Copyright 2015 Blender Foundation, BSD license.
|
|
56
|
+
|
|
57
|
+
* Cryptomatte project, Copyright (c) 2014, 2015, 2016 Psyop Media Company,
|
|
58
|
+
LLC. https://github.com/Psyop/Cryptomatte
|
|
59
|
+
|
|
60
|
+
The test image in testsuite/cryptomatte/src/cryptoasset.exr is a small crop
|
|
61
|
+
of a sample image from the Cryptomatte project.
|
|
62
|
+
|
|
63
|
+
Redistribution and use in source and binary forms, with or without
|
|
64
|
+
modification, are permitted provided that the following conditions are met:
|
|
65
|
+
|
|
66
|
+
- Redistributions of source code must retain the above copyright notice,
|
|
67
|
+
this list of conditions and the following disclaimer.
|
|
68
|
+
|
|
69
|
+
- Redistributions in binary form must reproduce the above copyright
|
|
70
|
+
notice, this list of conditions and the following disclaimer in the
|
|
71
|
+
documentation and/or other materials provided with the distribution.
|
|
72
|
+
|
|
73
|
+
- Neither the name of the copyright holder nor the names of its
|
|
74
|
+
contributors may be used to endorse or promote products derived from
|
|
75
|
+
this software without specific prior written permission.
|
|
76
|
+
|
|
77
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
78
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
79
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
80
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
81
|
+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
82
|
+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
83
|
+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
84
|
+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
85
|
+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
86
|
+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
87
|
+
POSSIBILITY OF SUCH DAMAGE.
|
|
88
|
+
|
|
89
|
+
-------------------------------------------------------------------------
|
|
90
|
+
|
|
91
|
+
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
|
|
92
|
+
SPDX-License-Identifier: BSD-2-Clause
|
|
93
|
+
|
|
94
|
+
* xxHash - Fast Hash algorithm
|
|
95
|
+
Copyright (C) 2012-2014, Yann Collet.
|
|
96
|
+
You can contact the author at :
|
|
97
|
+
- xxHash source repository : https://github.com/Cyan4973/xxHash
|
|
98
|
+
- public discussion board : https://groups.google.com/forum/#!forum/lz4c
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
Redistribution and use in source and binary forms, with or without
|
|
102
|
+
modification, are permitted provided that the following conditions are
|
|
103
|
+
met:
|
|
104
|
+
|
|
105
|
+
* Redistributions of source code must retain the above copyright
|
|
106
|
+
notice, this list of conditions and the following disclaimer.
|
|
107
|
+
* Redistributions in binary form must reproduce the above
|
|
108
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
109
|
+
in the documentation and/or other materials provided with the
|
|
110
|
+
distribution.
|
|
111
|
+
|
|
112
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
113
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
114
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
115
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
116
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
117
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
118
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
119
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
120
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
121
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
122
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
123
|
+
|
|
124
|
+
-------------------------------------------------------------------------
|
|
125
|
+
|
|
126
|
+
MIT License
|
|
127
|
+
SPDX-License-Identifier: MIT
|
|
128
|
+
|
|
129
|
+
* PugiXML http://pugixml.org/ https://github.com/zeux/pugixml
|
|
130
|
+
Copyright (c) 2006-2018 Arseny Kapoulkine
|
|
131
|
+
|
|
132
|
+
* FarmHash, by Geoff Pike https://github.com/google/farmhash
|
|
133
|
+
(c) Copyright 2014 Google, Inc., MIT license.
|
|
134
|
+
|
|
135
|
+
* FindTBB.cmake. Copyright (c) 2015 Justus Calvin
|
|
136
|
+
|
|
137
|
+
* {fmt} library - https://github.com/fmtlib/fmt
|
|
138
|
+
Copyright (c) 2012 - present, Victor Zverovich
|
|
139
|
+
|
|
140
|
+
* UTF-8 decoder function from http://bjoern.hoehrmann.de/utf-8/decoder/dfa/
|
|
141
|
+
Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern@hoehrmann.de>
|
|
142
|
+
|
|
143
|
+
* fasthash
|
|
144
|
+
Copyright (C) 2012 Zilong Tan (eric.zltan@gmail.com)
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
148
|
+
a copy of this software and associated documentation files (the
|
|
149
|
+
"Software"), to deal in the Software without restriction, including
|
|
150
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
151
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
152
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
153
|
+
the following conditions:
|
|
154
|
+
|
|
155
|
+
The above copyright notice and this permission notice shall be included
|
|
156
|
+
in all copies or substantial portions of the Software.
|
|
157
|
+
|
|
158
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
159
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
160
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
161
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
162
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
163
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
164
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
165
|
+
|
|
166
|
+
-------------------------------------------------------------------------
|
|
167
|
+
|
|
168
|
+
Apache 2.0 License.
|
|
169
|
+
SPDX-License-Identifier: Apache-2.0
|
|
170
|
+
|
|
171
|
+
* CTPL thread pool https://github.com/vit-vit/CTPL
|
|
172
|
+
Copyright 2014 Vitaliy Vitsentiy.
|
|
173
|
+
|
|
174
|
+
* Droid fonts from the Android SDK. http://www.droidfonts.com
|
|
175
|
+
Copyright Google, Inc.
|
|
176
|
+
|
|
177
|
+
* function_view.h contains code derived from LLVM. https://llvm.org
|
|
178
|
+
Copyright (c) 2003-2018 University of Illinois at Urbana-Champaign.
|
|
179
|
+
This is licensed under the Apache 2.0 license with LLVM Exceptions.
|
|
180
|
+
https://llvm.org/docs/DeveloperPolicy.html#open-source-licensing-terms
|
|
181
|
+
|
|
182
|
+
* ninjatracing.py utility for build profiling is Apache-2.0 licensed
|
|
183
|
+
and comes from https://github.com/nico/ninjatracing.
|
|
184
|
+
Copyright 2018 Nico Weber.
|
|
185
|
+
|
|
186
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
187
|
+
you may not use this file except in compliance with the License.
|
|
188
|
+
You may obtain a copy of the License at
|
|
189
|
+
|
|
190
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
191
|
+
|
|
192
|
+
Unless required by applicable law or agreed to in writing, software
|
|
193
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
194
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
195
|
+
See the License for the specific language governing permissions and
|
|
196
|
+
limitations under the License.
|
|
197
|
+
|
|
198
|
+
-------------------------------------------------------------------------
|
|
199
|
+
|
|
200
|
+
Boost Software License - Version 1.0
|
|
201
|
+
SPDX-License-Identifier: BSL-1.0
|
|
202
|
+
|
|
203
|
+
* Some math functions in fmath.h are derived from the
|
|
204
|
+
[Sleef library](https://sleef.org)
|
|
205
|
+
|
|
206
|
+
Copyright Naoki Shibata and contributors 2010 - 2017.
|
|
207
|
+
https://github.com/shibatch/sleef/blob/master/LICENSE.txt
|
|
208
|
+
|
|
209
|
+
Boost Software License - Version 1.0 - August 17th, 2003
|
|
210
|
+
|
|
211
|
+
Permission is hereby granted, free of charge, to any person or organization
|
|
212
|
+
obtaining a copy of the software and accompanying documentation covered by
|
|
213
|
+
this license (the "Software") to use, reproduce, display, distribute,
|
|
214
|
+
execute, and transmit the Software, and to prepare derivative works of the
|
|
215
|
+
Software, and to permit third-parties to whom the Software is furnished to
|
|
216
|
+
do so, all subject to the following:
|
|
217
|
+
|
|
218
|
+
The copyright notices in the Software and this entire statement, including
|
|
219
|
+
the above license grant, this restriction and the following disclaimer,
|
|
220
|
+
must be included in all copies of the Software, in whole or in part, and
|
|
221
|
+
all derivative works of the Software, unless such copies or derivative
|
|
222
|
+
works are solely in the form of machine-executable object code generated by
|
|
223
|
+
a source language processor.
|
|
224
|
+
|
|
225
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
226
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
227
|
+
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
|
|
228
|
+
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
|
229
|
+
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
|
230
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
231
|
+
DEALINGS IN THE SOFTWARE.
|
|
232
|
+
|
|
233
|
+
-------------------------------------------------------------------------
|
|
234
|
+
|
|
235
|
+
Zlib license
|
|
236
|
+
SPDX-License-Identifier: Zlib
|
|
237
|
+
|
|
238
|
+
* Base-64 encoder from http://www.adp-gmbh.ch/cpp/common/base64.html
|
|
239
|
+
Copyright (C) 2004-2008 René Nyffenegger
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
This source code is provided 'as-is', without any express or implied
|
|
243
|
+
warranty. In no event will the author be held liable for any damages
|
|
244
|
+
arising from the use of this software.
|
|
245
|
+
|
|
246
|
+
Permission is granted to anyone to use this software for any purpose,
|
|
247
|
+
including commercial applications, and to alter it and redistribute it
|
|
248
|
+
freely, subject to the following restrictions:
|
|
249
|
+
|
|
250
|
+
1. The origin of this source code must not be misrepresented; you must not
|
|
251
|
+
claim that you wrote the original source code. If you use this source code
|
|
252
|
+
in a product, an acknowledgment in the product documentation would be
|
|
253
|
+
appreciated but is not required.
|
|
254
|
+
2. Altered source versions must be plainly marked as such, and must not be
|
|
255
|
+
misrepresented as being the original source code.
|
|
256
|
+
3. This notice may not be removed or altered from any source distribution.
|
|
257
|
+
|
|
258
|
+
René Nyffenegger rene.nyffenegger@adp-gmbh.ch
|
|
259
|
+
|
|
260
|
+
-------------------------------------------------------------------------
|
|
261
|
+
|
|
262
|
+
Unlicense
|
|
263
|
+
SPDX-License-Identifier: Unlicense
|
|
264
|
+
|
|
265
|
+
* gif.h by Charlie Tangora. Public domain / Unlicense.
|
|
266
|
+
https://github.com/ginsweater/gif-h
|
|
267
|
+
|
|
268
|
+
* bcdec.h by Sergii "iOrange" Kudlai. MIT or Unlicense.
|
|
269
|
+
https://github.com/iOrange/bcdec
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
This is free and unencumbered software released into the public domain.
|
|
273
|
+
|
|
274
|
+
Anyone is free to copy, modify, publish, use, compile, sell, or
|
|
275
|
+
distribute this software, either in source code form or as a compiled
|
|
276
|
+
binary, for any purpose, commercial or non-commercial, and by any
|
|
277
|
+
means.
|
|
278
|
+
|
|
279
|
+
In jurisdictions that recognize copyright laws, the author or authors
|
|
280
|
+
of this software dedicate any and all copyright interest in the
|
|
281
|
+
software to the public domain. We make this dedication for the benefit
|
|
282
|
+
of the public at large and to the detriment of our heirs and
|
|
283
|
+
successors. We intend this dedication to be an overt act of
|
|
284
|
+
relinquishment in perpetuity of all present and future rights to this
|
|
285
|
+
software under copyright law.
|
|
286
|
+
|
|
287
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
288
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
289
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
290
|
+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
291
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
292
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
293
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
294
|
+
|
|
295
|
+
For more information, please refer to <http://unlicense.org>
|
|
296
|
+
|
|
297
|
+
-------------------------------------------------------------------------
|
|
298
|
+
|
|
299
|
+
Public domain
|
|
300
|
+
|
|
301
|
+
* lookup3 code by Bob Jenkins, Public Domain.
|
|
302
|
+
http://burtleburtle.net/bob/c/lookup3.c
|
|
303
|
+
|
|
304
|
+
* The SHA-1 implementation we use is public domain by Dominik Reichl.
|
|
305
|
+
http://www.dominik-reichl.de
|
|
306
|
+
|
|
307
|
+
-------------------------------------------------------------------------
|
|
308
|
+
|
|
309
|
+
If we have left anything out, it is unintentional. Please let us know.
|
|
310
|
+
|