OpenSceneGraph 0.1.1__tar.gz → 0.1.2__tar.gz
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.
- openscenegraph-0.1.2/.github/workflows/examples.yml +78 -0
- openscenegraph-0.1.2/.github/workflows/wheels.yml +339 -0
- openscenegraph-0.1.2/.gitignore +50 -0
- openscenegraph-0.1.2/CMakeLists.txt +581 -0
- openscenegraph-0.1.2/PKG-INFO +563 -0
- openscenegraph-0.1.2/README.md +554 -0
- openscenegraph-0.1.2/aipython/29-material.md +109 -0
- openscenegraph-0.1.2/etc/osgx/CMakeLists.txt +660 -0
- openscenegraph-0.1.2/etc/osgx/examples/CMakeLists.txt +76 -0
- openscenegraph-0.1.2/etc/osgx/examples/osgx-aura.cpp +589 -0
- openscenegraph-0.1.2/etc/osgx/examples/osgx-pixel-text.cpp +354 -0
- openscenegraph-0.1.2/etc/osgx/ext/python/osgx-aura.cpp +82 -0
- openscenegraph-0.1.2/etc/osgx/ext/python/osgx-callbacks.cpp +244 -0
- openscenegraph-0.1.2/etc/osgx/ext/python/osgx-core.cpp +685 -0
- openscenegraph-0.1.2/etc/osgx/ext/python/osgx-debug.cpp +177 -0
- openscenegraph-0.1.2/etc/osgx/ext/python/osgx-gbuffer.cpp +119 -0
- openscenegraph-0.1.2/etc/osgx/ext/python/osgx-gizmos.cpp +61 -0
- openscenegraph-0.1.2/etc/osgx/ext/python/osgx-gltf.cpp +1247 -0
- openscenegraph-0.1.2/etc/osgx/ext/python/osgx-ibl.cpp +180 -0
- openscenegraph-0.1.2/etc/osgx/ext/python/osgx-imgui.cpp +309 -0
- openscenegraph-0.1.2/etc/osgx/ext/python/osgx-pbr.cpp +303 -0
- openscenegraph-0.1.2/etc/osgx/ext/python/osgx-picking.cpp +355 -0
- openscenegraph-0.1.2/etc/osgx/ext/python/osgx-pixel-text.cpp +88 -0
- openscenegraph-0.1.2/etc/osgx/ext/python/osgx-platform.cpp +168 -0
- openscenegraph-0.1.2/etc/osgx/ext/python/osgx-python.hpp +58 -0
- openscenegraph-0.1.2/etc/osgx/ext/python/osgx-shadow.cpp +153 -0
- openscenegraph-0.1.2/etc/osgx/ext/python/osgx-shapes.cpp +299 -0
- openscenegraph-0.1.2/etc/osgx/ext/python/osgx.cpp +64 -0
- openscenegraph-0.1.2/etc/osgx/src/Aura.cpp +281 -0
- openscenegraph-0.1.2/etc/osgx/src/IBL.cpp +436 -0
- openscenegraph-0.1.2/etc/osgx/src/ImGui.cpp +781 -0
- openscenegraph-0.1.2/etc/osgx/src/PBR.cpp +469 -0
- openscenegraph-0.1.2/etc/osgx/src/PixelText.cpp +557 -0
- openscenegraph-0.1.2/etc/osgx/src/Shader.cpp +196 -0
- openscenegraph-0.1.2/etc/osgx/src/gltf/PBRIBL.cpp +1467 -0
- openscenegraph-0.1.2/etc/osgx/src/gltf/Texture.cpp +431 -0
- openscenegraph-0.1.2/etc/osgx/src/osgx/Aura.hpp +65 -0
- openscenegraph-0.1.2/etc/osgx/src/osgx/Core.hpp +367 -0
- openscenegraph-0.1.2/etc/osgx/src/osgx/Grid.hpp +228 -0
- openscenegraph-0.1.2/etc/osgx/src/osgx/PBR.hpp +923 -0
- openscenegraph-0.1.2/etc/osgx/src/osgx/PixelText.hpp +159 -0
- openscenegraph-0.1.2/etc/osgx/src/osgx/Shadow.hpp +255 -0
- openscenegraph-0.1.2/etc/osgx/src/osgx/gltf/PBRIBL.hpp +414 -0
- openscenegraph-0.1.2/etc/osgx/src/osgx/osgx.hpp +22 -0
- openscenegraph-0.1.2/etc/osgx/utils/CMakeLists.txt +51 -0
- openscenegraph-0.1.2/etc/osgx/utils/osgx-pbribl.cpp +648 -0
- openscenegraph-0.1.2/etc/pybind11x.hpp +1676 -0
- openscenegraph-0.1.2/etc/scripts/build-local-wheel.sh +185 -0
- openscenegraph-0.1.2/etc/scripts/generate-bindings-overview.py +929 -0
- openscenegraph-0.1.2/etc/scripts/prepare-examples-assets.py +143 -0
- openscenegraph-0.1.2/examples/CMakeLists.txt +58 -0
- openscenegraph-0.1.2/examples/assets.toml +90 -0
- openscenegraph-0.1.2/examples/lighting/00-lambert.py +128 -0
- openscenegraph-0.1.2/examples/lighting/01-blinnphong.py +140 -0
- openscenegraph-0.1.2/examples/lighting/02-multilights.py +176 -0
- openscenegraph-0.1.2/examples/lighting/03-hemiambient.py +187 -0
- openscenegraph-0.1.2/examples/lighting/04-basecolor.py +182 -0
- openscenegraph-0.1.2/examples/lighting/05-normalmapping.py +216 -0
- openscenegraph-0.1.2/examples/lighting/06-pbr.py +248 -0
- openscenegraph-0.1.2/examples/lighting/07-emissive.py +259 -0
- openscenegraph-0.1.2/examples/lighting/08-shadows.py +394 -0
- openscenegraph-0.1.2/examples/lighting/09-ibl.py +350 -0
- openscenegraph-0.1.2/examples/lighting/10-dynamicprobes.py +618 -0
- openscenegraph-0.1.2/examples/lighting/11-sketchfab.py +1463 -0
- openscenegraph-0.1.2/examples/lighting/__init__.py +5 -0
- openscenegraph-0.1.2/examples/llm/00-qwen-activation-carpet.py +137 -0
- openscenegraph-0.1.2/examples/llm/01-qwen-activation-delta.py +137 -0
- openscenegraph-0.1.2/examples/llm/02-qwen-layer-change.py +128 -0
- openscenegraph-0.1.2/examples/llm/03-qwen-layer-change-history.py +161 -0
- openscenegraph-0.1.2/examples/llm/README.md +33 -0
- openscenegraph-0.1.2/examples/llm/__init__.py +5 -0
- openscenegraph-0.1.2/examples/llm/llm_common.py +357 -0
- openscenegraph-0.1.2/examples/manifest.cmake +96 -0
- openscenegraph-0.1.2/examples/pyosg-dice.py +511 -0
- openscenegraph-0.1.2/examples/pyosg-dynamic-verts.py +186 -0
- openscenegraph-0.1.2/examples/pyosg-dynamic.py +276 -0
- openscenegraph-0.1.2/examples/pyosg-fragcoordxyz.py +515 -0
- openscenegraph-0.1.2/examples/pyosg-ibl-rotate.py +364 -0
- openscenegraph-0.1.2/examples/pyosg-imgui.py +71 -0
- openscenegraph-0.1.2/examples/pyosg-khronos-viewer.py +362 -0
- openscenegraph-0.1.2/examples/pyosg-material.py +788 -0
- openscenegraph-0.1.2/examples/pyosg-motionbricks.py +493 -0
- openscenegraph-0.1.2/examples/pyosg-mrt.py +493 -0
- openscenegraph-0.1.2/examples/pyosg-noise.py +1341 -0
- openscenegraph-0.1.2/examples/pyosg-taa.py +584 -0
- openscenegraph-0.1.2/examples/pyosg-voronoi-reveal.py +383 -0
- openscenegraph-0.1.2/examples/pyosg_async.py +467 -0
- openscenegraph-0.1.2/examples/pyosg_example.py +120 -0
- openscenegraph-0.1.2/examples/pyproject.toml +34 -0
- openscenegraph-0.1.2/pyosg/osg/Transform.cpp +308 -0
- openscenegraph-0.1.2/pyosg/osg/Transform.hpp +27 -0
- openscenegraph-0.1.2/pyosg/pyosg.hpp +349 -0
- openscenegraph-0.1.2/pyosg/pyosgDB.cpp +253 -0
- openscenegraph-0.1.2/pyosg/pyosgGA.cpp +438 -0
- openscenegraph-0.1.2/python/OpenSceneGraph/examples/__main__.py +143 -0
- openscenegraph-0.1.2/test/osg_Group.py +266 -0
- openscenegraph-0.1.1/.github/workflows/wheels.yml +0 -323
- openscenegraph-0.1.1/.gitignore +0 -50
- openscenegraph-0.1.1/CMakeLists.txt +0 -557
- openscenegraph-0.1.1/PKG-INFO +0 -563
- openscenegraph-0.1.1/README.md +0 -554
- openscenegraph-0.1.1/aipython/29-material.md +0 -109
- openscenegraph-0.1.1/etc/osgx/CMakeLists.txt +0 -657
- openscenegraph-0.1.1/etc/osgx/examples/CMakeLists.txt +0 -72
- openscenegraph-0.1.1/etc/osgx/examples/osgx-pixel-text.cpp +0 -301
- openscenegraph-0.1.1/etc/osgx/ext/python/osgx-callbacks.cpp +0 -208
- openscenegraph-0.1.1/etc/osgx/ext/python/osgx-core.cpp +0 -526
- openscenegraph-0.1.1/etc/osgx/ext/python/osgx-debug.cpp +0 -135
- openscenegraph-0.1.1/etc/osgx/ext/python/osgx-gbuffer.cpp +0 -77
- openscenegraph-0.1.1/etc/osgx/ext/python/osgx-gizmos.cpp +0 -40
- openscenegraph-0.1.1/etc/osgx/ext/python/osgx-gltf.cpp +0 -1052
- openscenegraph-0.1.1/etc/osgx/ext/python/osgx-ibl.cpp +0 -113
- openscenegraph-0.1.1/etc/osgx/ext/python/osgx-imgui.cpp +0 -229
- openscenegraph-0.1.1/etc/osgx/ext/python/osgx-pbr.cpp +0 -220
- openscenegraph-0.1.1/etc/osgx/ext/python/osgx-picking.cpp +0 -292
- openscenegraph-0.1.1/etc/osgx/ext/python/osgx-pixel-text.cpp +0 -58
- openscenegraph-0.1.1/etc/osgx/ext/python/osgx-platform.cpp +0 -149
- openscenegraph-0.1.1/etc/osgx/ext/python/osgx-python.hpp +0 -57
- openscenegraph-0.1.1/etc/osgx/ext/python/osgx-shadow.cpp +0 -90
- openscenegraph-0.1.1/etc/osgx/ext/python/osgx-shapes.cpp +0 -151
- openscenegraph-0.1.1/etc/osgx/ext/python/osgx.cpp +0 -63
- openscenegraph-0.1.1/etc/osgx/src/IBL.cpp +0 -429
- openscenegraph-0.1.1/etc/osgx/src/ImGui.cpp +0 -778
- openscenegraph-0.1.1/etc/osgx/src/PBR.cpp +0 -452
- openscenegraph-0.1.1/etc/osgx/src/PixelText.cpp +0 -453
- openscenegraph-0.1.1/etc/osgx/src/Shader.cpp +0 -169
- openscenegraph-0.1.1/etc/osgx/src/gltf/PBRIBL.cpp +0 -1385
- openscenegraph-0.1.1/etc/osgx/src/gltf/Texture.cpp +0 -402
- openscenegraph-0.1.1/etc/osgx/src/osgx/Core.hpp +0 -399
- openscenegraph-0.1.1/etc/osgx/src/osgx/Grid.hpp +0 -228
- openscenegraph-0.1.1/etc/osgx/src/osgx/PBR.hpp +0 -913
- openscenegraph-0.1.1/etc/osgx/src/osgx/PixelText.hpp +0 -135
- openscenegraph-0.1.1/etc/osgx/src/osgx/Shadow.hpp +0 -253
- openscenegraph-0.1.1/etc/osgx/src/osgx/gltf/PBRIBL.hpp +0 -400
- openscenegraph-0.1.1/etc/osgx/src/osgx/osgx.hpp +0 -21
- openscenegraph-0.1.1/etc/osgx/utils/CMakeLists.txt +0 -57
- openscenegraph-0.1.1/etc/osgx/utils/osgx-pbribl.cpp +0 -209
- openscenegraph-0.1.1/etc/pybind11x.hpp +0 -1653
- openscenegraph-0.1.1/etc/scripts/generate-bindings-overview.py +0 -839
- openscenegraph-0.1.1/examples/pyosg-dice.py +0 -510
- openscenegraph-0.1.1/examples/pyosg-fragcoordxyz.py +0 -508
- openscenegraph-0.1.1/examples/pyosg-khronos-viewer.py +0 -351
- openscenegraph-0.1.1/examples/pyosg-lighting/00-lambert.py +0 -122
- openscenegraph-0.1.1/examples/pyosg-lighting/01-blinnphong.py +0 -134
- openscenegraph-0.1.1/examples/pyosg-lighting/02-multilights.py +0 -170
- openscenegraph-0.1.1/examples/pyosg-lighting/03-hemiambient.py +0 -181
- openscenegraph-0.1.1/examples/pyosg-lighting/04-basecolor.py +0 -176
- openscenegraph-0.1.1/examples/pyosg-lighting/05-normalmapping.py +0 -210
- openscenegraph-0.1.1/examples/pyosg-lighting/06-pbr.py +0 -242
- openscenegraph-0.1.1/examples/pyosg-lighting/07-emissive-animated.py +0 -242
- openscenegraph-0.1.1/examples/pyosg-lighting/07-emissive.py +0 -253
- openscenegraph-0.1.1/examples/pyosg-lighting/08-shadows.py +0 -381
- openscenegraph-0.1.1/examples/pyosg-lighting/09-ibl-animation.py +0 -454
- openscenegraph-0.1.1/examples/pyosg-lighting/09-ibl.py +0 -326
- openscenegraph-0.1.1/examples/pyosg-lighting/10-dynamicprobes.py +0 -509
- openscenegraph-0.1.1/examples/pyosg-lighting/11-sketchfab.py +0 -1365
- openscenegraph-0.1.1/examples/pyosg-mrt.py +0 -491
- openscenegraph-0.1.1/examples/pyosg-noise.py +0 -1261
- openscenegraph-0.1.1/examples/pyosg-taa.py +0 -478
- openscenegraph-0.1.1/examples/pyosg-voronoi-reveal.py +0 -373
- openscenegraph-0.1.1/examples/pyosg_async.py +0 -467
- openscenegraph-0.1.1/examples/pyosg_example.py +0 -34
- openscenegraph-0.1.1/pyosg/osg/Transform.cpp +0 -184
- openscenegraph-0.1.1/pyosg/osg/Transform.hpp +0 -26
- openscenegraph-0.1.1/pyosg/pyosg.hpp +0 -346
- openscenegraph-0.1.1/pyosg/pyosgDB.cpp +0 -247
- openscenegraph-0.1.1/pyosg/pyosgGA.cpp +0 -432
- openscenegraph-0.1.1/python/OpenSceneGraph/examples/__main__.py +0 -133
- openscenegraph-0.1.1/test/osg_Group.py +0 -237
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/.gitmodules +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/LICENSE +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/00-index.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/01-core.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/02-inspect.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/03-headless-frames.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/05-camera-manipulator.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/06-camera-effects.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/07-camera-manual.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/08-lighting.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/09-picking.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/10-rtt.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/11-mrt.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/12-gbuffer.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/15-shader-hotswap.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/17-particles.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/18-deterministic-captures.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/20-object-lifetime.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/25-async-osgpy.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/30-pbribl.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/40-typed-lights-gizmos.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/embed.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/embed.supp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/00-lambert.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/01-blinnphong.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/02-multilights.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/03-hemiambient.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/04-basecolor.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/05-normalmapping.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/06-pbr.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/07-emissive.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/08-shadows.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/09-ibl.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/10-dynamicprobes.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/11-sketchfab.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/nativeio.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/.gitignore +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/.gitmodules +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/OSG/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/OSG/Notify.patch +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/OSG/asan.patch +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/OSG/asan.supp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/OSG/lsan.supp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/cmake/osgxConfig.cmake.in +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/cmake/uninstall.cmake.in +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/docs/CORE.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/docs/DEBUG.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/docs/GLTF.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/docs/IMGUI.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/docs/PLATFORM.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-array.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-callback.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-culling.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-eventhandler.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-gbuffer-blueprint.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-gbuffer-comic.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-gbuffer-edgewear.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-gbuffer.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-grid.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-hover.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-ibl.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-imgui-external.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-imgui.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-ktx2-skybox.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-lights.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-manipulator.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-notifyfilter.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-picking.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-platform.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-shadow.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-shapes.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-turntable.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-viewer.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-visitor.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.clang-format +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.git-blame-ignore-revs +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.gitattributes +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.gitconfig +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/android.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/check-determinism.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/check-libktx-only.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/check-mkvk.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/check-reuse.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/docs.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/formatting.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/linux.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/macos.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/manual.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/mingw.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/publish-pyktx.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/web.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/windows.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.gitignore +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.gitmodules +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/CODE_OF_CONDUCT.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/CONTRIBUTING.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSE.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/Apache-2.0.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/BSD-1-Clause.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/BSD-2-Clause.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/BSD-3-Clause.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/BSL-1.0.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/CC-BY-3.0.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/CC0-1.0.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/LicenseRef-ETCSLA.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/LicenseRef-HI-Trademark.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/LicenseRef-Kodak.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/LicenseRef-fmt.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/MIT.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/Zlib.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/NOTICE.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/RELEASE_NOTES.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/REUSE.toml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/License.rtf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/License.rtf.license +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/ReadMe.rtf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/ReadMe.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/Welcome.rtf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/codesign.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/compiler_query_genexs.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/cputypetest.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/docs.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/fp-settings.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/launch.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/linux-aarch64-toolchain.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/linux-x86_64-toolchain.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/mkvk.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/CPack.distribution.dist.in +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/FindBash.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/FindSDL2.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/FindVulkan.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/Findassimp.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/Findsigntool.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/Findzstd.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/GetGitRevisionDescription.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/GetGitRevisionDescription.cmake.in +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/KtxDependentVariable.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/NSIS.InstallOptions.ini.in +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/NSIS.template.in +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/version.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/examples/vkload.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/.clang-format +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/.gitattributes +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/SDL_gesture/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/SDL_gesture/SDL_gesture.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/.gitattributes +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/.github/workflows/post_weekly_release.yaml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/.github/workflows/release_body_template.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/.gitignore +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/.gitrepo +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/.pylintrc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/LICENSE.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/Fuzzers/fuzz_astc_physical_to_symbolic.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/ThirdParty/stb_image.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/ThirdParty/stb_image_write.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/ThirdParty/tinyexr.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/UnitTest/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/UnitTest/cmake_core.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/UnitTest/test_decode.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/UnitTest/test_simd.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/UnitTest/test_softfloat.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_averages_and_directions.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_block_sizes.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_color_quantize.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_color_unquantize.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_compress_symbolic.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_compute_variance.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_decompress_symbolic.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_diagnostic_trace.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_diagnostic_trace.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_entry.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_find_best_partitioning.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_ideal_endpoints_and_weights.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_image.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_integer_sequence.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_internal.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_internal_entry.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_mathlib.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_mathlib.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_mathlib_softfloat.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_partition_tables.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_percentile_tables.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_pick_best_endpoint_format.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_platform_isa_detection.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_quantization.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_symbolic_physical.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_vecmathlib.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_vecmathlib_avx2_8.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_vecmathlib_common_4.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_vecmathlib_neon_4.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_vecmathlib_none_4.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_vecmathlib_sse_4.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_vecmathlib_sve_8.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_weight_align.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_weight_quant_xfer_tables.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_entry.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_entry2.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_error_metrics.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_image.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_image_external.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_image_load_store.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_internal.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_platform_dependents.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_toplevel.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_toplevel_help.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_version.h.in +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/cmake_compiler.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/cmake_core.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/wuffs-v0.3.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/Example/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/Example/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/Example/astc_api_example.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/astc_blend_test.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/astc_quant_generator.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/astc_rgbm_codec.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/astc_test_autoextract.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/astc_test_autoextract_hdr.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/astcenc_u8_test_bench.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/.gitattributes +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/.github/workflows/file_format.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/.github/workflows/static_checks.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/.gitignore +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/.gitrepo +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/.pre-commit-config.yaml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/CppProperties.json +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/LICENSE +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/LICENSES/Apache-2.0.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/LICENSES/BSD-3-Clause.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/LICENSES/MIT.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/NOTICE +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_d3d10.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_d3d11.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_dx9_media_sharing.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_dx9_media_sharing_intel.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_egl.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_ext.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_ext_intel.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_gl.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_gl_ext.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_half.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_icd.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_layer.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_platform.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_va_api_media_sharing_intel.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_version.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/opencl.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/license.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/REUSE.toml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/all_builds.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/appveyor.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/basisu.manifest +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/basisu.sln +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/basisu.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/basisu.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/basisu_tool.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/basisu_tool_help.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/bin/.gitignore +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/bin/clean.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/bin/ocl_kernels.cl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/bin/readme.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/build_python_win.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/cmd_help/cmd_help.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/cmd_help/process.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/.gitignore +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/lib/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/lib/basisu_transcoder.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/.gitignore +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/basisthumbprovider.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/basisthumbprovider.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/helpers.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/helpers.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/preview.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/previewers.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/previewers.def +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/previewers.sln +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/previewers.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/previewers.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/.editorconfig +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/.gitignore +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/basisu_transcoder-in.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/combine.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/combine.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/create_transcoder.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/examples/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/examples/emscripten.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/examples/shell.html +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/examples/simple.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/examples/testcard-rgba.basis.inc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/examples/testcard-rgba.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/examples/testcard.basis.inc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/examples/testcard.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/3rdparty/android_astc_decomp.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/3rdparty/android_astc_decomp.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/3rdparty/qoi.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/3rdparty/tinydds.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/3rdparty/tinyexr.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/3rdparty/tinyexr.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_astc_hdr_6x6_enc.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_astc_hdr_6x6_enc.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_astc_hdr_common.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_astc_hdr_common.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_astc_ldr_common.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_astc_ldr_common.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_astc_ldr_encode.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_astc_ldr_encode.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_backend.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_backend.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_basis_file.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_basis_file.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_bc7enc.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_bc7enc.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_comp.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_comp.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_enc.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_enc.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_etc.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_etc.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_frontend.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_frontend.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_gpu_texture.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_gpu_texture.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_kernels_declares.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_kernels_imp.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_kernels_sse.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_math.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_miniz.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_ocl_kernels.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_opencl.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_opencl.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_pvrtc1_4.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_pvrtc1_4.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_resample_filters.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_resampler.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_resampler.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_resampler_filters.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_ssim.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_ssim.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_uastc_enc.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_uastc_enc.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_uastc_hdr_4x4_enc.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_uastc_hdr_4x4_enc.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_wasm_api.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_wasm_api.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_wasm_api_common.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_wasm_transcoder_api.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_wasm_transcoder_api.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/cppspmd_flow.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/cppspmd_math.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/cppspmd_math_declares.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/cppspmd_sse.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/cppspmd_type_aliases.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/jpgd.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/jpgd.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/pvpngreader.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/pvpngreader.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder_lib/encoder_lib.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder_lib/encoder_lib.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder_lvl_vs_perf.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example/example.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example/example.manifest +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example/example.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example/example.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_capi/example_capi.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_capi/example_capi.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_capi/example_capi.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_transcoding/dds_defs.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_transcoding/example_transcoding.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_transcoding/example_transcoding.manifest +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_transcoding/example_transcoding.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_transcoding/example_transcoding.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_transcoding/utils.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_transcoding/utils.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/khronos/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/readme_wasi.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_astc_cfgs.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_astc_hdr_core.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_astc_helpers.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_containers.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_containers_impl.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_etc1_mods.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_file_headers.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_idct.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder_internal.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder_tables_astc.inc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder_tables_astc_0_255.inc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder_tables_atc_55.inc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder_tables_atc_56.inc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder_tables_bc7_m5_alpha.inc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder_tables_bc7_m5_color.inc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder_tables_dxt1_5.inc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder_tables_dxt1_6.inc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder_tables_pvrtc2_45.inc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder_tables_pvrtc2_alpha_33.inc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder_uastc.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/zstd/LICENSE +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/zstd/zstd.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/zstd/zstd.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/zstd/zstd_errors.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/zstd/zstddeclib.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/cxxopts/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/cxxopts/cmake/cxxopts.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/cxxopts/include/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/cxxopts/include/cxxopts.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/.github/workflows/check-dfdutils.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/.github/workflows/check-reuse.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/.gitignore +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/.gitrepo +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/.travis.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/CODE_OF_CONDUCT.adoc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/KHR/khr_df.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/LICENSE.adoc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/LICENSES/Apache-2.0.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/README.adoc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/REUSE.toml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/colourspaces.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/createdfd.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/createdfdtest.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/dfd.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/dfd2vk.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/dfd2vk.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/endswap.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/interpretdfd.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/interpretdfdtest.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/makedfd2vk.pl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/makevk2dfd.pl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/printdfd.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/queries.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/testbidirectionalmapping.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/vk2dfd.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/vk2dfd.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/vulkan/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/vulkan/build_custom_vulkan_core +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/vulkan/vk_platform.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/vulkan/vulkan_core.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/etcdec/etcdec.cxx +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/dependabot.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/issue_template.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/pull_request_template.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/workflows/cifuzz.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/workflows/doc.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/workflows/lint.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/workflows/linux.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/workflows/macos.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/workflows/scorecard.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/workflows/windows.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.gitignore +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.gitrepo +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/CONTRIBUTING.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/ChangeLog.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/LICENSE +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/ChangeLog-old.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/api.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/fmt.css +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/fmt.js +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/get-started.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/index.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/perf.svg +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/python-license.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/syntax.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/args.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/base.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/chrono.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/color.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/compile.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/core.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/format-inl.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/format.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/os.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/ostream.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/printf.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/ranges.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/std.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/xchar.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/src/fmt.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/src/format.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/src/os.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/Android.mk +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/AndroidManifest.xml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/C++.sublime-syntax +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/README +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/Vagrantfile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/bazel/.bazelversion +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/bazel/MODULE.bazel +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/bazel/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/bazel/WORKSPACE.bazel +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/build.gradle +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/check-commits +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/cmake/FindSetEnv.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/cmake/JoinPaths.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/cmake/fmt-config.cmake.in +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/cmake/fmt.pc.in +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/docopt.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/mkdocs +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/mkdocs.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/printable.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/python/mkdocstrings_handlers/cxx/__init__.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/python/mkdocstrings_handlers/cxx/templates/README +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/release.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/add-subdirectory-test/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/add-subdirectory-test/main.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/args-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/assert-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/base-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/chrono-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/color-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/compile-error-test/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/compile-fp-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/compile-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/cuda-test/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/cuda-test/cpp14.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/cuda-test/cuda-cpp14.cu +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/detect-stdfs.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/enforce-checks-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/find-package-test/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/find-package-test/main.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/format-impl-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/format-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/.gitignore +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/build.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/chrono-duration.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/chrono-timepoint.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/float.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/fuzzer-common.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/main.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/named-arg.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/one-arg.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/two-args.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest/.clang-format +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest/gmock/gmock.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest/gmock-gtest-all.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest/gtest/gtest-spi.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest/gtest/gtest.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest-extra-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest-extra.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest-extra.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/header-only-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/mock-allocator.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/module-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/no-builtin-types-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/noexception-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/os-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/ostream-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/perf-sanity.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/posix-mock-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/posix-mock.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/printf-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/ranges-odr-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/ranges-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/scan-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/scan.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/static-export-test/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/static-export-test/library.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/static-export-test/main.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/std-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/test-assert.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/test-main.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/unicode-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/util.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/util.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/xchar-test.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/.gitrepo +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/LICENSE +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_4bit_palette.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_bmp2png.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_decode.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_decode.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_encode.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_encode.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_encode_type.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_gzip.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_opengl.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_optimize_png.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_png2bmp.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_png_info.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_reencode.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_sdl.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_sdl.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/lodepng.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/lodepng.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/lodepng_benchmark.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/lodepng_fuzzer.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/lodepng_unittest.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/lodepng_util.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/lodepng_util.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/pngdetail.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/Contents.json +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/App Store-1.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/App Store.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/Apple Watch Companion Settings@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/Apple Watch Companion Settings@3x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/Apple Watch Home Screen (38mm).png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/Apple Watch Home Screen (40mm).png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/Apple Watch Home Screen (44mm).png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/Apple Watch Notification center (38mm).png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/Apple Watch Notification center (42mm).png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/Apple Watch Short Look (38mm).png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/Apple Watch Short Look (42mm).png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/Apple Watch Short Look (44mm).png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/Contents.json +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPad App Icon iOS 5,6.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPad App Icon iOS 5,6@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPad App Icon iOS 7,12.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPad App Icon iOS 7,12@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPad Pro Icon iOS 9,12@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPad Settings.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPad Settings@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPad Spotlight iOS 5,6.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPad Spotlight iOS 5,6@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPad Spotlight iOS 7,12.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPad Spotlight iOS 7,12@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPad notification iOS 7,12.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPad notification iOS 7,12@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPhone App Icon iOS 5,6.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPhone App Icon iOS 5,6@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPhone App Icon iOS 7,12@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPhone App Icon iOS 7,12@3x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPhone Spotlight iOS 5,6 & Settings.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPhone Spotlight iOS 7,12@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPhone Spotlight iOS 7,12@3x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPhone notification iOS 7,12@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPhone notification iOS 7,12@3x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPhone settings iOS 7,12@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/iPhone settings iOS 7,12@3x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/App Store-1.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/App Store.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/Apple Watch Companion Settings@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/Apple Watch Companion Settings@3x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/Apple Watch Home Screen (38mm).png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/Apple Watch Home Screen (40mm).png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/Apple Watch Home Screen (44mm).png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/Apple Watch Notification center (38mm).png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/Apple Watch Notification center (42mm).png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/Apple Watch Short Look (38mm).png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/Apple Watch Short Look (42mm).png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/Apple Watch Short Look (44mm).png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/Contents.json +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/iPad App Icon iOS 7,12.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/iPad App Icon iOS 7,12@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/iPad Pro Icon iOS 9,12@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/iPad Settings.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/iPad Settings@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/iPad Spotlight iOS 7,12.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/iPad Spotlight iOS 7,12@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/iPad notification iOS 7,12.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/iPad notification iOS 7,12@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/iPhone App Icon iOS 7,12@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/iPhone App Icon iOS 7,12@3x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/iPhone Spotlight iOS 7,12@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/iPhone Spotlight iOS 7,12@3x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/iPhone notification iOS 7,12@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/iPhone notification iOS 7,12@3x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/iPhone settings iOS 7,12@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/iPhone settings iOS 7,12@3x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ktx_logo_200.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/linux/ktx_app.svg +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/mac/ktx_app.icns +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/mac/ktx_document.icns +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/win/ktx_app.ico +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/win/ktx_document.ico +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/win/ktx_logo_200_bmp3.bmp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/install-gitconfig.ps1 +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/install-gitconfig.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/basisu_c_binding/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/basisu_c_binding/inc/basisu_c_binding.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/basisu_c_binding/src/basisu_c_binding.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/pom.xml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/cpp/KtxErrorCode.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/cpp/KtxTexture.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/cpp/KtxTexture1.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/cpp/KtxTexture2.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/cpp/ktx-jni.manifest.in +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/cpp/libktx-jni.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/cpp/libktx-jni.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KhrDfModel.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KhrDfPrimaries.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KhrDfTransfer.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxAstcParams.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxBasisCodec.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxBasisParams.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxErrorCode.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxException.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxInternalformat.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxPackAstcBlockDimension.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxPackAstcEncoderMode.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxPackAstcQualityLevel.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxPackUastcFlagBits.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxSupercmpScheme.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxTexture.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxTexture1.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxTexture2.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxTextureCreateFlagBits.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxTextureCreateInfo.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxTextureCreateStorage.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxTranscodeFlagBits.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxTranscodeFormat.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/KtxUtilities.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/java/org/khronos/ktx/VkFormat.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/test/java/org/khronos/ktx/KtxUtilitiesTest.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/test/java/org/khronos/ktx/test/KtxParallelTest.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/test/java/org/khronos/ktx/test/KtxTestLibraryLoader.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/test/java/org/khronos/ktx/test/KtxTexture1Test.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/test/java/org/khronos/ktx/test/KtxTexture2Test.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/test/java/org/khronos/ktx/test/TestUtils.java +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/js_binding/class_compat.js +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/js_binding/ktx_wrapper.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/js_binding/module_create_compat.js +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/js_binding/transcoder_wrapper.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/js_binding/vk_format.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/.gitignore +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/LICENSE +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/MANIFEST.in +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/_static/.keep +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/buildscript.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/clean.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/conf.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/index.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/make.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/.gitignore +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/__init__.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/gl_internalformat.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/khr_df_model.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/khr_df_primaries.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/khr_df_transfer.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_astc_params.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_basis_codec.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_basis_params.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_error_code.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_hash_list.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_pack_astc_block_dimension.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_pack_astc_encoder_mode.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_pack_astc_quality_levels.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_pack_uastc_flag_bits.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_supercmp_scheme.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture1.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture1.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture1.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture2.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture2.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture2.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture_create_flag_bits.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture_create_info.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture_create_storage.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_transcode_flag_bits.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_transcode_fmt.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/vk_format.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/requirements.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/setup.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/tests/test_config.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/tests/test_ktx_texture.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/tests/test_ktx_texture1.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/tests/test_ktx_texture2.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/.clang-format +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/cmake/KtxConfig.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/def/internalexport.def +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/def/internalexport_write.def +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/def/internalexport_write_mingw.def +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/include/.clang-format +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/include/ktx.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/include/ktxvulkan.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/libktx_mainpage.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/nmkvkff +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/astc_codec.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/basis_encode.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/basis_sgd.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/basis_transcode.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/checkheader.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/etcunpack.cxx +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/filestream.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/filestream.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/formatsize.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/gl_format.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/gl_funclist.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/gl_funcs.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/gl_funcs.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/glformat_str.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/glloader.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/hashlist.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/info.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/ktxint.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/memstream.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/memstream.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/miniz_wrapper.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/strings.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/swap.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/texture.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/texture.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/texture1.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/texture1.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/texture2.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/texture2.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/texture_funcs.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/uthash.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vk2gl.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkFormat2glFormat.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkFormat2glInternalFormat.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkFormat2glType.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vk_format.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vk_funcs.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vk_funcs.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkformat_check.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkformat_check_variant.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkformat_enum.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkformat_str.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkformat_typesize.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkloader.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/writer1.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/writer2.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/.clang-format +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/EGL/egl.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/EGL/eglext.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/EGL/eglplatform.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GL/glcorearb.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GL/glext.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GL/glxext.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GL/wglext.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES/egl.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES/gl.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES/glext.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES/glplatform.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES2/gl2.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES2/gl2ext.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES2/gl2platform.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES3/gl3.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES3/gl31.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES3/gl3platform.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/KHR/khrplatform.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/common.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/_features.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/_fixes.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/_noise.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/_swizzle.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/_swizzle_func.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/_vectorize.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/dummy.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_common.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_common.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_common_simd.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_exponential.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_exponential.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_exponential_simd.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_geometric.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_geometric.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_geometric_simd.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_integer.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_integer.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_integer_simd.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_matrix.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_matrix.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_matrix_simd.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_packing.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_packing.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_packing_simd.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_trigonometric.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_trigonometric.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_trigonometric_simd.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_vector_relational.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_vector_relational.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_vector_relational_simd.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/glm.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/precision.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/setup.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_float.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_gentype.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_gentype.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_half.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_half.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_int.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat2x2.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat2x2.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat2x3.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat2x3.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat2x4.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat2x4.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat3x2.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat3x2.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat3x3.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat3x3.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat3x4.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat3x4.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat4x2.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat4x2.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat4x3.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat4x3.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat4x4.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat4x4.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat4x4_simd.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec1.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec1.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec2.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec2.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec3.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec3.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec4.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec4.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec4_simd.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/exponential.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/ext.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/fwd.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/geometric.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/glm.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/bitfield.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/bitfield.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/color_space.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/color_space.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/constants.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/constants.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/epsilon.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/epsilon.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/functions.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/functions.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/integer.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/integer.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/matrix_access.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/matrix_access.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/matrix_integer.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/matrix_inverse.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/matrix_inverse.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/matrix_transform.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/matrix_transform.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/noise.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/noise.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/packing.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/packing.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/quaternion.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/quaternion.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/quaternion_simd.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/random.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/random.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/reciprocal.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/reciprocal.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/round.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/round.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/type_aligned.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/type_precision.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/type_precision.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/type_ptr.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/type_ptr.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/ulp.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/ulp.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/vec1.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/vec1.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/associated_min_max.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/associated_min_max.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/bit.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/bit.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/closest_point.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/closest_point.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/color_encoding.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/color_encoding.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/color_space.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/color_space.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/color_space_YCoCg.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/color_space_YCoCg.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/common.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/common.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/compatibility.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/compatibility.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/component_wise.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/component_wise.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/dual_quaternion.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/dual_quaternion.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/euler_angles.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/euler_angles.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/extend.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/extend.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/extended_min_max.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/extended_min_max.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/exterior_product.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/exterior_product.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/fast_exponential.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/fast_exponential.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/fast_square_root.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/fast_square_root.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/fast_trigonometry.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/fast_trigonometry.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/float_notmalize.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/gradient_paint.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/gradient_paint.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/handed_coordinate_space.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/handed_coordinate_space.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/hash.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/hash.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/integer.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/integer.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/intersect.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/intersect.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/io.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/io.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/log_base.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/log_base.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_cross_product.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_cross_product.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_decompose.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_decompose.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_interpolation.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_interpolation.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_major_storage.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_major_storage.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_operation.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_operation.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_query.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_query.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_transform_2d.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_transform_2d.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/mixed_product.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/mixed_product.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/norm.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/norm.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/normal.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/normal.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/normalize_dot.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/normalize_dot.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/number_precision.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/number_precision.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/optimum_pow.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/optimum_pow.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/orthonormalize.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/orthonormalize.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/perpendicular.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/perpendicular.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/polar_coordinates.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/polar_coordinates.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/projection.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/projection.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/quaternion.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/quaternion.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/range.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/raw_data.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/raw_data.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/rotate_normalized_axis.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/rotate_normalized_axis.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/rotate_vector.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/rotate_vector.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/scalar_multiplication.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/scalar_relational.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/scalar_relational.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/spline.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/spline.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/std_based_type.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/std_based_type.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/string_cast.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/string_cast.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/transform.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/transform.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/transform2.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/transform2.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/type_aligned.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/type_aligned.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/type_trait.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/type_trait.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/vec_swizzle.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/vector_angle.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/vector_angle.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/vector_query.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/vector_query.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/wrap.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/wrap.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/integer.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat2x2.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat2x3.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat2x4.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat3x2.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat3x3.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat3x4.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat4x2.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat4x3.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat4x4.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/matrix.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/packing.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/common.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/exponential.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/geometric.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/integer.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/matrix.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/packing.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/platform.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/trigonometric.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/vector_relational.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/trigonometric.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/vec2.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/vec3.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/vec4.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/vector_relational.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/stb/stb_font_consolas_24_latin1.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/vma/vk_mem_alloc.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/header.html +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/icons/KTX_document.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/icons/KTX_editor.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/icons/Screen Shot 2017-04-19 at 11.50.54.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/icons/Screen Shot 2017-05-12 at 19.41.28.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/icons/Screen Shot 2017-05-12 at 21.06.25.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/icons/Screen Shot 2017-05-12 at 21.07.43.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/icons/ktx-swoosh.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/icons.dox +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/jswrappersDoxyLayout.xml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/libktxDoxyLayout.xml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/packageDoxyLayout.xml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/pages.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/toolsDoxyLayout.xml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/before_build_macos.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/build_android.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/build_android_debug.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/build_ios.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/build_java.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/build_linux.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/build_macos.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/build_wasm_docker.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/build_win.ps1 +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/check_lib_build_output.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/check_mkvk.ps1 +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/check_mkvk.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/download_release_assets.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/expand_kw +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/github_release.rb +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/gk +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/install_linux.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/install_macos.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/install_win.ps1 +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/ktx-compare-git +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/list_releases.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/mkrelnotes +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/mkversion +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/mkvkformatfiles +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/notarize.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/on_failure.ps1 +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/on_failure.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/readlink.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/smudge_date.ps1 +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/smudge_date.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tests/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/exr.imageio/exrinput.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/formatdesc.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/image.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/imagecodec.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/imageinput.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/imageio.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/imageio.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/imageio_utility.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/imageoutput.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/imagespan.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/jpg.imageio/jpginput.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/npbm.imageio/npbminput.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/png.imageio/pnginput.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/png.imageio/pngoutput.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_compare.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_convert.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_create.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_deflate.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_encode.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_extract.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_help.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_info.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_patch.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_transcode.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_validate.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/deflate_utils.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/encode_utils_astc.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/encode_utils_basis.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/encode_utils_common.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/format_descriptor.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/formats.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/fragment_uri.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/ktx_main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/metadata_utils.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/metrics_utils.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/schema/compare.json +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/schema/info.json +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/schema/validate.json +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/transcode_utils.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/transcode_utils.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/utility.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/validate.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/validate.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/validation_messages.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktxtools_mainpage.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/package/mac/Resources/ktx_logo_190_xp.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/package/mac/Resources/summary.html +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/package/mac/ktx-uninstall +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/package/mac/summary.rtfd/Conclusion_Success_32@2x.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/package/mac/summary.rtfd/TXT.rtf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/utils/argparser.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/utils/argparser.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/utils/platform_utils.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/utils/sbufstream.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/utils/stdafx.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/utils/unused.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/vcpkg-configuration.json +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/vcpkg-triplets/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/vcpkg-triplets/arm64-ios-simulator.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/vcpkg-triplets/arm64-ios.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/vcpkg-triplets/arm64-osx.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/vcpkg-triplets/x64-ios.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/vcpkg-triplets/x64-osx.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/vcpkg.json +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/github/compare-babylonjs.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.editorconfig +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.gitattributes +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/FUNDING.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/ISSUE_TEMPLATE/issue_template.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/pull_request_template.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/workflows/build.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/workflows/build_windows_vulkan_libs.ps1 +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/workflows/manual.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/workflows/scheduled.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/workflows/static-analysis.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.gitignore +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/LICENSE.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_allegro5.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_allegro5.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_android.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_android.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_dx10.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_dx10.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_dx11.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_dx11.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_dx12.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_dx12.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_dx9.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_dx9.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_glfw.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_glfw.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_glut.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_glut.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_metal.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_metal.mm +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_metal4.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_metal4.mm +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_null.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_null.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_opengl2.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_opengl2.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_opengl3.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_opengl3.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_opengl3_loader.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_osx.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_osx.mm +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdl2.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdl2.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdl3.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdl3.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdlgpu3.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdlgpu3.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdlgpu3_shaders.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdlrenderer2.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdlrenderer2.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdlrenderer3.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdlrenderer3.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_vulkan.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_vulkan.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_wgpu.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_wgpu.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_win32.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_win32.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/sdlgpu3/build_instructions.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/sdlgpu3/shader.frag +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/sdlgpu3/shader.vert +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/vulkan/build_instructions.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/vulkan/generate_spv.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/vulkan/glsl_shader.frag +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/vulkan/glsl_shader.vert +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/BACKENDS.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/CHANGELOG.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/CONTRIBUTING.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/EXAMPLES.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/FAQ.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/FONTS.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/SECURITY.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/TODO.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/README.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_allegro5/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_allegro5/example_allegro5.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_allegro5/example_allegro5.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_allegro5/imconfig_allegro5.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_allegro5/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_android_opengl3/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_android_opengl3/android/.gitignore +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_android_opengl3/android/app/build.gradle +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_android_opengl3/android/app/src/main/java/MainActivity.kt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_android_opengl3/android/build.gradle +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_android_opengl3/android/gradle/libs.versions.toml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_android_opengl3/android/settings.gradle +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_android_opengl3/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal/example_apple_metal.xcodeproj/project.pbxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal/iOS/Info-iOS.plist +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal/iOS/LaunchScreen.storyboard +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal/macOS/Info-macOS.plist +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal/macOS/MainMenu.storyboard +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal/main.mm +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal4/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal4/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal4/example_apple_metal4.xcodeproj/project.pbxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal4/iOS/Info-iOS.plist +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal4/iOS/LaunchScreen.storyboard +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal4/macOS/Info-macOS.plist +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal4/macOS/MainMenu.storyboard +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal4/main.mm +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_opengl2/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_opengl2/example_apple_opengl2.xcodeproj/project.pbxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_opengl2/main.mm +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_metal/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_metal/main.mm +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl2/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl2/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl2/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl3/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl3/Makefile.emscripten +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl3/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl3/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_vulkan/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_vulkan/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_vulkan/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_vulkan/build_win64.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_vulkan/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_wgpu/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_wgpu/Makefile.emscripten +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_wgpu/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_wgpu/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glut_opengl2/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glut_opengl2/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_null/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_null/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_null/example_null.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_null/example_null.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_null/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_directx11/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_directx11/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_metal/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_metal/main.mm +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl2/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl2/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl2/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl2/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl3/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl3/Makefile.emscripten +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl3/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl3/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl3/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_sdlrenderer2/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_sdlrenderer2/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_sdlrenderer2/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_sdlrenderer2/example_sdl2_sdlrenderer2.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_sdlrenderer2/example_sdl2_sdlrenderer2.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_sdlrenderer2/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_vulkan/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_vulkan/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_vulkan/build_win64.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_vulkan/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_wgpu/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_wgpu/Makefile.emscripten +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_wgpu/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_wgpu/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_directx11/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_directx11/example_sdl3_directx11.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_directx11/example_sdl3_directx11.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_directx11/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_metal/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_metal/main.mm +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_metal4/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_metal4/main.mm +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_opengl3/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_opengl3/Makefile.emscripten +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_opengl3/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_opengl3/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_opengl3/build_win64.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_opengl3/example_sdl3_opengl3.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_opengl3/example_sdl3_opengl3.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_opengl3/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlgpu3/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlgpu3/build_win64.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlgpu3/example_sdl3_sdlgpu3.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlgpu3/example_sdl3_sdlgpu3.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlgpu3/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlrenderer3/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlrenderer3/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlrenderer3/example_sdl3_sdlrenderer3.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlrenderer3/example_sdl3_sdlrenderer3.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlrenderer3/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_vulkan/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_vulkan/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_vulkan/build_win64.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_vulkan/example_sdl3_vulkan.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_vulkan/example_sdl3_vulkan.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_vulkan/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_wgpu/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_wgpu/Makefile.emscripten +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_wgpu/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_wgpu/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx10/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx10/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx11/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx11/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx12/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx12/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx9/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx9/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_opengl3/build_mingw.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_opengl3/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_opengl3/example_win32_opengl3.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_opengl3/example_win32_opengl3.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_opengl3/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_vulkan/build_win32.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_vulkan/build_win64.bat +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_vulkan/example_win32_vulkan.vcxproj +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_vulkan/example_win32_vulkan.vcxproj.filters +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_vulkan/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/imgui_examples.sln +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/libs/emscripten/emscripten_mainloop_stub.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/libs/emscripten/shell_minimal.html +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/libs/glfw/COPYING.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/libs/glfw/include/GLFW/glfw3.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/libs/glfw/include/GLFW/glfw3native.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/libs/usynergy/README.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/libs/usynergy/uSynergy.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/libs/usynergy/uSynergy.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imconfig.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imgui.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imgui.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imgui_demo.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imgui_draw.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imgui_internal.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imgui_tables.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imgui_widgets.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imstb_rectpack.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imstb_textedit.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imstb_truetype.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/README.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/cpp/README.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/cpp/imgui_stdlib.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/cpp/imgui_stdlib.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/debuggers/README.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/debuggers/imgui.gdb +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/debuggers/imgui.natstepfilter +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/debuggers/imgui.natvis +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/debuggers/imgui_lldb.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/fonts/Cousine-Regular.ttf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/fonts/DroidSans.ttf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/fonts/Karla-Regular.ttf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/fonts/ProggyClean.ttf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/fonts/ProggyTiny.ttf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/fonts/Roboto-Medium.ttf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/fonts/binary_to_compressed_c.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/freetype/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/freetype/imgui_freetype.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/freetype/imgui_freetype.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/single_file/imgui_single_file.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.clang-format +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.github/FUNDING.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.github/ISSUE_TEMPLATE/issue-report.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.github/workflows/c-cpp.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.github/workflows/ci.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.github/workflows/mingw-w64-msys2.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.gitignore +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/LICENSE +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/benchmark/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/benchmark/bench_v3.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/benchmark/gen_synthetic.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/meson.build +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/meson_options.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/BoundsChecking/integer-out-of-bounds.gltf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/BoundsChecking/invalid-buffer-index.gltf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/BoundsChecking/invalid-buffer-view-index.gltf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/BoundsChecking/invalid-primitive-indices.gltf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/BoundsChecking/simpleTriangle.bin +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube/Cube.bin +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube/Cube.gltf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube/Cube_BaseColor.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube/Cube_MetallicRoughness.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube-texture-ext/Cube-textransform.gltf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube-texture-ext/Cube.bin +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube-texture-ext/Cube_MetallicRoughness.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube-texture-ext/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/CubeImageUriSpaces/ 2x2 image has multiple spaces.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/CubeImageUriSpaces/2x2 image has spaces.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/CubeImageUriSpaces/CubeImageUriMultipleSpaces.gltf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/CubeImageUriSpaces/CubeImageUriSpaces.bin +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/CubeImageUriSpaces/CubeImageUriSpaces.gltf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Extensions-issue97/test.gltf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Extensions-overwrite-issue261/issue-261.bin +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Extensions-overwrite-issue261/issue-261.gltf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/SparseMorphTargets-issue280/singleBlendshapeCube_sparse.glb +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/box01.glb +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/regression/unassigned-skeleton.gltf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/regression/zero-sized-bin-chunk-issue-440.glb +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/test_runner.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/catch.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/issue-416.gltf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/issue-492.glb +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/tester_v3_c.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/tester_v3_c_v1port.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/tester_v3_freestanding.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/tester_v3_json_c.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/v3/fuzzer/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/v3/fuzzer/fuzz_gltf_v3.cc +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/v3/fuzzer/fuzz_gltf_v3_c.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/v3/security/negstride.gltf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/v3/security/oob_buffer_view.gltf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/v3/security/oob_extension_indices.gltf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/v3/security/traversal_relative.gltf +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tiny_gltf_v3.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tiny_gltf_v3.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tinygltf_json_c.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/web/Makefile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/web/README.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/web/gen_sample.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/web/index.html +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/web/loader.c +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/web/main.js +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/web/style.css +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/plugins/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/plugins/debug/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/plugins/debug/ReaderWriterDEBUG.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/plugins/gltf/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/plugins/gltf/ReaderWriterGLTF.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/plugins/ktx2/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/plugins/ktx2/KTX2.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/plugins/ktx2/ReaderWriterKTX2.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/pytest.ini +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Array.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/CameraIntents.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/CaptureCubeMap.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Cursor.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Debug.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/GBuffer.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/GGXPrefilter.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Gizmos.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/GraphicsWindowEGL.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/GraphicsWindowGBM.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Grid.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/LambertianBake.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Linux.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Manipulators.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Picking.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Shadow.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Shapes.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Accessor.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Accessor.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Animation.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Animation.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Log.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Material.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Material.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Mesh.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Mesh.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Reader.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/ReaderImpl.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/ReaderImpl.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Scene.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Scene.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Skin.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Skin.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Texture.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/tg3_util.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Array.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Callbacks.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/CameraIntents.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/CaptureCubeMap.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Cursor.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Debug.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/GBuffer.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/GGXPrefilter.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Gizmos.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/GraphicsWindowEGL.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/GraphicsWindowGBM.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/IBL.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/ImGui.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/LambertianBake.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Linux.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Manipulators.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Picking.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Shader.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Shapes.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Version.hpp.in +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Visitors.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Warnings.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/gltf/Reader.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/gltf/Shader.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/gltf/SimplePlayer.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/ktx2/KTX2.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/test/__init__.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/test/conftest.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/test/osgx_Callbacks.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/test/osgx_LightSet.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/test/osgx_Material.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/test/osgx_Picking.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/test/osgx_Shapes.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/utils/osgx-cubemap.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/utils/osgx-describe.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/utils/osgx-drawables.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/utils/osgx-gltf-viewer.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/utils/osgx-gltf.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.appveyor.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.clang-format +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.clang-tidy +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.cmake-format.yaml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.codespell-ignore-lines +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.gitattributes +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/CODEOWNERS +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/CONTRIBUTING.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/dependabot.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/labeler.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/labeler_merged.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/matchers/pylint.json +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/pull_request_template.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/ci.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/configure.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/docs-link.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/format.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/labeler.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/nightlies.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/pip.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/reusable-standard.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/tests-cibw.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/upstream.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.gitignore +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.pre-commit-config.yaml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.readthedocs.yml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/CMakePresets.json +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/LICENSE +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/README.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/SECURITY.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/Doxyfile +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/_static/css/custom.css +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/cast/chrono.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/cast/custom.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/cast/eigen.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/cast/functional.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/cast/index.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/cast/overview.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/cast/stl.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/cast/strings.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/classes.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/deadlock.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/deprecated.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/embedding.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/exceptions.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/functions.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/misc.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/pycpp/index.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/pycpp/numpy.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/pycpp/object.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/pycpp/utilities.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/smart_ptrs.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/basics.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/benchmark.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/benchmark.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/changelog.md +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/classes.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/cmake/index.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/compiling.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/conf.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/faq.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/index.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/installing.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/limitations.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/pybind11-logo.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/pybind11_vs_boost_python1.svg +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/pybind11_vs_boost_python2.svg +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/reference.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/release.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/requirements.in +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/requirements.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/upgrade.rst +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/attr.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/buffer_info.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/cast.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/chrono.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/common.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/complex.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/conduit/README.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/conduit/pybind11_conduit_v1.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/conduit/wrap_include_python_h.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/critical_section.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/argument_vector.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/class.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/common.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/cpp_conduit.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/descr.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/exception_translation.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/function_record_pyobject.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/holder_caster_foreign_helpers.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/init.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/internals.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/native_enum_data.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/pybind11_namespace_macros.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/struct_smart_holder.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/type_caster_base.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/typeid.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/using_smart_holder.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/value_and_holder.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/eigen/common.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/eigen/matrix.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/eigen/tensor.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/eigen.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/embed.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/eval.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/functional.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/gil.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/gil_safe_call_once.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/gil_simple.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/iostream.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/native_enum.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/numpy.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/operators.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/options.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/pybind11.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/pytypes.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/stl/filesystem.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/stl.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/stl_bind.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/subinterpreter.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/trampoline_self_life_support.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/type_caster_pyobject_ptr.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/typing.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/warnings.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/noxfile.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/pybind11/__init__.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/pybind11/__main__.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/pybind11/_version.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/pybind11/commands.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/pybind11/py.typed +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/pybind11/setup_helpers.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/pyproject.toml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/conftest.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/constructor_stats.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/cross_module_gil_utils.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/cross_module_interleaved_error_already_set.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/custom_exceptions.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/env.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/exo_planet_c_api.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/exo_planet_pybind11.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/extra_python_package/pytest.ini +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/extra_python_package/test_files.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/extra_setuptools/pytest.ini +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/extra_setuptools/test_setuphelper.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/home_planet_very_lonely_traveler.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/local_bindings.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/mod_per_interpreter_gil.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/mod_per_interpreter_gil_with_singleton.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/mod_shared_interpreter_gil.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/object.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/pure_cpp/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/pure_cpp/smart_holder_poc.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/pure_cpp/smart_holder_poc_test.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/pybind11_cross_module_tests.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/pybind11_tests.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/pybind11_tests.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/pyproject.toml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/pytest.ini +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/requirements.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/standalone_enum_module.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_async.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_async.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_buffers.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_buffers.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_builtin_casters.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_builtin_casters.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_call_policies.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_call_policies.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_callbacks.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_callbacks.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_chrono.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_chrono.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_cross_module_use_after_one_module_dealloc.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_cross_module_use_after_one_module_dealloc.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_release_gil_before_calling_cpp_dtor.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_release_gil_before_calling_cpp_dtor.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_basic.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_basic.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_disowning.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_disowning.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_disowning_mi.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_disowning_mi.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_factory_constructors.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_factory_constructors.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_inheritance.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_inheritance.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_mi_thunks.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_mi_thunks.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_property.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_property.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_property_non_owning.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_property_non_owning.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_shared_ptr_copy_move.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_shared_ptr_copy_move.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_basic.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_basic.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_self_life_support.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_self_life_support.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_shared_from_this.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_shared_from_this.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_shared_ptr_cpp_arg.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_shared_ptr_cpp_arg.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_unique_ptr.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_unique_ptr.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_unique_ptr_custom_deleter.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_unique_ptr_custom_deleter.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_unique_ptr_member.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_unique_ptr_member.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_virtual_py_cpp_mix.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_virtual_py_cpp_mix.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/embed.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/main.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/test.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_const_name.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_const_name.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_constants_and_functions.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_constants_and_functions.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_copy_move.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_copy_move.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cpp_conduit.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cpp_conduit.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cpp_conduit_traveler_bindings.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cpp_conduit_traveler_types.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cross_module_rtti/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cross_module_rtti/bindings.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cross_module_rtti/catch.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cross_module_rtti/lib.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cross_module_rtti/lib.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cross_module_rtti/test_cross_module_rtti.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_custom_type_casters.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_custom_type_casters.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_custom_type_setup.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_custom_type_setup.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_docs_advanced_cast_custom.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_docs_advanced_cast_custom.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_docstring_options.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_docstring_options.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_eigen_matrix.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_eigen_matrix.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_eigen_tensor.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_eigen_tensor.inl +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_eigen_tensor.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_enum.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_enum.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_eval.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_eval.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_eval_call.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_exceptions.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_exceptions.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_exceptions.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_factory_constructors.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_factory_constructors.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_gil_scoped.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_gil_scoped.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_iostream.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_iostream.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_kwargs_and_defaults.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_kwargs_and_defaults.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_local_bindings.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_local_bindings.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_methods_and_attributes.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_methods_and_attributes.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_modules.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_modules.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_multiple_inheritance.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_multiple_inheritance.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_multiple_interpreters.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_native_enum.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_native_enum.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_numpy_array.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_numpy_array.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_numpy_dtypes.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_numpy_dtypes.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_numpy_scalars.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_numpy_scalars.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_numpy_vectorize.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_numpy_vectorize.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_opaque_types.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_opaque_types.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_operator_overloading.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_operator_overloading.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_pickling.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_pickling.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_potentially_slicing_weak_ptr.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_potentially_slicing_weak_ptr.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_python_multiple_inheritance.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_python_multiple_inheritance.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_pytypes.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_pytypes.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_scoped_critical_section.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_scoped_critical_section.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_sequences_and_iterators.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_sequences_and_iterators.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_smart_ptr.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_smart_ptr.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_standalone_enum_module.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_stl.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_stl.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_stl_binders.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_stl_binders.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_tagbased_polymorphic.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_tagbased_polymorphic.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_thread.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_thread.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_type_caster_pyobject_ptr.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_type_caster_pyobject_ptr.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_type_caster_std_function_specializations.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_type_caster_std_function_specializations.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_union.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_union.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_unnamed_namespace_a.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_unnamed_namespace_a.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_unnamed_namespace_b.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_unnamed_namespace_b.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_vector_unique_ptr_member.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_vector_unique_ptr_member.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_virtual_functions.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_virtual_functions.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_warnings.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_warnings.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/CMakeLists.txt +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/catch.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/catch_skip.h +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/external_module.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/test_args_convert_vector.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/test_argument_vector.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/test_interpreter.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/test_interpreter.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/test_subinterpreter.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/test_trampoline.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/valgrind-numpy-scipy.supp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/valgrind-python.supp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/FindCatch.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/FindEigen3.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/FindPythonLibsNew.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/JoinPaths.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/check-style.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/cmake_uninstall.cmake.in +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/codespell_ignore_lines_from_errors.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/libsize.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/make_changelog.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/make_global.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/pybind11.pc.in +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/pybind11Common.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/pybind11Config.cmake.in +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/pybind11NewTools.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/pybind11Tools.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11x-osg.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pyside6-basic.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/scripts/build-manylinux-wheel.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/scripts/compact-wheel-libraries.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/scripts/msvc-wine-bootstrap.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/scripts/msvc-wine-wheel.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/scripts/msvc-wine.sh +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/scripts/repair-windows-wheel.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-async-gltf.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-async.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-blur.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-cuda-points.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-explosion.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-flame.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-hatch.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-hover.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-info.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-instanced-ssbo.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-instanced.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-linux.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-match4.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-picking.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-points.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-polyhaven.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-rtt.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-voxelize2d.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg_dice.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg_repl.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg_visitor.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/logo.png +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/OpenSceneGraph-python.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/ArgumentParser.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/ArgumentParser.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Array.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Array.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Bound.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Bound.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Buffer.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Buffer.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Camera.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Camera.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Drawable.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Drawable.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Geode.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Geode.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Geometry.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Geometry.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/GraphicsContext.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Group.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Group.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Image.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Image.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Matrix.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Matrix.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Node.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Node.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/NodeCallback.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/NodeCallback.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/NodeVisitor.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/NodeVisitor.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Notify.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Notify.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Object.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Object.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Operation.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Operation.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Program.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Program.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Quat.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Shader.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Shape.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/State.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/State.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/StateAttributes.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Texture.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Texture.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Uniform.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Uniform.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Vec.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Vec.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/View.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/callable.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/lifetime-probe.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osgEarth-python.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosg.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosgAnimation.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosgAnimation.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosgDB.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosgGA.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosgUtil.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosgUtil.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosgViewer.cpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosgViewer.hpp +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyproject.toml +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pytest.ini +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/python/OpenSceneGraph/__init__.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/python/OpenSceneGraph/examples/__init__.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/python/osgx.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/__init__.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/conftest.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osgAnimation_Motion.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osgDB.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osgGA_CameraManipulator.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osgViewer_View.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Array.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Callback.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Camera.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Drawable.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Geode.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Geometry.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Image.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Matrix.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Misc.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Node.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_NodeVisitor.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Notify.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Object.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Program.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Quat.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Shape.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_State.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_StateSet.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Texture.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Transform.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Uniform.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Vec.py +0 -0
- {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/template.py +0 -0
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
name: Build examples package
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
inputs:
|
|
6
|
+
build:
|
|
7
|
+
description: Build the curated examples-package artifact
|
|
8
|
+
required: true
|
|
9
|
+
default: false
|
|
10
|
+
type: boolean
|
|
11
|
+
|
|
12
|
+
permissions:
|
|
13
|
+
contents: read
|
|
14
|
+
|
|
15
|
+
jobs:
|
|
16
|
+
examples-package:
|
|
17
|
+
name: Examples package / CPU asset preparation
|
|
18
|
+
# This is deliberately opt-in. Run manually with:
|
|
19
|
+
# gh workflow run examples.yml -f build=true --ref 5-examples-package
|
|
20
|
+
if: inputs.build
|
|
21
|
+
runs-on: ubuntu-24.04
|
|
22
|
+
|
|
23
|
+
steps:
|
|
24
|
+
- uses: actions/checkout@v6
|
|
25
|
+
with:
|
|
26
|
+
# osgx and its ImGui dependency are both required by osgx-pbribl.
|
|
27
|
+
submodules: recursive
|
|
28
|
+
persist-credentials: false
|
|
29
|
+
|
|
30
|
+
- name: Set up Python
|
|
31
|
+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
32
|
+
with:
|
|
33
|
+
python-version: "3.12"
|
|
34
|
+
|
|
35
|
+
# This is a plain Ubuntu build, not the manylinux container used by the
|
|
36
|
+
# base-wheel workflow. These are the native headers needed by the OSG
|
|
37
|
+
# dependency graph used to build the headless asset-preparation tool.
|
|
38
|
+
- name: Install native build dependencies
|
|
39
|
+
run: |
|
|
40
|
+
sudo apt-get update
|
|
41
|
+
sudo apt-get install -y \
|
|
42
|
+
libxrandr-dev \
|
|
43
|
+
libjpeg-turbo8-dev \
|
|
44
|
+
libpng-dev \
|
|
45
|
+
libtiff-dev \
|
|
46
|
+
libgl1-mesa-dev \
|
|
47
|
+
libglu1-mesa-dev
|
|
48
|
+
|
|
49
|
+
- name: Check out pinned Khronos asset sources
|
|
50
|
+
shell: bash
|
|
51
|
+
run: |
|
|
52
|
+
read -r environments_repository environments_commit assets_repository assets_commit < <(
|
|
53
|
+
python -c 'import tomllib; document = tomllib.load(open("examples/assets.toml", "rb")); environments = document["sources"]["khronos_environments"]; assets = document["sources"]["khronos_assets"]; print(environments["repository"], environments["commit"], assets["repository"], assets["commit"])'
|
|
54
|
+
)
|
|
55
|
+
git clone "$environments_repository" "$RUNNER_TEMP/glTF-Sample-Environments"
|
|
56
|
+
git -C "$RUNNER_TEMP/glTF-Sample-Environments" checkout --detach "$environments_commit"
|
|
57
|
+
git clone "$assets_repository" "$RUNNER_TEMP/glTF-Sample-Assets"
|
|
58
|
+
git -C "$RUNNER_TEMP/glTF-Sample-Assets" checkout --detach "$assets_commit"
|
|
59
|
+
|
|
60
|
+
- name: Build curated examples wheel
|
|
61
|
+
env:
|
|
62
|
+
PYOSG_SCRATCH: ${{ runner.temp }}/pyosg
|
|
63
|
+
PYOSG_KHRONOS_ENVIRONMENTS_DIR: ${{ runner.temp }}/glTF-Sample-Environments
|
|
64
|
+
PYOSG_KHRONOS_ASSETS_DIR: ${{ runner.temp }}/glTF-Sample-Assets
|
|
65
|
+
PYOSG_PREPARE_CATALOG_ASSETS: "1"
|
|
66
|
+
PYOSG_PBRIBL_SOFTWARE: "1"
|
|
67
|
+
PYOSG_BUILD_BASE_WHEEL: "0"
|
|
68
|
+
PYOSG_BUILD_EXAMPLES_WHEEL: "1"
|
|
69
|
+
run: |
|
|
70
|
+
python -m pip install build
|
|
71
|
+
etc/scripts/build-local-wheel.sh
|
|
72
|
+
|
|
73
|
+
- name: Upload examples wheel
|
|
74
|
+
uses: actions/upload-artifact@v4
|
|
75
|
+
with:
|
|
76
|
+
name: OpenSceneGraph-examples
|
|
77
|
+
path: ${{ runner.temp }}/pyosg/wheelhouse/openscenegraph_examples-*.whl
|
|
78
|
+
if-no-files-found: error
|
|
@@ -0,0 +1,339 @@
|
|
|
1
|
+
name: Build wheels
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
# Release tags build the same wheels, then unlock the publish job below.
|
|
7
|
+
tags: ["v*"]
|
|
8
|
+
workflow_dispatch:
|
|
9
|
+
inputs:
|
|
10
|
+
build:
|
|
11
|
+
description: Build release artifacts
|
|
12
|
+
required: true
|
|
13
|
+
default: false
|
|
14
|
+
type: boolean
|
|
15
|
+
target:
|
|
16
|
+
description: Artifact set to build
|
|
17
|
+
required: true
|
|
18
|
+
default: all
|
|
19
|
+
type: choice
|
|
20
|
+
options:
|
|
21
|
+
- all
|
|
22
|
+
- linux-x86_64
|
|
23
|
+
- linux-aarch64
|
|
24
|
+
- windows-x86_64
|
|
25
|
+
- sdist
|
|
26
|
+
|
|
27
|
+
# The workflow only needs to read the repository and upload its wheel artifact.
|
|
28
|
+
permissions:
|
|
29
|
+
contents: read
|
|
30
|
+
|
|
31
|
+
jobs:
|
|
32
|
+
linux-x86_64:
|
|
33
|
+
name: Linux x86-64 / CPython 3.12-3.14 / manylinux_2_28
|
|
34
|
+
# Pushes remain visible in Actions but do not consume build capacity.
|
|
35
|
+
# Run manually with: gh workflow run wheels.yml -f build=true
|
|
36
|
+
if: inputs.build && (inputs.target == 'all' || inputs.target == 'linux-x86_64')
|
|
37
|
+
# Self-hosted VPS build, kept for reference now that the repo is public
|
|
38
|
+
# and GitHub-hosted runners are usable without spend concerns.
|
|
39
|
+
# runs-on: [self-hosted, linux, x64]
|
|
40
|
+
runs-on: ubuntu-24.04
|
|
41
|
+
|
|
42
|
+
steps:
|
|
43
|
+
- uses: actions/checkout@v6
|
|
44
|
+
with:
|
|
45
|
+
# osgx is part of the pinned wheel dependency graph.
|
|
46
|
+
submodules: recursive
|
|
47
|
+
persist-credentials: false
|
|
48
|
+
|
|
49
|
+
- name: Set up cibuildwheel host Python
|
|
50
|
+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
51
|
+
with:
|
|
52
|
+
python-version: "3.11 - 3.14"
|
|
53
|
+
|
|
54
|
+
- name: Build and test repaired wheel
|
|
55
|
+
uses: pypa/cibuildwheel@v3.4.1
|
|
56
|
+
with:
|
|
57
|
+
# Keep the action's output location explicit for the following
|
|
58
|
+
# inspection and artifact-upload steps.
|
|
59
|
+
output-dir: ${{ github.workspace }}/wheelhouse
|
|
60
|
+
env:
|
|
61
|
+
CIBW_BUILD: cp312-manylinux_x86_64 cp313-manylinux_x86_64 cp314-manylinux_x86_64
|
|
62
|
+
CIBW_ARCHS_LINUX: x86_64
|
|
63
|
+
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
|
|
64
|
+
# osgx::platform and the PNG/JPEG/TIFF plugins require these
|
|
65
|
+
# development packages. Install them inside the manylinux container,
|
|
66
|
+
# not on the self-hosted runner host.
|
|
67
|
+
CIBW_BEFORE_ALL: >-
|
|
68
|
+
dnf install -y libXrandr-devel libjpeg-turbo-devel libpng-devel libtiff-devel
|
|
69
|
+
# auditwheel needs the usual ELF link chain while it analyzes the
|
|
70
|
+
# wheel. Afterwards compact the ZIP-flattened aliases and rebuild
|
|
71
|
+
# RECORD, keeping only each library's ABI SONAME.
|
|
72
|
+
CIBW_REPAIR_WHEEL_COMMAND: >-
|
|
73
|
+
auditwheel repair -w {dest_dir} {wheel} &&
|
|
74
|
+
python /project/etc/scripts/compact-wheel-libraries.py {dest_dir}
|
|
75
|
+
# cibuildwheel installs the repaired wheel into an isolated test
|
|
76
|
+
# environment before executing this command.
|
|
77
|
+
CIBW_TEST_COMMAND: >-
|
|
78
|
+
python -c "import OpenSceneGraph;
|
|
79
|
+
from OpenSceneGraph.osg import Node;
|
|
80
|
+
from OpenSceneGraph.GL import GL_RGBA;
|
|
81
|
+
assert Node is OpenSceneGraph.osg.Node, 'osg.Node identity mismatch';
|
|
82
|
+
assert GL_RGBA == OpenSceneGraph.GL.GL_RGBA, 'GL_RGBA identity mismatch';
|
|
83
|
+
registry = OpenSceneGraph.osgDB.Registry.instance();
|
|
84
|
+
extensions = ('osg', 'obj', 'stl', 'bmp', 'dds', 'hdr', 'jpeg',
|
|
85
|
+
'jpg', 'pnm', 'png', 'rgb', 'tga', 'tif', 'tiff', 'gltf', 'ktx2');
|
|
86
|
+
missing = [extension for extension in extensions
|
|
87
|
+
if not registry.getReaderWriterForExtension(extension)];
|
|
88
|
+
assert not missing, f'missing osgDB plugins: {missing}';
|
|
89
|
+
import osgx"
|
|
90
|
+
|
|
91
|
+
- name: Inspect repaired wheel dependencies
|
|
92
|
+
run: |
|
|
93
|
+
wheel="$(find "${{ github.workspace }}/wheelhouse" -maxdepth 1 -name '*.whl' -print -quit)"
|
|
94
|
+
test -n "$wheel"
|
|
95
|
+
docker run --rm \
|
|
96
|
+
--volume "${{ github.workspace }}/wheelhouse:/wheelhouse:ro" \
|
|
97
|
+
quay.io/pypa/manylinux_2_28_x86_64 \
|
|
98
|
+
auditwheel show "/wheelhouse/$(basename "$wheel")"
|
|
99
|
+
|
|
100
|
+
- name: Upload repaired wheel
|
|
101
|
+
uses: actions/upload-artifact@v4
|
|
102
|
+
with:
|
|
103
|
+
name: OpenSceneGraph-manylinux_2_28-x86_64
|
|
104
|
+
path: wheelhouse/*.whl
|
|
105
|
+
if-no-files-found: error
|
|
106
|
+
|
|
107
|
+
linux-aarch64:
|
|
108
|
+
name: Linux ARM64 / CPython 3.12-3.14 / manylinux_2_28
|
|
109
|
+
if: inputs.build && (inputs.target == 'all' || inputs.target == 'linux-aarch64')
|
|
110
|
+
runs-on: ubuntu-24.04-arm
|
|
111
|
+
|
|
112
|
+
steps:
|
|
113
|
+
- uses: actions/checkout@v6
|
|
114
|
+
with:
|
|
115
|
+
# osgx is part of the pinned wheel dependency graph.
|
|
116
|
+
submodules: recursive
|
|
117
|
+
persist-credentials: false
|
|
118
|
+
|
|
119
|
+
- name: Set up cibuildwheel host Python
|
|
120
|
+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
121
|
+
with:
|
|
122
|
+
python-version: "3.11 - 3.14"
|
|
123
|
+
|
|
124
|
+
- name: Build and test repaired wheel
|
|
125
|
+
uses: pypa/cibuildwheel@v3.4.1
|
|
126
|
+
with:
|
|
127
|
+
output-dir: ${{ github.workspace }}/wheelhouse
|
|
128
|
+
env:
|
|
129
|
+
CIBW_BUILD: cp312-manylinux_aarch64 cp313-manylinux_aarch64 cp314-manylinux_aarch64
|
|
130
|
+
CIBW_ARCHS_LINUX: aarch64
|
|
131
|
+
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28
|
|
132
|
+
# This is a one-off ARM compatibility probe. The launcher appends
|
|
133
|
+
# -Wno-error after each target's own compiler flags.
|
|
134
|
+
CIBW_ENVIRONMENT_LINUX: >-
|
|
135
|
+
CMAKE_ARGS="-DCMAKE_C_COMPILER_LAUNCHER=/project/.ci-no-werror -DCMAKE_CXX_COMPILER_LAUNCHER=/project/.ci-no-werror"
|
|
136
|
+
CIBW_BEFORE_ALL: >-
|
|
137
|
+
dnf install -y libXrandr-devel libjpeg-turbo-devel libpng-devel libtiff-devel &&
|
|
138
|
+
printf '%s\n' '#!/bin/sh' 'exec "$@" -Wno-error' > /project/.ci-no-werror &&
|
|
139
|
+
chmod +x /project/.ci-no-werror
|
|
140
|
+
CIBW_REPAIR_WHEEL_COMMAND: >-
|
|
141
|
+
auditwheel repair -w {dest_dir} {wheel} &&
|
|
142
|
+
python /project/etc/scripts/compact-wheel-libraries.py {dest_dir}
|
|
143
|
+
CIBW_TEST_COMMAND: >-
|
|
144
|
+
python -c "import OpenSceneGraph;
|
|
145
|
+
from OpenSceneGraph.osg import Node;
|
|
146
|
+
from OpenSceneGraph.GL import GL_RGBA;
|
|
147
|
+
assert Node is OpenSceneGraph.osg.Node, 'osg.Node identity mismatch';
|
|
148
|
+
assert GL_RGBA == OpenSceneGraph.GL.GL_RGBA, 'GL_RGBA identity mismatch';
|
|
149
|
+
registry = OpenSceneGraph.osgDB.Registry.instance();
|
|
150
|
+
extensions = ('osg', 'obj', 'stl', 'bmp', 'dds', 'hdr', 'jpeg',
|
|
151
|
+
'jpg', 'pnm', 'png', 'rgb', 'tga', 'tif', 'tiff', 'gltf', 'ktx2');
|
|
152
|
+
missing = [extension for extension in extensions
|
|
153
|
+
if not registry.getReaderWriterForExtension(extension)];
|
|
154
|
+
assert not missing, f'missing osgDB plugins: {missing}';
|
|
155
|
+
import osgx"
|
|
156
|
+
|
|
157
|
+
- name: Inspect repaired wheel dependencies
|
|
158
|
+
run: |
|
|
159
|
+
wheel="$(find "${{ github.workspace }}/wheelhouse" -maxdepth 1 -name '*.whl' -print -quit)"
|
|
160
|
+
test -n "$wheel"
|
|
161
|
+
docker run --rm \
|
|
162
|
+
--volume "${{ github.workspace }}/wheelhouse:/wheelhouse:ro" \
|
|
163
|
+
quay.io/pypa/manylinux_2_28_aarch64 \
|
|
164
|
+
auditwheel show "/wheelhouse/$(basename "$wheel")"
|
|
165
|
+
|
|
166
|
+
- name: Upload repaired wheel
|
|
167
|
+
uses: actions/upload-artifact@v4
|
|
168
|
+
with:
|
|
169
|
+
name: OpenSceneGraph-manylinux_2_28-aarch64
|
|
170
|
+
path: wheelhouse/*.whl
|
|
171
|
+
if-no-files-found: error
|
|
172
|
+
|
|
173
|
+
windows-x86_64:
|
|
174
|
+
name: Windows x86-64 / CPython 3.12-3.14
|
|
175
|
+
if: inputs.build && (inputs.target == 'all' || inputs.target == 'windows-x86_64')
|
|
176
|
+
runs-on: windows-latest
|
|
177
|
+
|
|
178
|
+
steps:
|
|
179
|
+
- uses: actions/checkout@v6
|
|
180
|
+
with:
|
|
181
|
+
# Match Linux exactly: the wheel builds the pinned osgx source.
|
|
182
|
+
submodules: recursive
|
|
183
|
+
persist-credentials: false
|
|
184
|
+
|
|
185
|
+
- name: Set up cibuildwheel host Python
|
|
186
|
+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
187
|
+
with:
|
|
188
|
+
python-version: "3.12"
|
|
189
|
+
|
|
190
|
+
# OSG itself is fetched from its pinned revision; vcpkg supplies the
|
|
191
|
+
# Windows development dependencies needed by the OSG libraries/plugins
|
|
192
|
+
# selected in CMakeLists.txt. Use the normal shared triplet: OSG's older
|
|
193
|
+
# TIFF plugin only links tiff.lib, while the TIFF DLL itself correctly
|
|
194
|
+
# carries its JPEG/LZMA dependency graph for delvewheel to bundle.
|
|
195
|
+
- name: Set up vcpkg dependencies
|
|
196
|
+
shell: pwsh
|
|
197
|
+
run: |
|
|
198
|
+
git clone --depth 1 https://github.com/microsoft/vcpkg.git C:\vcpkg
|
|
199
|
+
& C:\vcpkg\bootstrap-vcpkg.bat
|
|
200
|
+
& C:\vcpkg\vcpkg.exe install --triplet x64-windows freetype libjpeg-turbo libpng opengl tiff
|
|
201
|
+
|
|
202
|
+
- name: Build and test Windows wheel
|
|
203
|
+
uses: pypa/cibuildwheel@v3.4.1
|
|
204
|
+
with:
|
|
205
|
+
output-dir: ${{ github.workspace }}\wheelhouse
|
|
206
|
+
env:
|
|
207
|
+
CIBW_BUILD: cp312-win_amd64 cp313-win_amd64 cp314-win_amd64
|
|
208
|
+
CIBW_ARCHS_WINDOWS: AMD64
|
|
209
|
+
# Custom repair commands are not given delvewheel automatically by
|
|
210
|
+
# cibuildwheel's isolated build environment. Install it there and
|
|
211
|
+
# invoke the module through that environment's Python below.
|
|
212
|
+
CIBW_BEFORE_BUILD_WINDOWS: >-
|
|
213
|
+
python -m pip install delvewheel
|
|
214
|
+
# scikit-build-core forwards CMAKE_ARGS to the native configure.
|
|
215
|
+
# vcpkg's toolchain makes CMake's FindJPEG/FindPNG/FindTIFF and
|
|
216
|
+
# FindFreetype resolve to the Windows libraries above. The linker
|
|
217
|
+
# flags ask MSVC for a .map file next to every DLL/module it links
|
|
218
|
+
# (osg*.dll, osgx*.pyd, etc.) -- diagnostic-only, see the "Collect
|
|
219
|
+
# linker maps" step below, which is what actually finds and
|
|
220
|
+
# preserves them since cibuildwheel builds in a temp directory
|
|
221
|
+
# that doesn't survive past this step.
|
|
222
|
+
CIBW_ENVIRONMENT_WINDOWS: >-
|
|
223
|
+
CMAKE_ARGS="-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows -DPYOSG_MSVC_WARNINGS_AS_ERRORS=OFF -DCMAKE_SHARED_LINKER_FLAGS=/MAP -DCMAKE_MODULE_LINKER_FLAGS=/MAP"
|
|
224
|
+
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: >-
|
|
225
|
+
python -m delvewheel repair --ignore-existing --analyze-existing --add-path C:/vcpkg/installed/x64-windows/bin -w {dest_dir} {wheel} &&
|
|
226
|
+
python etc/scripts/repair-windows-wheel.py {dest_dir}
|
|
227
|
+
CIBW_TEST_COMMAND: >-
|
|
228
|
+
python -c "import OpenSceneGraph; from OpenSceneGraph.osg import Node; from OpenSceneGraph.GL import GL_RGBA; assert Node is OpenSceneGraph.osg.Node; assert GL_RGBA == OpenSceneGraph.GL.GL_RGBA; registry = OpenSceneGraph.osgDB.Registry.instance(); extensions = ('osg', 'obj', 'stl', 'bmp', 'dds', 'hdr', 'jpeg', 'jpg', 'pnm', 'png', 'rgb', 'tga', 'tif', 'tiff', 'gltf', 'ktx2'); missing = [extension for extension in extensions if not registry.getReaderWriterForExtension(extension)]; assert not missing, f'Missing osgDB plugins: {missing}'; import osgx"
|
|
229
|
+
|
|
230
|
+
# Runs whether or not the build/link above succeeded -- the whole point is to capture a
|
|
231
|
+
# .map file from a FAILED link for diagnosis. cibuildwheel/scikit-build-core build inside
|
|
232
|
+
# a per-run temp directory under $env:TEMP that isn't part of the checkout and wouldn't
|
|
233
|
+
# otherwise be reachable by upload-artifact below; this just relocates any .map files
|
|
234
|
+
# found there into the workspace first. Finds nothing (harmlessly) once this diagnostic
|
|
235
|
+
# is no longer needed and the /MAP flags above are removed.
|
|
236
|
+
- name: Collect linker maps
|
|
237
|
+
if: always()
|
|
238
|
+
shell: pwsh
|
|
239
|
+
run: |
|
|
240
|
+
New-Item -ItemType Directory -Force -Path mapfiles | Out-Null
|
|
241
|
+
Get-ChildItem -Path $env:TEMP -Filter *.map -Recurse -ErrorAction SilentlyContinue |
|
|
242
|
+
Copy-Item -Destination mapfiles -Force
|
|
243
|
+
|
|
244
|
+
- name: Upload linker maps
|
|
245
|
+
if: always()
|
|
246
|
+
uses: actions/upload-artifact@v4
|
|
247
|
+
with:
|
|
248
|
+
name: OpenSceneGraph-win-amd64-mapfiles
|
|
249
|
+
path: mapfiles/*.map
|
|
250
|
+
if-no-files-found: warn
|
|
251
|
+
|
|
252
|
+
- name: Upload Windows wheel
|
|
253
|
+
uses: actions/upload-artifact@v4
|
|
254
|
+
with:
|
|
255
|
+
name: OpenSceneGraph-win-amd64
|
|
256
|
+
path: wheelhouse/*.whl
|
|
257
|
+
if-no-files-found: error
|
|
258
|
+
|
|
259
|
+
sdist:
|
|
260
|
+
name: Source distribution
|
|
261
|
+
if: inputs.build && (inputs.target == 'all' || inputs.target == 'sdist')
|
|
262
|
+
runs-on: ubuntu-24.04
|
|
263
|
+
|
|
264
|
+
steps:
|
|
265
|
+
- uses: actions/checkout@v6
|
|
266
|
+
with:
|
|
267
|
+
# osgx is part of the pinned sdist contents, same as the wheel jobs.
|
|
268
|
+
submodules: recursive
|
|
269
|
+
persist-credentials: false
|
|
270
|
+
|
|
271
|
+
- name: Set up Python
|
|
272
|
+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
273
|
+
with:
|
|
274
|
+
python-version: "3.12"
|
|
275
|
+
|
|
276
|
+
- name: Build sdist
|
|
277
|
+
run: |
|
|
278
|
+
python -m pip install build
|
|
279
|
+
python -m build --sdist
|
|
280
|
+
|
|
281
|
+
# Mirrors the manylinux CIBW_BEFORE_ALL package list above (linux-x86_64-cp312 job),
|
|
282
|
+
# translated to apt names, plus the X11/GL headers OSG's windowing plugin needs. This host
|
|
283
|
+
# is a plain Ubuntu runner, not the manylinux container the wheel jobs build in, so its
|
|
284
|
+
# package set isn't otherwise guaranteed to match.
|
|
285
|
+
- name: Install build-time system libraries
|
|
286
|
+
run: |
|
|
287
|
+
sudo apt-get update
|
|
288
|
+
sudo apt-get install -y libxrandr-dev libjpeg-turbo8-dev libpng-dev libtiff-dev libgl1-mesa-dev libglu1-mesa-dev
|
|
289
|
+
|
|
290
|
+
# The actual point of this job: confirm [tool.scikit-build.sdist]'s exclude/include lists
|
|
291
|
+
# leave a tree that self-builds under a normal `pip install`, exercising the same fallback
|
|
292
|
+
# path any platform/Python combination without a prebuilt wheel above would hit on PyPI.
|
|
293
|
+
- name: Install sdist into a clean venv
|
|
294
|
+
run: |
|
|
295
|
+
python -m venv sdist-venv
|
|
296
|
+
sdist-venv/bin/pip install dist/*.tar.gz
|
|
297
|
+
|
|
298
|
+
- name: Smoke-test installed sdist build
|
|
299
|
+
run: >-
|
|
300
|
+
sdist-venv/bin/python -c "import OpenSceneGraph;
|
|
301
|
+
from OpenSceneGraph.osg import Node;
|
|
302
|
+
from OpenSceneGraph.GL import GL_RGBA;
|
|
303
|
+
assert Node is OpenSceneGraph.osg.Node, 'osg.Node identity mismatch';
|
|
304
|
+
assert GL_RGBA == OpenSceneGraph.GL.GL_RGBA, 'GL_RGBA identity mismatch';
|
|
305
|
+
registry = OpenSceneGraph.osgDB.Registry.instance();
|
|
306
|
+
extensions = ('osg', 'obj', 'stl', 'bmp', 'dds', 'hdr', 'jpeg',
|
|
307
|
+
'jpg', 'pnm', 'png', 'rgb', 'tga', 'tif', 'tiff', 'gltf', 'ktx2');
|
|
308
|
+
missing = [extension for extension in extensions
|
|
309
|
+
if not registry.getReaderWriterForExtension(extension)];
|
|
310
|
+
assert not missing, f'missing osgDB plugins: {missing}';
|
|
311
|
+
import osgx"
|
|
312
|
+
|
|
313
|
+
- name: Upload sdist
|
|
314
|
+
uses: actions/upload-artifact@v4
|
|
315
|
+
with:
|
|
316
|
+
name: OpenSceneGraph-sdist
|
|
317
|
+
path: dist/*.tar.gz
|
|
318
|
+
if-no-files-found: error
|
|
319
|
+
|
|
320
|
+
publish:
|
|
321
|
+
name: Publish to PyPI
|
|
322
|
+
# Pushes to `main` (and manual test runs) produce build artifacts only.
|
|
323
|
+
# Publishing requires an explicit versioned release tag, e.g. v0.1.1.
|
|
324
|
+
if: inputs.build && inputs.target == 'all' && startsWith(github.ref, 'refs/tags/v')
|
|
325
|
+
needs: [linux-x86_64, linux-aarch64, windows-x86_64, sdist]
|
|
326
|
+
runs-on: ubuntu-24.04
|
|
327
|
+
environment:
|
|
328
|
+
name: pypi
|
|
329
|
+
url: https://pypi.org/project/openscenegraph/
|
|
330
|
+
permissions:
|
|
331
|
+
id-token: write
|
|
332
|
+
steps:
|
|
333
|
+
- uses: actions/download-artifact@v4
|
|
334
|
+
with:
|
|
335
|
+
pattern: OpenSceneGraph-*
|
|
336
|
+
path: dist/
|
|
337
|
+
merge-multiple: true
|
|
338
|
+
|
|
339
|
+
- uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
__pycache__
|
|
2
|
+
test/__pycache__
|
|
3
|
+
etc/__pycache__
|
|
4
|
+
examples/__pycache__
|
|
5
|
+
examples/lighting/__pycache__
|
|
6
|
+
python/OpenSceneGraph/__pycache__
|
|
7
|
+
BUILD-*
|
|
8
|
+
dist
|
|
9
|
+
|
|
10
|
+
# Prerequisites
|
|
11
|
+
*.d
|
|
12
|
+
|
|
13
|
+
# Compiled Object files
|
|
14
|
+
*.slo
|
|
15
|
+
*.lo
|
|
16
|
+
*.o
|
|
17
|
+
*.obj
|
|
18
|
+
|
|
19
|
+
# Precompiled Headers
|
|
20
|
+
*.gch
|
|
21
|
+
*.pch
|
|
22
|
+
|
|
23
|
+
# Linker files
|
|
24
|
+
*.ilk
|
|
25
|
+
|
|
26
|
+
# Debugger Files
|
|
27
|
+
*.pdb
|
|
28
|
+
|
|
29
|
+
# Compiled Dynamic libraries
|
|
30
|
+
*.so
|
|
31
|
+
*.dylib
|
|
32
|
+
*.dll
|
|
33
|
+
|
|
34
|
+
# Fortran module files
|
|
35
|
+
*.mod
|
|
36
|
+
*.smod
|
|
37
|
+
|
|
38
|
+
# Compiled Static libraries
|
|
39
|
+
*.lai
|
|
40
|
+
*.la
|
|
41
|
+
*.a
|
|
42
|
+
*.lib
|
|
43
|
+
|
|
44
|
+
# Executables
|
|
45
|
+
*.exe
|
|
46
|
+
*.out
|
|
47
|
+
*.app
|
|
48
|
+
|
|
49
|
+
# debug information files
|
|
50
|
+
*.dwo
|