@cesdk/node-native 1.77.0-nightly.20260610

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.
Files changed (47) hide show
  1. package/LICENSE.md +137 -0
  2. package/README.md +474 -0
  3. package/ThirdPartyLicenses.md +1041 -0
  4. package/assets/ly.img.cesdk/fonts/imgly_font_inter_semibold.otf +0 -0
  5. package/assets/ly.img.cesdk/icons/ErrorAudio.svg +5 -0
  6. package/assets/ly.img.cesdk/icons/ErrorConnection.svg +5 -0
  7. package/assets/ly.img.cesdk/icons/ErrorImage.svg +6 -0
  8. package/assets/ly.img.cesdk/icons/ErrorUnknown.svg +3 -0
  9. package/assets/ly.img.cesdk/icons/ErrorVideo.svg +6 -0
  10. package/assets/ly.img.cesdk/icons/Move.svg +3 -0
  11. package/assets/ly.img.cesdk/icons/RotateIndicator.svg +5 -0
  12. package/assets/ly.img.cesdk/icu/icudt74l.dat +0 -0
  13. package/assets/ly.img.cesdk/presets/.keep +0 -0
  14. package/assets/ly.img.cesdk/shaders/adjustments.sksl +106 -0
  15. package/assets/ly.img.cesdk/shaders/black_and_white_color_mixer.sksl +152 -0
  16. package/assets/ly.img.cesdk/shaders/common/ubq_adjustments.sksl +102 -0
  17. package/assets/ly.img.cesdk/shaders/common/ubq_color_conversions.sksl +354 -0
  18. package/assets/ly.img.cesdk/shaders/common/ubq_constants.sksl +13 -0
  19. package/assets/ly.img.cesdk/shaders/common/ubq_hue_constants.sksl +86 -0
  20. package/assets/ly.img.cesdk/shaders/common/ubq_noise.sksl +82 -0
  21. package/assets/ly.img.cesdk/shaders/cross_cut.sksl +38 -0
  22. package/assets/ly.img.cesdk/shaders/dot_pattern.sksl +29 -0
  23. package/assets/ly.img.cesdk/shaders/duotone_filter.sksl +26 -0
  24. package/assets/ly.img.cesdk/shaders/extrude_blur.sksl +85 -0
  25. package/assets/ly.img.cesdk/shaders/glow.sksl +31 -0
  26. package/assets/ly.img.cesdk/shaders/half_tone.sksl +14 -0
  27. package/assets/ly.img.cesdk/shaders/linocut.sksl +30 -0
  28. package/assets/ly.img.cesdk/shaders/liquid.sksl +19 -0
  29. package/assets/ly.img.cesdk/shaders/lut_filter.sksl +70 -0
  30. package/assets/ly.img.cesdk/shaders/mask_color.sksl +16 -0
  31. package/assets/ly.img.cesdk/shaders/mirror.sksl +21 -0
  32. package/assets/ly.img.cesdk/shaders/outliner.sksl +40 -0
  33. package/assets/ly.img.cesdk/shaders/pixelize.sksl +10 -0
  34. package/assets/ly.img.cesdk/shaders/placeholder_overlay_lines.sksl +18 -0
  35. package/assets/ly.img.cesdk/shaders/posterize.sksl +8 -0
  36. package/assets/ly.img.cesdk/shaders/radial_pixel.sksl +22 -0
  37. package/assets/ly.img.cesdk/shaders/recolor.sksl +57 -0
  38. package/assets/ly.img.cesdk/shaders/sharpie.sksl +74 -0
  39. package/assets/ly.img.cesdk/shaders/shifter.sksl +22 -0
  40. package/assets/ly.img.cesdk/shaders/tiltshift.sksl +21 -0
  41. package/assets/ly.img.cesdk/shaders/tv_glitch.sksl +25 -0
  42. package/assets/ly.img.cesdk/shaders/vignette.sksl +12 -0
  43. package/example.js +31 -0
  44. package/lib/index.d.ts +4072 -0
  45. package/lib/index.js +4922 -0
  46. package/lib/index.js.map +7 -0
  47. package/package.json +59 -0
@@ -0,0 +1,1041 @@
1
+ ## cereal (http://uscilab.github.io/cereal/)
2
+
3
+ Copyright (c) 2014, Randolph Voorhies, Shane Grant
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+ _ Redistributions of source code must retain the above copyright
9
+ notice, this list of conditions and the following disclaimer.
10
+ _ Redistributions in binary form must reproduce the above copyright
11
+ notice, this list of conditions and the following disclaimer in the
12
+ documentation and/or other materials provided with the distribution. \* Neither the name of cereal nor the
13
+ names of its contributors may be used to endorse or promote products
14
+ derived from this software without specific prior written permission.
15
+
16
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
+ DISCLAIMED. IN NO EVENT SHALL RANDOLPH VOORHIES OR SHANE GRANT BE LIABLE FOR ANY
20
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
+
27
+ ---
28
+
29
+ ## cpr (https://whoshuu.github.io/cpr/)
30
+
31
+ The MIT License (MIT)
32
+
33
+ Copyright (c) 2017 Huu Nguyen
34
+
35
+ Permission is hereby granted, free of charge, to any person obtaining a copy
36
+ of this software and associated documentation files (the "Software"), to deal
37
+ in the Software without restriction, including without limitation the rights
38
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
39
+ copies of the Software, and to permit persons to whom the Software is
40
+ furnished to do so, subject to the following conditions:
41
+
42
+ The above copyright notice and this permission notice shall be included in
43
+ all copies or substantial portions of the Software.
44
+
45
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
46
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
47
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
48
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
49
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
50
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
51
+ THE SOFTWARE.
52
+
53
+ ---
54
+
55
+ ## cryptopp (https://cryptopp.com/)
56
+
57
+ Compilation Copyright (c) 1995-2019 by Wei Dai. All rights reserved.
58
+ This copyright applies only to this software distribution package
59
+ as a compilation, and does not imply a copyright on any particular
60
+ file in the package.
61
+
62
+ All individual files in this compilation are placed in the public domain by
63
+ Wei Dai and other contributors.
64
+
65
+ I would like to thank the following authors for placing their works into
66
+ the public domain:
67
+
68
+ Joan Daemen - 3way.cpp
69
+ Leonard Janke - cast.cpp, seal.cpp
70
+ Steve Reid - cast.cpp
71
+ Phil Karn - des.cpp
72
+ Andrew M. Kuchling - md2.cpp, md4.cpp
73
+ Colin Plumb - md5.cpp
74
+ Seal Woods - rc6.cpp
75
+ Chris Morgan - rijndael.cpp
76
+ Paulo Baretto - rijndael.cpp, skipjack.cpp, square.cpp
77
+ Richard De Moliner - safer.cpp
78
+ Matthew Skala - twofish.cpp
79
+ Kevin Springle - camellia.cpp, shacal2.cpp, ttmac.cpp, whrlpool.cpp, ripemd.cpp
80
+ Ronny Van Keer - sha3.cpp
81
+ Aumasson, Neves, Wilcox-O'Hearn and Winnerlein - blake2.cpp, blake2b_simd.cpp, blake2s_simd.cpp
82
+ Aaram Yun - aria.cpp, aria_simd.cpp
83
+ Han Lulu, Markku-Juhani O. Saarinen - sm4.cpp sm4_simd.cpp
84
+ Daniel J. Bernstein, Jack Lloyd - chacha.cpp, chacha_simd.cpp, chacha_avx.cpp
85
+ Andrew Moon - ed25519, x25519, donna_32.cpp, donna_64.cpp, donna_sse.cpp
86
+
87
+ The Crypto++ Library uses portions of Andy Polyakov's CRYPTOGAMS for Poly1305
88
+ scalar multiplication, aes_armv4.S, sha1_armv4.S and sha256_armv4.S. CRYPTOGAMS
89
+ is dual licensed with a permissive BSD-style license. The CRYPTOGAMS license is
90
+ reproduced below.
91
+
92
+ The Crypto++ Library uses portions of Jack Lloyd's Botan for ChaCha SSE2 and
93
+ AVX. Botan placed the code in public domain for Crypto++ to use.
94
+
95
+ The Crypto++ Library (as a compilation) is currently licensed under the Boost
96
+ Software License 1.0 (http://www.boost.org/users/license.html).
97
+
98
+ Boost Software License - Version 1.0 - August 17th, 2003
99
+
100
+ Permission is hereby granted, free of charge, to any person or organization
101
+ obtaining a copy of the software and accompanying documentation covered by
102
+ this license (the "Software") to use, reproduce, display, distribute,
103
+ execute, and transmit the Software, and to prepare derivative works of the
104
+ Software, and to permit third-parties to whom the Software is furnished to
105
+ do so, all subject to the following:
106
+
107
+ The copyright notices in the Software and this entire statement, including
108
+ the above license grant, this restriction and the following disclaimer,
109
+ must be included in all copies of the Software, in whole or in part, and
110
+ all derivative works of the Software, unless such copies or derivative
111
+ works are solely in the form of machine-executable object code generated by
112
+ a source language processor.
113
+
114
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
115
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
116
+ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
117
+ SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
118
+ FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
119
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
120
+ DEALINGS IN THE SOFTWARE.
121
+
122
+ CRYPTOGAMS License
123
+
124
+ Copyright (c) 2006-2017, CRYPTOGAMS by <appro@openssl.org>
125
+ All rights reserved.
126
+
127
+ Redistribution and use in source and binary forms, with or without
128
+ modification, are permitted provided that the following conditions
129
+ are met:
130
+
131
+ - Redistributions of source code must retain copyright notices,
132
+ this list of conditions and the following disclaimer.
133
+ - Redistributions in binary form must reproduce the above
134
+ copyright notice, this list of conditions and the following
135
+ disclaimer in the documentation and/or other materials
136
+ provided with the distribution.
137
+ - Neither the name of the CRYPTOGAMS nor the names of its copyright
138
+ holder and contributors may be used to endorse or promote products
139
+ derived from this software without specific prior written permission.
140
+
141
+ ---
142
+
143
+ ## easyexif (https://github.com/mayanklahiri/easyexif)
144
+
145
+ Copyright (c) 2010-2015 Mayank Lahiri
146
+ mlahiri@gmail.com
147
+ All rights reserved.
148
+
149
+ Redistribution and use in source and binary forms, with or without
150
+ modification, are permitted provided that the following conditions are met:
151
+
152
+ -- Redistributions of source code must retain the above copyright notice,
153
+ this list of conditions and the following disclaimer.
154
+ -- Redistributions in binary form must reproduce the above copyright notice,
155
+ this list of conditions and the following disclaimer in the documentation
156
+ and/or other materials provided with the distribution.
157
+
158
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESS
159
+ OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
160
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
161
+ NO EVENT SHALL THE FREEBSD PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
162
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
163
+ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
164
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
165
+ OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
166
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
167
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
168
+
169
+ ---
170
+
171
+ ## entt (https://github.com/skypjack/entt/wiki)
172
+
173
+ The MIT License (MIT)
174
+
175
+ Copyright (c) 2017-2021 Michele Caini
176
+
177
+ Permission is hereby granted, free of charge, to any person obtaining a copy
178
+ of this software and associated documentation files (the "Software"), to deal
179
+ in the Software without restriction, including without limitation the rights
180
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
181
+ copy of the Software, and to permit persons to whom the Software is
182
+ furnished to do so, subject to the following conditions:
183
+
184
+ The above copyright notice and this permission notice shall be included in all
185
+ copy or substantial portions of the Software.
186
+
187
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
188
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
189
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
190
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
191
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
192
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
193
+ SOFTWARE.
194
+
195
+ ---
196
+
197
+ ## freetype (https://www.freetype.org/)
198
+
199
+ The FreeType Project LICENSE
200
+ ----------------------------
201
+
202
+ 2006-Jan-27
203
+
204
+ Copyright 1996-2002, 2006 by
205
+ David Turner, Robert Wilhelm, and Werner Lemberg
206
+
207
+ # Introduction
208
+
209
+ The FreeType Project is distributed in several archive packages;
210
+ some of them may contain, in addition to the FreeType font engine,
211
+ various tools and contributions which rely on, or relate to, the
212
+ FreeType Project.
213
+
214
+ This license applies to all files found in such packages, and
215
+ which do not fall under their own explicit license. The license
216
+ affects thus the FreeType font engine, the test programs,
217
+ documentation and makefiles, at the very least.
218
+
219
+ This license was inspired by the BSD, Artistic, and IJG
220
+ (Independent JPEG Group) licenses, which all encourage inclusion
221
+ and use of free software in commercial and freeware products
222
+ alike. As a consequence, its main points are that:
223
+
224
+ o We don't promise that this software works. However, we will be
225
+ interested in any kind of bug reports. (`as is' distribution)
226
+
227
+ o You can use this software for whatever you want, in parts or
228
+ full form, without having to pay us. (`royalty-free' usage)
229
+
230
+ o You may not pretend that you wrote this software. If you use
231
+ it, or only parts of it, in a program, you must acknowledge
232
+ somewhere in your documentation that you have used the
233
+ FreeType code. (`credits')
234
+
235
+ We specifically permit and encourage the inclusion of this
236
+ software, with or without modifications, in commercial products.
237
+ We disclaim all warranties covering The FreeType Project and
238
+ assume no liability related to The FreeType Project.
239
+
240
+ Finally, many people asked us for a preferred form for a
241
+ credit/disclaimer to use in compliance with this license. We thus
242
+ encourage you to use the following text:
243
+
244
+ """
245
+ Portions of this software are copyright © <year> The FreeType
246
+ Project (www.freetype.org). All rights reserved.
247
+ """
248
+
249
+ Please replace <year> with the value from the FreeType version you
250
+ actually use.
251
+
252
+ # Legal Terms
253
+
254
+ 0. Definitions
255
+
256
+ ---
257
+
258
+ Throughout this license, the terms `package', `FreeType Project',
259
+ and `FreeType archive' refer to the set of files originally
260
+ distributed by the authors (David Turner, Robert Wilhelm, and
261
+ Werner Lemberg) as the `FreeType Project', be they named as alpha,
262
+ beta or final release.
263
+
264
+ `You' refers to the licensee, or person using the project, where
265
+ `using' is a generic term including compiling the project's source
266
+ code as well as linking it to form a `program' or `executable'.
267
+ This program is referred to as `a program using the FreeType
268
+ engine'.
269
+
270
+ This license applies to all files distributed in the original
271
+ FreeType Project, including all source code, binaries and
272
+ documentation, unless otherwise stated in the file in its
273
+ original, unmodified form as distributed in the original archive.
274
+ If you are unsure whether or not a particular file is covered by
275
+ this license, you must contact us to verify this.
276
+
277
+ The FreeType Project is copyright (C) 1996-2000 by David Turner,
278
+ Robert Wilhelm, and Werner Lemberg. All rights reserved except as
279
+ specified below.
280
+
281
+ 1. No Warranty
282
+
283
+ ---
284
+
285
+ THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY
286
+ KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
287
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
288
+ PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS
289
+ BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO
290
+ USE, OF THE FREETYPE PROJECT.
291
+
292
+ 2. Redistribution
293
+
294
+ ---
295
+
296
+ This license grants a worldwide, royalty-free, perpetual and
297
+ irrevocable right and license to use, execute, perform, compile,
298
+ display, copy, create derivative works of, distribute and
299
+ sublicense the FreeType Project (in both source and object code
300
+ forms) and derivative works thereof for any purpose; and to
301
+ authorize others to exercise some or all of the rights granted
302
+ herein, subject to the following conditions:
303
+
304
+ o Redistribution of source code must retain this license file
305
+ (`FTL.TXT') unaltered; any additions, deletions or changes to
306
+ the original files must be clearly indicated in accompanying
307
+ documentation. The copyright notices of the unaltered,
308
+ original files must be preserved in all copies of source
309
+ files.
310
+
311
+ o Redistribution in binary form must provide a disclaimer that
312
+ states that the software is based in part of the work of the
313
+ FreeType Team, in the distribution documentation. We also
314
+ encourage you to put an URL to the FreeType web page in your
315
+ documentation, though this isn't mandatory.
316
+
317
+ These conditions apply to any software derived from or based on
318
+ the FreeType Project, not just the unmodified files. If you use
319
+ our work, you must acknowledge us. However, no fee need be paid
320
+ to us.
321
+
322
+ 3. Advertising
323
+
324
+ ---
325
+
326
+ Neither the FreeType authors and contributors nor you shall use
327
+ the name of the other for commercial, advertising, or promotional
328
+ purposes without specific prior written permission.
329
+
330
+ We suggest, but do not require, that you use one or more of the
331
+ following phrases to refer to this software in your documentation
332
+ or advertising materials: `FreeType Project', `FreeType Engine',
333
+ `FreeType library', or `FreeType Distribution'.
334
+
335
+ As you have not signed this license, you are not required to
336
+ accept it. However, as the FreeType Project is copyrighted
337
+ material, only this license, or another one contracted with the
338
+ authors, grants you the right to use, distribute, and modify it.
339
+ Therefore, by using, distributing, or modifying the FreeType
340
+ Project, you indicate that you understand and accept all the terms
341
+ of this license.
342
+
343
+ 4. Contacts
344
+
345
+ ---
346
+
347
+ There are two mailing lists related to FreeType:
348
+
349
+ o freetype@nongnu.org
350
+
351
+ Discusses general use and applications of FreeType, as well as
352
+ future and wanted additions to the library and distribution.
353
+ If you are looking for support, start in this list if you
354
+ haven't found anything to help you in the documentation.
355
+
356
+ o freetype-devel@nongnu.org
357
+
358
+ Discusses bugs, as well as engine internals, design issues,
359
+ specific licenses, porting, etc.
360
+
361
+ Our home page can be found at
362
+
363
+ https://www.freetype.org
364
+
365
+ ---
366
+
367
+ ## glad (https://glad.dav1d.de/)
368
+
369
+ The MIT License (MIT)
370
+
371
+ Copyright (c) 2013-2018 David Herberth
372
+
373
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
374
+ this software and associated documentation files (the "Software"), to deal in
375
+ the Software without restriction, including without limitation the rights to
376
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
377
+ the Software, and to permit persons to whom the Software is furnished to do so,
378
+ subject to the following conditions:
379
+
380
+ The above copyright notice and this permission notice shall be included in all
381
+ copies or substantial portions of the Software.
382
+
383
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
384
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
385
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
386
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
387
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
388
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
389
+
390
+ ---
391
+
392
+ ## glfw (https://www.glfw.org/)
393
+
394
+ Copyright (c) 2002-2006 Marcus Geelnard
395
+
396
+ Copyright (c) 2006-2019 Camilla Löwy
397
+
398
+ This software is provided 'as-is', without any express or implied
399
+ warranty. In no event will the authors be held liable for any damages
400
+ arising from the use of this software.
401
+
402
+ Permission is granted to anyone to use this software for any purpose,
403
+ including commercial applications, and to alter it and redistribute it
404
+ freely, subject to the following restrictions:
405
+
406
+ 1. The origin of this software must not be misrepresented; you must not
407
+ claim that you wrote the original software. If you use this software
408
+ in a product, an acknowledgment in the product documentation would
409
+ be appreciated but is not required.
410
+
411
+ 2. Altered source versions must be plainly marked as such, and must not
412
+ be misrepresented as being the original software.
413
+
414
+ 3. This notice may not be removed or altered from any source
415
+ distribution.
416
+
417
+ ---
418
+
419
+ ## glm (https://github.com/g-truc/glm)
420
+
421
+ Copyright (c) 2005 - G-Truc Creation
422
+
423
+ Permission is hereby granted, free of charge, to any person obtaining a copy
424
+ of this software and associated documentation files (the "Software"), to deal
425
+ in the Software without restriction, including without limitation the rights
426
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
427
+ copies of the Software, and to permit persons to whom the Software is
428
+ furnished to do so, subject to the following conditions:
429
+
430
+ The above copyright notice and this permission notice shall be included in
431
+ all copies or substantial portions of the Software.
432
+
433
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
434
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
435
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
436
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
437
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
438
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
439
+ THE SOFTWARE.
440
+
441
+ ---
442
+
443
+ ## harfbuzz (https://harfbuzz.github.io/)
444
+
445
+ HarfBuzz is licensed under the so-called "Old MIT" license. Details follow.
446
+ For parts of HarfBuzz that are licensed under different licenses see individual
447
+ files names COPYING in subdirectories where applicable.
448
+
449
+ Copyright © 2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020 Google, Inc.
450
+ Copyright © 2018,2019,2020 Ebrahim Byagowi
451
+ Copyright © 2019,2020 Facebook, Inc.
452
+ Copyright © 2012 Mozilla Foundation
453
+ Copyright © 2011 Codethink Limited
454
+ Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies)
455
+ Copyright © 2009 Keith Stribley
456
+ Copyright © 2009 Martin Hosken and SIL International
457
+ Copyright © 2007 Chris Wilson
458
+ Copyright © 2006 Behdad Esfahbod
459
+ Copyright © 2005 David Turner
460
+ Copyright © 2004,2007,2008,2009,2010 Red Hat, Inc.
461
+ Copyright © 1998-2004 David Turner and Werner Lemberg
462
+
463
+ For full copyright notices consult the individual files in the package.
464
+
465
+ Permission is hereby granted, without written agreement and without
466
+ license or royalty fees, to use, copy, modify, and distribute this
467
+ software and its documentation for any purpose, provided that the
468
+ above copyright notice and the following two paragraphs appear in
469
+ all copies of this software.
470
+
471
+ IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
472
+ DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
473
+ ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
474
+ IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
475
+ DAMAGE.
476
+
477
+ THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
478
+ BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
479
+ FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
480
+ ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
481
+ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
482
+
483
+ ---
484
+
485
+ ## inja (https://pantor.github.io/inja/)
486
+
487
+ MIT License
488
+
489
+ Copyright (c) 2018-2021 lbersch
490
+
491
+ Permission is hereby granted, free of charge, to any person obtaining a copy
492
+ of this software and associated documentation files (the "Software"), to deal
493
+ in the Software without restriction, including without limitation the rights
494
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
495
+ copies of the Software, and to permit persons to whom the Software is
496
+ furnished to do so, subject to the following conditions:
497
+
498
+ The above copyright notice and this permission notice shall be included in all
499
+ copies or substantial portions of the Software.
500
+
501
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
502
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
503
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
504
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
505
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
506
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
507
+ SOFTWARE.
508
+
509
+ ---
510
+
511
+ Copyright (c) 2009-2018 FIRST
512
+ All rights reserved.
513
+
514
+ Redistribution and use in source and binary forms, with or without
515
+ modification, are permitted provided that the following conditions are met:
516
+ _ Redistributions of source code must retain the above copyright
517
+ notice, this list of conditions and the following disclaimer.
518
+ _ Redistributions in binary form must reproduce the above copyright
519
+ notice, this list of conditions and the following disclaimer in the
520
+ documentation and/or other materials provided with the distribution. \* Neither the name of the FIRST nor the
521
+ names of its contributors may be used to endorse or promote products
522
+ derived from this software without specific prior written permission.
523
+
524
+ THIS SOFTWARE IS PROVIDED BY FIRST AND CONTRIBUTORS``AS IS'' AND ANY
525
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
526
+ WARRANTIES OF MERCHANTABILITY NONINFRINGEMENT AND FITNESS FOR A PARTICULAR
527
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL FIRST OR CONTRIBUTORS BE LIABLE FOR
528
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
529
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
530
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
531
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
532
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
533
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
534
+
535
+ ---
536
+
537
+ ## nlohmann_json (https://json.nlohmann.me/)
538
+
539
+ MIT License
540
+
541
+ Copyright (c) 2013-2020 Niels Lohmann
542
+
543
+ Permission is hereby granted, free of charge, to any person obtaining a copy
544
+ of this software and associated documentation files (the "Software"), to deal
545
+ in the Software without restriction, including without limitation the rights
546
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
547
+ copies of the Software, and to permit persons to whom the Software is
548
+ furnished to do so, subject to the following conditions:
549
+
550
+ The above copyright notice and this permission notice shall be included in all
551
+ copies or substantial portions of the Software.
552
+
553
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
554
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
555
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
556
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
557
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
558
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
559
+ SOFTWARE.
560
+
561
+ ---
562
+
563
+ ## spirv-cross (https://github.com/KhronosGroup/SPIRV-Cross)
564
+
565
+ Apache License
566
+ Version 2.0, January 2004
567
+ http://www.apache.org/licenses/
568
+
569
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
570
+
571
+ 1. Definitions.
572
+
573
+ "License" shall mean the terms and conditions for use, reproduction,
574
+ and distribution as defined by Sections 1 through 9 of this document.
575
+
576
+ "Licensor" shall mean the copyright owner or entity authorized by
577
+ the copyright owner that is granting the License.
578
+
579
+ "Legal Entity" shall mean the union of the acting entity and all
580
+ other entities that control, are controlled by, or are under common
581
+ control with that entity. For the purposes of this definition,
582
+ "control" means (i) the power, direct or indirect, to cause the
583
+ direction or management of such entity, whether by contract or
584
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
585
+ outstanding shares, or (iii) beneficial ownership of such entity.
586
+
587
+ "You" (or "Your") shall mean an individual or Legal Entity
588
+ exercising permissions granted by this License.
589
+
590
+ "Source" form shall mean the preferred form for making modifications,
591
+ including but not limited to software source code, documentation
592
+ source, and configuration files.
593
+
594
+ "Object" form shall mean any form resulting from mechanical
595
+ transformation or translation of a Source form, including but
596
+ not limited to compiled object code, generated documentation,
597
+ and conversions to other media types.
598
+
599
+ "Work" shall mean the work of authorship, whether in Source or
600
+ Object form, made available under the License, as indicated by a
601
+ copyright notice that is included in or attached to the work
602
+ (an example is provided in the Appendix below).
603
+
604
+ "Derivative Works" shall mean any work, whether in Source or Object
605
+ form, that is based on (or derived from) the Work and for which the
606
+ editorial revisions, annotations, elaborations, or other modifications
607
+ represent, as a whole, an original work of authorship. For the purposes
608
+ of this License, Derivative Works shall not include works that remain
609
+ separable from, or merely link (or bind by name) to the interfaces of,
610
+ the Work and Derivative Works thereof.
611
+
612
+ "Contribution" shall mean any work of authorship, including
613
+ the original version of the Work and any modifications or additions
614
+ to that Work or Derivative Works thereof, that is intentionally
615
+ submitted to Licensor for inclusion in the Work by the copyright owner
616
+ or by an individual or Legal Entity authorized to submit on behalf of
617
+ the copyright owner. For the purposes of this definition, "submitted"
618
+ means any form of electronic, verbal, or written communication sent
619
+ to the Licensor or its representatives, including but not limited to
620
+ communication on electronic mailing lists, source code control systems,
621
+ and issue tracking systems that are managed by, or on behalf of, the
622
+ Licensor for the purpose of discussing and improving the Work, but
623
+ excluding communication that is conspicuously marked or otherwise
624
+ designated in writing by the copyright owner as "Not a Contribution."
625
+
626
+ "Contributor" shall mean Licensor and any individual or Legal Entity
627
+ on behalf of whom a Contribution has been received by Licensor and
628
+ subsequently incorporated within the Work.
629
+
630
+ 2. Grant of Copyright License. Subject to the terms and conditions of
631
+ this License, each Contributor hereby grants to You a perpetual,
632
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
633
+ copyright license to reproduce, prepare Derivative Works of,
634
+ publicly display, publicly perform, sublicense, and distribute the
635
+ Work and such Derivative Works in Source or Object form.
636
+
637
+ 3. Grant of Patent License. Subject to the terms and conditions of
638
+ this License, each Contributor hereby grants to You a perpetual,
639
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
640
+ (except as stated in this section) patent license to make, have made,
641
+ use, offer to sell, sell, import, and otherwise transfer the Work,
642
+ where such license applies only to those patent claims licensable
643
+ by such Contributor that are necessarily infringed by their
644
+ Contribution(s) alone or by combination of their Contribution(s)
645
+ with the Work to which such Contribution(s) was submitted. If You
646
+ institute patent litigation against any entity (including a
647
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
648
+ or a Contribution incorporated within the Work constitutes direct
649
+ or contributory patent infringement, then any patent licenses
650
+ granted to You under this License for that Work shall terminate
651
+ as of the date such litigation is filed.
652
+
653
+ 4. Redistribution. You may reproduce and distribute copies of the
654
+ Work or Derivative Works thereof in any medium, with or without
655
+ modifications, and in Source or Object form, provided that You
656
+ meet the following conditions:
657
+
658
+ (a) You must give any other recipients of the Work or
659
+ Derivative Works a copy of this License; and
660
+
661
+ (b) You must cause any modified files to carry prominent notices
662
+ stating that You changed the files; and
663
+
664
+ (c) You must retain, in the Source form of any Derivative Works
665
+ that You distribute, all copyright, patent, trademark, and
666
+ attribution notices from the Source form of the Work,
667
+ excluding those notices that do not pertain to any part of
668
+ the Derivative Works; and
669
+
670
+ (d) If the Work includes a "NOTICE" text file as part of its
671
+ distribution, then any Derivative Works that You distribute must
672
+ include a readable copy of the attribution notices contained
673
+ within such NOTICE file, excluding those notices that do not
674
+ pertain to any part of the Derivative Works, in at least one
675
+ of the following places: within a NOTICE text file distributed
676
+ as part of the Derivative Works; within the Source form or
677
+ documentation, if provided along with the Derivative Works; or,
678
+ within a display generated by the Derivative Works, if and
679
+ wherever such third-party notices normally appear. The contents
680
+ of the NOTICE file are for informational purposes only and
681
+ do not modify the License. You may add Your own attribution
682
+ notices within Derivative Works that You distribute, alongside
683
+ or as an addendum to the NOTICE text from the Work, provided
684
+ that such additional attribution notices cannot be construed
685
+ as modifying the License.
686
+
687
+ You may add Your own copyright statement to Your modifications and
688
+ may provide additional or different license terms and conditions
689
+ for use, reproduction, or distribution of Your modifications, or
690
+ for any such Derivative Works as a whole, provided Your use,
691
+ reproduction, and distribution of the Work otherwise complies with
692
+ the conditions stated in this License.
693
+
694
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
695
+ any Contribution intentionally submitted for inclusion in the Work
696
+ by You to the Licensor shall be under the terms and conditions of
697
+ this License, without any additional terms or conditions.
698
+ Notwithstanding the above, nothing herein shall supersede or modify
699
+ the terms of any separate license agreement you may have executed
700
+ with Licensor regarding such Contributions.
701
+
702
+ 6. Trademarks. This License does not grant permission to use the trade
703
+ names, trademarks, service marks, or product names of the Licensor,
704
+ except as required for reasonable and customary use in describing the
705
+ origin of the Work and reproducing the content of the NOTICE file.
706
+
707
+ 7. Disclaimer of Warranty. Unless required by applicable law or
708
+ agreed to in writing, Licensor provides the Work (and each
709
+ Contributor provides its Contributions) on an "AS IS" BASIS,
710
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
711
+ implied, including, without limitation, any warranties or conditions
712
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
713
+ PARTICULAR PURPOSE. You are solely responsible for determining the
714
+ appropriateness of using or redistributing the Work and assume any
715
+ risks associated with Your exercise of permissions under this License.
716
+
717
+ 8. Limitation of Liability. In no event and under no legal theory,
718
+ whether in tort (including negligence), contract, or otherwise,
719
+ unless required by applicable law (such as deliberate and grossly
720
+ negligent acts) or agreed to in writing, shall any Contributor be
721
+ liable to You for damages, including any direct, indirect, special,
722
+ incidental, or consequential damages of any character arising as a
723
+ result of this License or out of the use or inability to use the
724
+ Work (including but not limited to damages for loss of goodwill,
725
+ work stoppage, computer failure or malfunction, or any and all
726
+ other commercial damages or losses), even if such Contributor
727
+ has been advised of the possibility of such damages.
728
+
729
+ 9. Accepting Warranty or Additional Liability. While redistributing
730
+ the Work or Derivative Works thereof, You may choose to offer,
731
+ and charge a fee for, acceptance of support, warranty, indemnity,
732
+ or other liability obligations and/or rights consistent with this
733
+ License. However, in accepting such obligations, You may act only
734
+ on Your own behalf and on Your sole responsibility, not on behalf
735
+ of any other Contributor, and only if You agree to indemnify,
736
+ defend, and hold each Contributor harmless for any liability
737
+ incurred by, or claims asserted against, such Contributor by reason
738
+ of your accepting any such warranty or additional liability.
739
+
740
+ END OF TERMS AND CONDITIONS
741
+
742
+ APPENDIX: How to apply the Apache License to your work.
743
+
744
+ To apply the Apache License to your work, attach the following
745
+ boilerplate notice, with the fields enclosed by brackets "[]"
746
+ replaced with your own identifying information. (Don't include
747
+ the brackets!) The text should be enclosed in the appropriate
748
+ comment syntax for the file format. We also recommend that a
749
+ file or class name and description of purpose be included on the
750
+ same "printed page" as the copyright notice for easier
751
+ identification within third-party archives.
752
+
753
+ Copyright 2021 The Khronos Group Inc
754
+
755
+ Licensed under the Apache License, Version 2.0 (the "License");
756
+ you may not use this file except in compliance with the License.
757
+ You may obtain a copy of the License at
758
+
759
+ http://www.apache.org/licenses/LICENSE-2.0
760
+
761
+ Unless required by applicable law or agreed to in writing, software
762
+ distributed under the License is distributed on an "AS IS" BASIS,
763
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
764
+ See the License for the specific language governing permissions and
765
+ limitations under the License.
766
+
767
+ ---
768
+
769
+ ## stb (https://github.com/nothings/stb#stb_libs)
770
+
771
+ Copyright (c) 2017 Sean Barrett
772
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
773
+ this software and associated documentation files (the "Software"), to deal in
774
+ the Software without restriction, including without limitation the rights to
775
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
776
+ of the Software, and to permit persons to whom the Software is furnished to do
777
+ so, subject to the following conditions:
778
+ The above copyright notice and this permission notice shall be included in all
779
+ copies or substantial portions of the Software.
780
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
781
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
782
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
783
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
784
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
785
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
786
+ SOFTWARE.
787
+
788
+ ---
789
+
790
+ ## tinyspline (https://github.com/msteinbeck/tinyspline)
791
+
792
+ The MIT License (MIT)
793
+
794
+ Copyright (c) 2016 Marcel Steinbeck
795
+
796
+ Permission is hereby granted, free of charge, to any person obtaining a copy
797
+ of this software and associated documentation files (the "Software"), to deal
798
+ in the Software without restriction, including without limitation the rights
799
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
800
+ copies of the Software, and to permit persons to whom the Software is
801
+ furnished to do so, subject to the following conditions:
802
+
803
+ The above copyright notice and this permission notice shall be included in all
804
+ copies or substantial portions of the Software.
805
+
806
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
807
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
808
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
809
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
810
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
811
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
812
+ SOFTWARE.
813
+
814
+ ---
815
+
816
+ ## zlib (http://www.zlib.net/)
817
+
818
+ zlib.h -- interface of the 'zlib' general purpose compression library
819
+ version 1.2.11, January 15th, 2017
820
+
821
+ Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
822
+
823
+ This software is provided 'as-is', without any express or implied
824
+ warranty. In no event will the authors be held liable for any damages
825
+ arising from the use of this software.
826
+
827
+ Permission is granted to anyone to use this software for any purpose,
828
+ including commercial applications, and to alter it and redistribute it
829
+ freely, subject to the following restrictions:
830
+
831
+ 1. The origin of this software must not be misrepresented; you must not
832
+ claim that you wrote the original software. If you use this software
833
+ in a product, an acknowledgment in the product documentation would be
834
+ appreciated but is not required.
835
+ 2. Altered source versions must be plainly marked as such, and must not be
836
+ misrepresented as being the original software.
837
+ 3. This notice may not be removed or altered from any source distribution.
838
+
839
+ Jean-loup Gailly Mark Adler
840
+ jloup@gzip.org madler@alumni.caltech.edu
841
+
842
+ The data format used by the zlib library is described by RFCs (Request for
843
+ Comments) 1950 to 1952 in the files http://tools.ietf.org/html/rfc1950
844
+ (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
845
+
846
+ ---
847
+
848
+ ## ImageTracerCpp (https://github.com/dov/ImageTracerCpp)
849
+
850
+ (Desktop version in C++. See ImageTracerAndroid.java for the Android version.)
851
+ Simple raster image tracer and vectorizer written in C++.
852
+ This is a port of https://github.com/jankovicsandras/imagetracerjava
853
+
854
+ by Dov Grobgeld <dov.grobgeld@gmail.com>
855
+
856
+ The Unlicense / PUBLIC DOMAIN
857
+
858
+ This is free and unencumbered software released into the public domain.
859
+
860
+ Anyone is free to copy, modify, publish, use, compile, sell, or
861
+ distribute this software, either in source code form or as a compiled
862
+ binary, for any purpose, commercial or non-commercial, and by any
863
+ means.
864
+
865
+ In jurisdictions that recognize copyright laws, the author or authors
866
+ of this software dedicate any and all copyright interest in the
867
+ software to the public domain. We make this dedication for the benefit
868
+ of the public at large and to the detriment of our heirs and
869
+ successors. We intend this dedication to be an overt act of
870
+ relinquishment in perpetuity of all present and future rights to this
871
+ software under copyright law.
872
+
873
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
874
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
875
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
876
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
877
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
878
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
879
+ OTHER DEALINGS IN THE SOFTWARE.
880
+
881
+ For more information, please refer to http://unlicense.org/
882
+
883
+ ---
884
+
885
+ ## CurveFitting (https://github.com/vicrucann/CurveFitting)
886
+
887
+ MIT License
888
+
889
+ Copyright (c) 2016 Victoria Rudakova
890
+
891
+ Permission is hereby granted, free of charge, to any person obtaining a copy
892
+ of this software and associated documentation files (the "Software"), to deal
893
+ in the Software without restriction, including without limitation the rights
894
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
895
+ copies of the Software, and to permit persons to whom the Software is
896
+ furnished to do so, subject to the following conditions:
897
+
898
+ The above copyright notice and this permission notice shall be included in all
899
+ copies or substantial portions of the Software.
900
+
901
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
902
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
903
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
904
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
905
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
906
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
907
+ SOFTWARE.
908
+
909
+ ---
910
+
911
+ ## Srtparser (https://github.com/saurabhshri/simple-yet-powerful-srt-subtitle-parser-cpp)
912
+
913
+ MIT License
914
+
915
+ Original work Copyright (c) 2017 Oleksii Maryshchenko
916
+ Modified work Copyright (c) 2017 Saurabh Shrivastava
917
+
918
+ Permission is hereby granted, free of charge, to any person obtaining a copy
919
+ of this software and associated documentation files (the "Software"), to deal
920
+ in the Software without restriction, including without limitation the rights
921
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
922
+ copies of the Software, and to permit persons to whom the Software is
923
+ furnished to do so, subject to the following conditions:
924
+
925
+ The above copyright notice and this permission notice shall be included in all
926
+ copies or substantial portions of the Software.
927
+
928
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
929
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
930
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
931
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
932
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
933
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
934
+ SOFTWARE.
935
+
936
+
937
+ ---
938
+
939
+ # Additional licenses for @cesdk/node-native
940
+
941
+ The `@cesdk/node-native` native addon links additional system libraries and
942
+ frameworks that are NOT used by the WebAssembly variant of the engine. Their
943
+ notices are reproduced below. Nothing in this addendum supersedes or narrows
944
+ the notices above; it is additive.
945
+
946
+ ## node-addon-api (MIT)
947
+
948
+ Copyright (c) 2017 Node.js API collaborators
949
+
950
+ Permission is hereby granted, free of charge, to any person obtaining a copy
951
+ of this software and associated documentation files (the "Software"), to deal
952
+ in the Software without restriction, including without limitation the rights
953
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
954
+ copies of the Software, and to permit persons to whom the Software is
955
+ furnished to do so, subject to the following conditions:
956
+
957
+ The above copyright notice and this permission notice shall be included in
958
+ all copies or substantial portions of the Software.
959
+
960
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
961
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
962
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
963
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
964
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
965
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
966
+ THE SOFTWARE.
967
+
968
+ ## node-api-headers (MIT)
969
+
970
+ Copyright (c) Node.js API collaborators
971
+
972
+ Licensed under the MIT license. See the node-api-headers distribution for
973
+ the full license text, reproduced at
974
+ <https://github.com/nodejs/node-api-headers/blob/main/LICENSE>.
975
+
976
+ ## Apple system frameworks (macOS builds only)
977
+
978
+ On macOS the native addon dynamically links against Apple system
979
+ frameworks that are part of the operating system:
980
+
981
+ - CoreFoundation, CoreGraphics, CoreText, CoreServices, CoreMedia,
982
+ CoreAudio
983
+ - AppKit, IOKit, Security, QuartzCore
984
+ - Metal, MetalKit (for hardware-accelerated rendering)
985
+ - AVFoundation, VideoToolbox (for video encoding and decoding)
986
+ - AudioToolbox
987
+
988
+ These frameworks are governed by the Apple Software License Agreement
989
+ that accompanies macOS. Use of the `@cesdk/node-native` binary on macOS
990
+ is conditional on the end user's compliance with the Apple SLA. No
991
+ redistribution of Apple proprietary code is performed; the frameworks
992
+ remain part of the host macOS installation.
993
+
994
+ ## GStreamer (Linux builds only) — LGPL-2.1-or-later
995
+
996
+ On Linux the native addon uses the GStreamer multimedia framework for
997
+ video and audio export, linking dynamically against the GStreamer
998
+ libraries installed on the host system (typically the distribution's
999
+ `libgstreamer1.0-0` + plugin packages). GStreamer is NOT bundled inside
1000
+ the `.node` binary — users must install it via their distribution's
1001
+ package manager.
1002
+
1003
+ GStreamer core (gstreamer) and gst-plugins-base are licensed under the
1004
+ GNU Lesser General Public License, version 2.1 or later (LGPL-2.1+).
1005
+ Some plugin bundles (`gst-plugins-ugly`) contain code licensed under
1006
+ the GNU General Public License (GPL). Because the native addon links
1007
+ dynamically rather than statically, and because the system-installed
1008
+ GStreamer is not redistributed as part of this package, the LGPL
1009
+ linking exemption applies.
1010
+
1011
+ Full license text:
1012
+ - LGPL-2.1: <https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html>
1013
+ - GPL-2.0: <https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html>
1014
+
1015
+ Source code for GStreamer is available at
1016
+ <https://gitlab.freedesktop.org/gstreamer/gstreamer>.
1017
+
1018
+ ## GLib (Linux builds only) — LGPL-2.1-or-later
1019
+
1020
+ GStreamer depends on GLib, which is licensed under LGPL-2.1-or-later.
1021
+ Same terms as above; GLib is distributed as part of the host system, not
1022
+ bundled in the `.node` binary.
1023
+
1024
+ Source: <https://gitlab.gnome.org/GNOME/glib>.
1025
+
1026
+ ## Fluendo codecs (optional, not redistributed)
1027
+
1028
+ Production deployments of CE.SDK Linux renderers may choose to add
1029
+ Fluendo's proprietary GStreamer plugins (for patent-licensed codecs
1030
+ such as H.264/AAC). Fluendo plugins are licensed separately by Fluendo
1031
+ S.A. and are NOT bundled with `@cesdk/node-native`. Users who install
1032
+ them are bound by their own Fluendo license. See
1033
+ <https://fluendo.com/en/products/enterprise/fluendo-codec-pack-gstreamer/>
1034
+ for details.
1035
+
1036
+ ## libc++ / libc++abi — Apache-2.0 WITH LLVM-exception
1037
+
1038
+ The Linux build statically links libc++ and libc++abi from the LLVM
1039
+ project. They are distributed under the Apache License 2.0 with the
1040
+ LLVM exception. Full license text at
1041
+ <https://github.com/llvm/llvm-project/blob/main/libcxx/LICENSE.TXT>.