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.
Files changed (2334) hide show
  1. openscenegraph-0.1.2/.github/workflows/examples.yml +78 -0
  2. openscenegraph-0.1.2/.github/workflows/wheels.yml +339 -0
  3. openscenegraph-0.1.2/.gitignore +50 -0
  4. openscenegraph-0.1.2/CMakeLists.txt +581 -0
  5. openscenegraph-0.1.2/PKG-INFO +563 -0
  6. openscenegraph-0.1.2/README.md +554 -0
  7. openscenegraph-0.1.2/aipython/29-material.md +109 -0
  8. openscenegraph-0.1.2/etc/osgx/CMakeLists.txt +660 -0
  9. openscenegraph-0.1.2/etc/osgx/examples/CMakeLists.txt +76 -0
  10. openscenegraph-0.1.2/etc/osgx/examples/osgx-aura.cpp +589 -0
  11. openscenegraph-0.1.2/etc/osgx/examples/osgx-pixel-text.cpp +354 -0
  12. openscenegraph-0.1.2/etc/osgx/ext/python/osgx-aura.cpp +82 -0
  13. openscenegraph-0.1.2/etc/osgx/ext/python/osgx-callbacks.cpp +244 -0
  14. openscenegraph-0.1.2/etc/osgx/ext/python/osgx-core.cpp +685 -0
  15. openscenegraph-0.1.2/etc/osgx/ext/python/osgx-debug.cpp +177 -0
  16. openscenegraph-0.1.2/etc/osgx/ext/python/osgx-gbuffer.cpp +119 -0
  17. openscenegraph-0.1.2/etc/osgx/ext/python/osgx-gizmos.cpp +61 -0
  18. openscenegraph-0.1.2/etc/osgx/ext/python/osgx-gltf.cpp +1247 -0
  19. openscenegraph-0.1.2/etc/osgx/ext/python/osgx-ibl.cpp +180 -0
  20. openscenegraph-0.1.2/etc/osgx/ext/python/osgx-imgui.cpp +309 -0
  21. openscenegraph-0.1.2/etc/osgx/ext/python/osgx-pbr.cpp +303 -0
  22. openscenegraph-0.1.2/etc/osgx/ext/python/osgx-picking.cpp +355 -0
  23. openscenegraph-0.1.2/etc/osgx/ext/python/osgx-pixel-text.cpp +88 -0
  24. openscenegraph-0.1.2/etc/osgx/ext/python/osgx-platform.cpp +168 -0
  25. openscenegraph-0.1.2/etc/osgx/ext/python/osgx-python.hpp +58 -0
  26. openscenegraph-0.1.2/etc/osgx/ext/python/osgx-shadow.cpp +153 -0
  27. openscenegraph-0.1.2/etc/osgx/ext/python/osgx-shapes.cpp +299 -0
  28. openscenegraph-0.1.2/etc/osgx/ext/python/osgx.cpp +64 -0
  29. openscenegraph-0.1.2/etc/osgx/src/Aura.cpp +281 -0
  30. openscenegraph-0.1.2/etc/osgx/src/IBL.cpp +436 -0
  31. openscenegraph-0.1.2/etc/osgx/src/ImGui.cpp +781 -0
  32. openscenegraph-0.1.2/etc/osgx/src/PBR.cpp +469 -0
  33. openscenegraph-0.1.2/etc/osgx/src/PixelText.cpp +557 -0
  34. openscenegraph-0.1.2/etc/osgx/src/Shader.cpp +196 -0
  35. openscenegraph-0.1.2/etc/osgx/src/gltf/PBRIBL.cpp +1467 -0
  36. openscenegraph-0.1.2/etc/osgx/src/gltf/Texture.cpp +431 -0
  37. openscenegraph-0.1.2/etc/osgx/src/osgx/Aura.hpp +65 -0
  38. openscenegraph-0.1.2/etc/osgx/src/osgx/Core.hpp +367 -0
  39. openscenegraph-0.1.2/etc/osgx/src/osgx/Grid.hpp +228 -0
  40. openscenegraph-0.1.2/etc/osgx/src/osgx/PBR.hpp +923 -0
  41. openscenegraph-0.1.2/etc/osgx/src/osgx/PixelText.hpp +159 -0
  42. openscenegraph-0.1.2/etc/osgx/src/osgx/Shadow.hpp +255 -0
  43. openscenegraph-0.1.2/etc/osgx/src/osgx/gltf/PBRIBL.hpp +414 -0
  44. openscenegraph-0.1.2/etc/osgx/src/osgx/osgx.hpp +22 -0
  45. openscenegraph-0.1.2/etc/osgx/utils/CMakeLists.txt +51 -0
  46. openscenegraph-0.1.2/etc/osgx/utils/osgx-pbribl.cpp +648 -0
  47. openscenegraph-0.1.2/etc/pybind11x.hpp +1676 -0
  48. openscenegraph-0.1.2/etc/scripts/build-local-wheel.sh +185 -0
  49. openscenegraph-0.1.2/etc/scripts/generate-bindings-overview.py +929 -0
  50. openscenegraph-0.1.2/etc/scripts/prepare-examples-assets.py +143 -0
  51. openscenegraph-0.1.2/examples/CMakeLists.txt +58 -0
  52. openscenegraph-0.1.2/examples/assets.toml +90 -0
  53. openscenegraph-0.1.2/examples/lighting/00-lambert.py +128 -0
  54. openscenegraph-0.1.2/examples/lighting/01-blinnphong.py +140 -0
  55. openscenegraph-0.1.2/examples/lighting/02-multilights.py +176 -0
  56. openscenegraph-0.1.2/examples/lighting/03-hemiambient.py +187 -0
  57. openscenegraph-0.1.2/examples/lighting/04-basecolor.py +182 -0
  58. openscenegraph-0.1.2/examples/lighting/05-normalmapping.py +216 -0
  59. openscenegraph-0.1.2/examples/lighting/06-pbr.py +248 -0
  60. openscenegraph-0.1.2/examples/lighting/07-emissive.py +259 -0
  61. openscenegraph-0.1.2/examples/lighting/08-shadows.py +394 -0
  62. openscenegraph-0.1.2/examples/lighting/09-ibl.py +350 -0
  63. openscenegraph-0.1.2/examples/lighting/10-dynamicprobes.py +618 -0
  64. openscenegraph-0.1.2/examples/lighting/11-sketchfab.py +1463 -0
  65. openscenegraph-0.1.2/examples/lighting/__init__.py +5 -0
  66. openscenegraph-0.1.2/examples/llm/00-qwen-activation-carpet.py +137 -0
  67. openscenegraph-0.1.2/examples/llm/01-qwen-activation-delta.py +137 -0
  68. openscenegraph-0.1.2/examples/llm/02-qwen-layer-change.py +128 -0
  69. openscenegraph-0.1.2/examples/llm/03-qwen-layer-change-history.py +161 -0
  70. openscenegraph-0.1.2/examples/llm/README.md +33 -0
  71. openscenegraph-0.1.2/examples/llm/__init__.py +5 -0
  72. openscenegraph-0.1.2/examples/llm/llm_common.py +357 -0
  73. openscenegraph-0.1.2/examples/manifest.cmake +96 -0
  74. openscenegraph-0.1.2/examples/pyosg-dice.py +511 -0
  75. openscenegraph-0.1.2/examples/pyosg-dynamic-verts.py +186 -0
  76. openscenegraph-0.1.2/examples/pyosg-dynamic.py +276 -0
  77. openscenegraph-0.1.2/examples/pyosg-fragcoordxyz.py +515 -0
  78. openscenegraph-0.1.2/examples/pyosg-ibl-rotate.py +364 -0
  79. openscenegraph-0.1.2/examples/pyosg-imgui.py +71 -0
  80. openscenegraph-0.1.2/examples/pyosg-khronos-viewer.py +362 -0
  81. openscenegraph-0.1.2/examples/pyosg-material.py +788 -0
  82. openscenegraph-0.1.2/examples/pyosg-motionbricks.py +493 -0
  83. openscenegraph-0.1.2/examples/pyosg-mrt.py +493 -0
  84. openscenegraph-0.1.2/examples/pyosg-noise.py +1341 -0
  85. openscenegraph-0.1.2/examples/pyosg-taa.py +584 -0
  86. openscenegraph-0.1.2/examples/pyosg-voronoi-reveal.py +383 -0
  87. openscenegraph-0.1.2/examples/pyosg_async.py +467 -0
  88. openscenegraph-0.1.2/examples/pyosg_example.py +120 -0
  89. openscenegraph-0.1.2/examples/pyproject.toml +34 -0
  90. openscenegraph-0.1.2/pyosg/osg/Transform.cpp +308 -0
  91. openscenegraph-0.1.2/pyosg/osg/Transform.hpp +27 -0
  92. openscenegraph-0.1.2/pyosg/pyosg.hpp +349 -0
  93. openscenegraph-0.1.2/pyosg/pyosgDB.cpp +253 -0
  94. openscenegraph-0.1.2/pyosg/pyosgGA.cpp +438 -0
  95. openscenegraph-0.1.2/python/OpenSceneGraph/examples/__main__.py +143 -0
  96. openscenegraph-0.1.2/test/osg_Group.py +266 -0
  97. openscenegraph-0.1.1/.github/workflows/wheels.yml +0 -323
  98. openscenegraph-0.1.1/.gitignore +0 -50
  99. openscenegraph-0.1.1/CMakeLists.txt +0 -557
  100. openscenegraph-0.1.1/PKG-INFO +0 -563
  101. openscenegraph-0.1.1/README.md +0 -554
  102. openscenegraph-0.1.1/aipython/29-material.md +0 -109
  103. openscenegraph-0.1.1/etc/osgx/CMakeLists.txt +0 -657
  104. openscenegraph-0.1.1/etc/osgx/examples/CMakeLists.txt +0 -72
  105. openscenegraph-0.1.1/etc/osgx/examples/osgx-pixel-text.cpp +0 -301
  106. openscenegraph-0.1.1/etc/osgx/ext/python/osgx-callbacks.cpp +0 -208
  107. openscenegraph-0.1.1/etc/osgx/ext/python/osgx-core.cpp +0 -526
  108. openscenegraph-0.1.1/etc/osgx/ext/python/osgx-debug.cpp +0 -135
  109. openscenegraph-0.1.1/etc/osgx/ext/python/osgx-gbuffer.cpp +0 -77
  110. openscenegraph-0.1.1/etc/osgx/ext/python/osgx-gizmos.cpp +0 -40
  111. openscenegraph-0.1.1/etc/osgx/ext/python/osgx-gltf.cpp +0 -1052
  112. openscenegraph-0.1.1/etc/osgx/ext/python/osgx-ibl.cpp +0 -113
  113. openscenegraph-0.1.1/etc/osgx/ext/python/osgx-imgui.cpp +0 -229
  114. openscenegraph-0.1.1/etc/osgx/ext/python/osgx-pbr.cpp +0 -220
  115. openscenegraph-0.1.1/etc/osgx/ext/python/osgx-picking.cpp +0 -292
  116. openscenegraph-0.1.1/etc/osgx/ext/python/osgx-pixel-text.cpp +0 -58
  117. openscenegraph-0.1.1/etc/osgx/ext/python/osgx-platform.cpp +0 -149
  118. openscenegraph-0.1.1/etc/osgx/ext/python/osgx-python.hpp +0 -57
  119. openscenegraph-0.1.1/etc/osgx/ext/python/osgx-shadow.cpp +0 -90
  120. openscenegraph-0.1.1/etc/osgx/ext/python/osgx-shapes.cpp +0 -151
  121. openscenegraph-0.1.1/etc/osgx/ext/python/osgx.cpp +0 -63
  122. openscenegraph-0.1.1/etc/osgx/src/IBL.cpp +0 -429
  123. openscenegraph-0.1.1/etc/osgx/src/ImGui.cpp +0 -778
  124. openscenegraph-0.1.1/etc/osgx/src/PBR.cpp +0 -452
  125. openscenegraph-0.1.1/etc/osgx/src/PixelText.cpp +0 -453
  126. openscenegraph-0.1.1/etc/osgx/src/Shader.cpp +0 -169
  127. openscenegraph-0.1.1/etc/osgx/src/gltf/PBRIBL.cpp +0 -1385
  128. openscenegraph-0.1.1/etc/osgx/src/gltf/Texture.cpp +0 -402
  129. openscenegraph-0.1.1/etc/osgx/src/osgx/Core.hpp +0 -399
  130. openscenegraph-0.1.1/etc/osgx/src/osgx/Grid.hpp +0 -228
  131. openscenegraph-0.1.1/etc/osgx/src/osgx/PBR.hpp +0 -913
  132. openscenegraph-0.1.1/etc/osgx/src/osgx/PixelText.hpp +0 -135
  133. openscenegraph-0.1.1/etc/osgx/src/osgx/Shadow.hpp +0 -253
  134. openscenegraph-0.1.1/etc/osgx/src/osgx/gltf/PBRIBL.hpp +0 -400
  135. openscenegraph-0.1.1/etc/osgx/src/osgx/osgx.hpp +0 -21
  136. openscenegraph-0.1.1/etc/osgx/utils/CMakeLists.txt +0 -57
  137. openscenegraph-0.1.1/etc/osgx/utils/osgx-pbribl.cpp +0 -209
  138. openscenegraph-0.1.1/etc/pybind11x.hpp +0 -1653
  139. openscenegraph-0.1.1/etc/scripts/generate-bindings-overview.py +0 -839
  140. openscenegraph-0.1.1/examples/pyosg-dice.py +0 -510
  141. openscenegraph-0.1.1/examples/pyosg-fragcoordxyz.py +0 -508
  142. openscenegraph-0.1.1/examples/pyosg-khronos-viewer.py +0 -351
  143. openscenegraph-0.1.1/examples/pyosg-lighting/00-lambert.py +0 -122
  144. openscenegraph-0.1.1/examples/pyosg-lighting/01-blinnphong.py +0 -134
  145. openscenegraph-0.1.1/examples/pyosg-lighting/02-multilights.py +0 -170
  146. openscenegraph-0.1.1/examples/pyosg-lighting/03-hemiambient.py +0 -181
  147. openscenegraph-0.1.1/examples/pyosg-lighting/04-basecolor.py +0 -176
  148. openscenegraph-0.1.1/examples/pyosg-lighting/05-normalmapping.py +0 -210
  149. openscenegraph-0.1.1/examples/pyosg-lighting/06-pbr.py +0 -242
  150. openscenegraph-0.1.1/examples/pyosg-lighting/07-emissive-animated.py +0 -242
  151. openscenegraph-0.1.1/examples/pyosg-lighting/07-emissive.py +0 -253
  152. openscenegraph-0.1.1/examples/pyosg-lighting/08-shadows.py +0 -381
  153. openscenegraph-0.1.1/examples/pyosg-lighting/09-ibl-animation.py +0 -454
  154. openscenegraph-0.1.1/examples/pyosg-lighting/09-ibl.py +0 -326
  155. openscenegraph-0.1.1/examples/pyosg-lighting/10-dynamicprobes.py +0 -509
  156. openscenegraph-0.1.1/examples/pyosg-lighting/11-sketchfab.py +0 -1365
  157. openscenegraph-0.1.1/examples/pyosg-mrt.py +0 -491
  158. openscenegraph-0.1.1/examples/pyosg-noise.py +0 -1261
  159. openscenegraph-0.1.1/examples/pyosg-taa.py +0 -478
  160. openscenegraph-0.1.1/examples/pyosg-voronoi-reveal.py +0 -373
  161. openscenegraph-0.1.1/examples/pyosg_async.py +0 -467
  162. openscenegraph-0.1.1/examples/pyosg_example.py +0 -34
  163. openscenegraph-0.1.1/pyosg/osg/Transform.cpp +0 -184
  164. openscenegraph-0.1.1/pyosg/osg/Transform.hpp +0 -26
  165. openscenegraph-0.1.1/pyosg/pyosg.hpp +0 -346
  166. openscenegraph-0.1.1/pyosg/pyosgDB.cpp +0 -247
  167. openscenegraph-0.1.1/pyosg/pyosgGA.cpp +0 -432
  168. openscenegraph-0.1.1/python/OpenSceneGraph/examples/__main__.py +0 -133
  169. openscenegraph-0.1.1/test/osg_Group.py +0 -237
  170. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/.gitmodules +0 -0
  171. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/LICENSE +0 -0
  172. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/00-index.md +0 -0
  173. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/01-core.md +0 -0
  174. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/02-inspect.md +0 -0
  175. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/03-headless-frames.md +0 -0
  176. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/05-camera-manipulator.md +0 -0
  177. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/06-camera-effects.md +0 -0
  178. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/07-camera-manual.md +0 -0
  179. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/08-lighting.md +0 -0
  180. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/09-picking.md +0 -0
  181. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/10-rtt.md +0 -0
  182. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/11-mrt.md +0 -0
  183. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/12-gbuffer.md +0 -0
  184. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/15-shader-hotswap.md +0 -0
  185. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/17-particles.md +0 -0
  186. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/18-deterministic-captures.md +0 -0
  187. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/20-object-lifetime.md +0 -0
  188. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/25-async-osgpy.md +0 -0
  189. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/30-pbribl.md +0 -0
  190. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/aipython/40-typed-lights-gizmos.md +0 -0
  191. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/embed.cpp +0 -0
  192. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/embed.supp +0 -0
  193. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/00-lambert.png +0 -0
  194. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/01-blinnphong.png +0 -0
  195. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/02-multilights.png +0 -0
  196. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/03-hemiambient.png +0 -0
  197. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/04-basecolor.png +0 -0
  198. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/05-normalmapping.png +0 -0
  199. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/06-pbr.png +0 -0
  200. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/07-emissive.png +0 -0
  201. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/08-shadows.png +0 -0
  202. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/09-ibl.png +0 -0
  203. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/10-dynamicprobes.png +0 -0
  204. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/github/11-sketchfab.png +0 -0
  205. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/nativeio.py +0 -0
  206. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/.gitignore +0 -0
  207. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/.gitmodules +0 -0
  208. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/OSG/CMakeLists.txt +0 -0
  209. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/OSG/Notify.patch +0 -0
  210. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/OSG/asan.patch +0 -0
  211. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/OSG/asan.supp +0 -0
  212. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/OSG/lsan.supp +0 -0
  213. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/README.md +0 -0
  214. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/cmake/osgxConfig.cmake.in +0 -0
  215. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/cmake/uninstall.cmake.in +0 -0
  216. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/docs/CORE.md +0 -0
  217. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/docs/DEBUG.md +0 -0
  218. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/docs/GLTF.md +0 -0
  219. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/docs/IMGUI.md +0 -0
  220. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/docs/PLATFORM.md +0 -0
  221. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-array.cpp +0 -0
  222. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-callback.cpp +0 -0
  223. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-culling.cpp +0 -0
  224. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-eventhandler.cpp +0 -0
  225. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-gbuffer-blueprint.cpp +0 -0
  226. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-gbuffer-comic.cpp +0 -0
  227. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-gbuffer-edgewear.cpp +0 -0
  228. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-gbuffer.cpp +0 -0
  229. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-grid.cpp +0 -0
  230. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-hover.cpp +0 -0
  231. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-ibl.cpp +0 -0
  232. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-imgui-external.cpp +0 -0
  233. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-imgui.cpp +0 -0
  234. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-ktx2-skybox.cpp +0 -0
  235. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-lights.cpp +0 -0
  236. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-manipulator.cpp +0 -0
  237. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-notifyfilter.cpp +0 -0
  238. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-picking.cpp +0 -0
  239. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-platform.cpp +0 -0
  240. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-shadow.cpp +0 -0
  241. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-shapes.cpp +0 -0
  242. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-turntable.cpp +0 -0
  243. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-viewer.cpp +0 -0
  244. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/examples/osgx-visitor.cpp +0 -0
  245. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.clang-format +0 -0
  246. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.git-blame-ignore-revs +0 -0
  247. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.gitattributes +0 -0
  248. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.gitconfig +0 -0
  249. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/android.yml +0 -0
  250. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/check-determinism.yml +0 -0
  251. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/check-libktx-only.yml +0 -0
  252. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/check-mkvk.yml +0 -0
  253. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/check-reuse.yml +0 -0
  254. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/docs.yml +0 -0
  255. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/formatting.yml +0 -0
  256. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/linux.yml +0 -0
  257. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/macos.yml +0 -0
  258. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/manual.yml +0 -0
  259. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/mingw.yml +0 -0
  260. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/publish-pyktx.yml +0 -0
  261. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/web.yml +0 -0
  262. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.github/workflows/windows.yml +0 -0
  263. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.gitignore +0 -0
  264. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/.gitmodules +0 -0
  265. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/CMakeLists.txt +0 -0
  266. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/CODE_OF_CONDUCT.md +0 -0
  267. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/CONTRIBUTING.md +0 -0
  268. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSE.md +0 -0
  269. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/Apache-2.0.txt +0 -0
  270. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/BSD-1-Clause.txt +0 -0
  271. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/BSD-2-Clause.txt +0 -0
  272. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/BSD-3-Clause.txt +0 -0
  273. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/BSL-1.0.txt +0 -0
  274. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/CC-BY-3.0.txt +0 -0
  275. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/CC0-1.0.txt +0 -0
  276. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/LicenseRef-ETCSLA.txt +0 -0
  277. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/LicenseRef-HI-Trademark.txt +0 -0
  278. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/LicenseRef-Kodak.txt +0 -0
  279. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/LicenseRef-fmt.txt +0 -0
  280. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/MIT.txt +0 -0
  281. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/LICENSES/Zlib.txt +0 -0
  282. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/NOTICE.md +0 -0
  283. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/README.md +0 -0
  284. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/RELEASE_NOTES.md +0 -0
  285. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/REUSE.toml +0 -0
  286. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/License.rtf +0 -0
  287. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/License.rtf.license +0 -0
  288. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/ReadMe.rtf +0 -0
  289. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/ReadMe.txt +0 -0
  290. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/Welcome.rtf +0 -0
  291. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/codesign.cmake +0 -0
  292. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/compiler_query_genexs.cmake +0 -0
  293. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/cputypetest.cmake +0 -0
  294. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/docs.cmake +0 -0
  295. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/fp-settings.cmake +0 -0
  296. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/launch.cmake +0 -0
  297. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/linux-aarch64-toolchain.cmake +0 -0
  298. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/linux-x86_64-toolchain.cmake +0 -0
  299. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/mkvk.cmake +0 -0
  300. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/CPack.distribution.dist.in +0 -0
  301. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/FindBash.cmake +0 -0
  302. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/FindSDL2.cmake +0 -0
  303. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/FindVulkan.cmake +0 -0
  304. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/Findassimp.cmake +0 -0
  305. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/Findsigntool.cmake +0 -0
  306. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/Findzstd.cmake +0 -0
  307. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/GetGitRevisionDescription.cmake +0 -0
  308. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/GetGitRevisionDescription.cmake.in +0 -0
  309. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/KtxDependentVariable.cmake +0 -0
  310. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/NSIS.InstallOptions.ini.in +0 -0
  311. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/modules/NSIS.template.in +0 -0
  312. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/cmake/version.cmake +0 -0
  313. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/examples/vkload.cpp +0 -0
  314. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/.clang-format +0 -0
  315. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/.gitattributes +0 -0
  316. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/SDL_gesture/README.md +0 -0
  317. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/SDL_gesture/SDL_gesture.h +0 -0
  318. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/.gitattributes +0 -0
  319. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/.github/workflows/post_weekly_release.yaml +0 -0
  320. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/.github/workflows/release_body_template.md +0 -0
  321. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/.gitignore +0 -0
  322. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/.gitrepo +0 -0
  323. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/.pylintrc +0 -0
  324. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/CMakeLists.txt +0 -0
  325. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/LICENSE.txt +0 -0
  326. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/README.md +0 -0
  327. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/CMakeLists.txt +0 -0
  328. {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
  329. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/ThirdParty/stb_image.h +0 -0
  330. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/ThirdParty/stb_image_write.h +0 -0
  331. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/ThirdParty/tinyexr.h +0 -0
  332. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/UnitTest/CMakeLists.txt +0 -0
  333. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/UnitTest/cmake_core.cmake +0 -0
  334. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/UnitTest/test_decode.cpp +0 -0
  335. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/UnitTest/test_simd.cpp +0 -0
  336. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/UnitTest/test_softfloat.cpp +0 -0
  337. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc.h +0 -0
  338. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_averages_and_directions.cpp +0 -0
  339. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_block_sizes.cpp +0 -0
  340. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_color_quantize.cpp +0 -0
  341. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_color_unquantize.cpp +0 -0
  342. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_compress_symbolic.cpp +0 -0
  343. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_compute_variance.cpp +0 -0
  344. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_decompress_symbolic.cpp +0 -0
  345. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_diagnostic_trace.cpp +0 -0
  346. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_diagnostic_trace.h +0 -0
  347. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_entry.cpp +0 -0
  348. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_find_best_partitioning.cpp +0 -0
  349. {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
  350. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_image.cpp +0 -0
  351. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_integer_sequence.cpp +0 -0
  352. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_internal.h +0 -0
  353. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_internal_entry.h +0 -0
  354. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_mathlib.cpp +0 -0
  355. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_mathlib.h +0 -0
  356. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_mathlib_softfloat.cpp +0 -0
  357. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_partition_tables.cpp +0 -0
  358. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_percentile_tables.cpp +0 -0
  359. {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
  360. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_platform_isa_detection.cpp +0 -0
  361. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_quantization.cpp +0 -0
  362. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_symbolic_physical.cpp +0 -0
  363. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_vecmathlib.h +0 -0
  364. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_vecmathlib_avx2_8.h +0 -0
  365. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_vecmathlib_common_4.h +0 -0
  366. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_vecmathlib_neon_4.h +0 -0
  367. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_vecmathlib_none_4.h +0 -0
  368. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_vecmathlib_sse_4.h +0 -0
  369. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_vecmathlib_sve_8.h +0 -0
  370. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenc_weight_align.cpp +0 -0
  371. {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
  372. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_entry.cpp +0 -0
  373. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_entry2.cpp +0 -0
  374. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_error_metrics.cpp +0 -0
  375. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_image.cpp +0 -0
  376. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_image_external.cpp +0 -0
  377. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_image_load_store.cpp +0 -0
  378. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_internal.h +0 -0
  379. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_platform_dependents.cpp +0 -0
  380. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_toplevel.cpp +0 -0
  381. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_toplevel_help.cpp +0 -0
  382. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/astcenccli_version.h.in +0 -0
  383. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/cmake_compiler.cmake +0 -0
  384. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/cmake_core.cmake +0 -0
  385. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Source/wuffs-v0.3.c +0 -0
  386. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/Example/CMakeLists.txt +0 -0
  387. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/Example/README.md +0 -0
  388. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/Example/astc_api_example.cpp +0 -0
  389. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/astc_blend_test.cpp +0 -0
  390. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/astc_quant_generator.cpp +0 -0
  391. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/astc_rgbm_codec.cpp +0 -0
  392. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/astc_test_autoextract.cpp +0 -0
  393. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/astc_test_autoextract_hdr.cpp +0 -0
  394. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/astc-encoder/Utils/astcenc_u8_test_bench.cpp +0 -0
  395. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/.gitattributes +0 -0
  396. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/.github/workflows/file_format.py +0 -0
  397. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/.github/workflows/static_checks.yml +0 -0
  398. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/.gitignore +0 -0
  399. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/.gitrepo +0 -0
  400. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/.pre-commit-config.yaml +0 -0
  401. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/CMakeLists.txt +0 -0
  402. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/CppProperties.json +0 -0
  403. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/LICENSE +0 -0
  404. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/LICENSES/Apache-2.0.txt +0 -0
  405. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/LICENSES/BSD-3-Clause.txt +0 -0
  406. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/LICENSES/MIT.txt +0 -0
  407. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/NOTICE +0 -0
  408. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl.h +0 -0
  409. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_d3d10.h +0 -0
  410. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_d3d11.h +0 -0
  411. {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
  412. {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
  413. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_egl.h +0 -0
  414. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_ext.h +0 -0
  415. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_ext_intel.h +0 -0
  416. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_gl.h +0 -0
  417. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_gl_ext.h +0 -0
  418. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_half.h +0 -0
  419. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_icd.h +0 -0
  420. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_layer.h +0 -0
  421. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_platform.h +0 -0
  422. {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
  423. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/cl_version.h +0 -0
  424. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/CL/opencl.h +0 -0
  425. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/OpenCL/license.txt +0 -0
  426. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/README.md +0 -0
  427. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/REUSE.toml +0 -0
  428. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/all_builds.py +0 -0
  429. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/appveyor.yml +0 -0
  430. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/basisu.manifest +0 -0
  431. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/basisu.sln +0 -0
  432. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/basisu.vcxproj +0 -0
  433. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/basisu.vcxproj.filters +0 -0
  434. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/basisu_tool.cpp +0 -0
  435. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/basisu_tool_help.h +0 -0
  436. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/bin/.gitignore +0 -0
  437. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/bin/clean.bat +0 -0
  438. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/bin/ocl_kernels.cl +0 -0
  439. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/bin/readme.txt +0 -0
  440. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/build_python_win.bat +0 -0
  441. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/cmd_help/cmd_help.txt +0 -0
  442. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/cmd_help/process.py +0 -0
  443. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/.gitignore +0 -0
  444. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/lib/README.md +0 -0
  445. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/lib/basisu_transcoder.cpp +0 -0
  446. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/.gitignore +0 -0
  447. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/README.md +0 -0
  448. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/basisthumbprovider.cpp +0 -0
  449. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/basisthumbprovider.h +0 -0
  450. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/helpers.cpp +0 -0
  451. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/helpers.h +0 -0
  452. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/preview.png +0 -0
  453. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/previewers.cpp +0 -0
  454. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/previewers.def +0 -0
  455. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/previewers.sln +0 -0
  456. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/previewers.vcxproj +0 -0
  457. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/previewers/win/previewers.vcxproj.filters +0 -0
  458. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/.editorconfig +0 -0
  459. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/.gitignore +0 -0
  460. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/README.md +0 -0
  461. {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
  462. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/combine.py +0 -0
  463. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/contrib/single_file_transcoder/combine.sh +0 -0
  464. {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
  465. {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
  466. {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
  467. {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
  468. {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
  469. {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
  470. {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
  471. {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
  472. {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
  473. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/3rdparty/android_astc_decomp.cpp +0 -0
  474. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/3rdparty/android_astc_decomp.h +0 -0
  475. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/3rdparty/qoi.h +0 -0
  476. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/3rdparty/tinydds.h +0 -0
  477. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/3rdparty/tinyexr.cpp +0 -0
  478. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/3rdparty/tinyexr.h +0 -0
  479. {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
  480. {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
  481. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_astc_hdr_common.cpp +0 -0
  482. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_astc_hdr_common.h +0 -0
  483. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_astc_ldr_common.cpp +0 -0
  484. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_astc_ldr_common.h +0 -0
  485. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_astc_ldr_encode.cpp +0 -0
  486. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_astc_ldr_encode.h +0 -0
  487. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_backend.cpp +0 -0
  488. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_backend.h +0 -0
  489. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_basis_file.cpp +0 -0
  490. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_basis_file.h +0 -0
  491. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_bc7enc.cpp +0 -0
  492. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_bc7enc.h +0 -0
  493. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_comp.cpp +0 -0
  494. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_comp.h +0 -0
  495. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_enc.cpp +0 -0
  496. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_enc.h +0 -0
  497. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_etc.cpp +0 -0
  498. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_etc.h +0 -0
  499. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_frontend.cpp +0 -0
  500. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_frontend.h +0 -0
  501. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_gpu_texture.cpp +0 -0
  502. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_gpu_texture.h +0 -0
  503. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_kernels_declares.h +0 -0
  504. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_kernels_imp.h +0 -0
  505. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_kernels_sse.cpp +0 -0
  506. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_math.h +0 -0
  507. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_miniz.h +0 -0
  508. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_ocl_kernels.h +0 -0
  509. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_opencl.cpp +0 -0
  510. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_opencl.h +0 -0
  511. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_pvrtc1_4.cpp +0 -0
  512. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_pvrtc1_4.h +0 -0
  513. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_resample_filters.cpp +0 -0
  514. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_resampler.cpp +0 -0
  515. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_resampler.h +0 -0
  516. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_resampler_filters.h +0 -0
  517. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_ssim.cpp +0 -0
  518. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_ssim.h +0 -0
  519. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_uastc_enc.cpp +0 -0
  520. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_uastc_enc.h +0 -0
  521. {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
  522. {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
  523. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_wasm_api.cpp +0 -0
  524. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_wasm_api.h +0 -0
  525. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_wasm_api_common.h +0 -0
  526. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_wasm_transcoder_api.cpp +0 -0
  527. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/basisu_wasm_transcoder_api.h +0 -0
  528. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/cppspmd_flow.h +0 -0
  529. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/cppspmd_math.h +0 -0
  530. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/cppspmd_math_declares.h +0 -0
  531. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/cppspmd_sse.h +0 -0
  532. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/cppspmd_type_aliases.h +0 -0
  533. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/jpgd.cpp +0 -0
  534. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/jpgd.h +0 -0
  535. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/pvpngreader.cpp +0 -0
  536. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder/pvpngreader.h +0 -0
  537. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder_lib/encoder_lib.vcxproj +0 -0
  538. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder_lib/encoder_lib.vcxproj.filters +0 -0
  539. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/encoder_lvl_vs_perf.png +0 -0
  540. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example/example.cpp +0 -0
  541. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example/example.manifest +0 -0
  542. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example/example.vcxproj +0 -0
  543. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example/example.vcxproj.filters +0 -0
  544. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_capi/example_capi.c +0 -0
  545. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_capi/example_capi.vcxproj +0 -0
  546. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_capi/example_capi.vcxproj.filters +0 -0
  547. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_transcoding/dds_defs.h +0 -0
  548. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_transcoding/example_transcoding.cpp +0 -0
  549. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_transcoding/example_transcoding.manifest +0 -0
  550. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_transcoding/example_transcoding.vcxproj +0 -0
  551. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_transcoding/example_transcoding.vcxproj.filters +0 -0
  552. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_transcoding/utils.cpp +0 -0
  553. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/example_transcoding/utils.h +0 -0
  554. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/khronos/CMakeLists.txt +0 -0
  555. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/readme_wasi.md +0 -0
  556. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu.h +0 -0
  557. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_astc_cfgs.inl +0 -0
  558. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_astc_hdr_core.h +0 -0
  559. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_astc_helpers.h +0 -0
  560. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_containers.h +0 -0
  561. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_containers_impl.h +0 -0
  562. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_etc1_mods.inl +0 -0
  563. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_file_headers.h +0 -0
  564. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_idct.h +0 -0
  565. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder.cpp +0 -0
  566. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder.h +0 -0
  567. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder_internal.h +0 -0
  568. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder_tables_astc.inc +0 -0
  569. {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
  570. {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
  571. {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
  572. {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
  573. {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
  574. {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
  575. {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
  576. {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
  577. {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
  578. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/transcoder/basisu_transcoder_uastc.h +0 -0
  579. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/zstd/LICENSE +0 -0
  580. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/zstd/zstd.c +0 -0
  581. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/zstd/zstd.h +0 -0
  582. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/zstd/zstd_errors.h +0 -0
  583. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/basis_universal/zstd/zstddeclib.c +0 -0
  584. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/cxxopts/CMakeLists.txt +0 -0
  585. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/cxxopts/cmake/cxxopts.cmake +0 -0
  586. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/cxxopts/include/CMakeLists.txt +0 -0
  587. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/cxxopts/include/cxxopts.hpp +0 -0
  588. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/.github/workflows/check-dfdutils.yml +0 -0
  589. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/.github/workflows/check-reuse.yml +0 -0
  590. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/.gitignore +0 -0
  591. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/.gitrepo +0 -0
  592. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/.travis.yml +0 -0
  593. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/CMakeLists.txt +0 -0
  594. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/CODE_OF_CONDUCT.adoc +0 -0
  595. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/KHR/khr_df.h +0 -0
  596. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/LICENSE.adoc +0 -0
  597. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/LICENSES/Apache-2.0.txt +0 -0
  598. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/README.adoc +0 -0
  599. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/REUSE.toml +0 -0
  600. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/colourspaces.c +0 -0
  601. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/createdfd.c +0 -0
  602. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/createdfdtest.c +0 -0
  603. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/dfd.h +0 -0
  604. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/dfd2vk.c +0 -0
  605. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/dfd2vk.inl +0 -0
  606. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/endswap.c +0 -0
  607. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/interpretdfd.c +0 -0
  608. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/interpretdfdtest.c +0 -0
  609. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/makedfd2vk.pl +0 -0
  610. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/makevk2dfd.pl +0 -0
  611. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/printdfd.c +0 -0
  612. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/queries.c +0 -0
  613. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/testbidirectionalmapping.c +0 -0
  614. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/vk2dfd.c +0 -0
  615. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/vk2dfd.inl +0 -0
  616. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/vulkan/README.md +0 -0
  617. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/vulkan/build_custom_vulkan_core +0 -0
  618. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/vulkan/vk_platform.h +0 -0
  619. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/dfdutils/vulkan/vulkan_core.h +0 -0
  620. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/etcdec/etcdec.cxx +0 -0
  621. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/dependabot.yml +0 -0
  622. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/issue_template.md +0 -0
  623. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/pull_request_template.md +0 -0
  624. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/workflows/cifuzz.yml +0 -0
  625. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/workflows/doc.yml +0 -0
  626. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/workflows/lint.yml +0 -0
  627. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/workflows/linux.yml +0 -0
  628. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/workflows/macos.yml +0 -0
  629. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/workflows/scorecard.yml +0 -0
  630. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.github/workflows/windows.yml +0 -0
  631. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.gitignore +0 -0
  632. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/.gitrepo +0 -0
  633. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/CMakeLists.txt +0 -0
  634. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/CONTRIBUTING.md +0 -0
  635. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/ChangeLog.md +0 -0
  636. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/LICENSE +0 -0
  637. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/README.md +0 -0
  638. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/ChangeLog-old.md +0 -0
  639. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/api.md +0 -0
  640. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/fmt.css +0 -0
  641. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/fmt.js +0 -0
  642. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/get-started.md +0 -0
  643. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/index.md +0 -0
  644. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/perf.svg +0 -0
  645. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/python-license.txt +0 -0
  646. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/doc/syntax.md +0 -0
  647. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/args.h +0 -0
  648. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/base.h +0 -0
  649. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/chrono.h +0 -0
  650. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/color.h +0 -0
  651. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/compile.h +0 -0
  652. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/core.h +0 -0
  653. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/format-inl.h +0 -0
  654. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/format.h +0 -0
  655. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/os.h +0 -0
  656. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/ostream.h +0 -0
  657. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/printf.h +0 -0
  658. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/ranges.h +0 -0
  659. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/std.h +0 -0
  660. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/include/fmt/xchar.h +0 -0
  661. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/src/fmt.cc +0 -0
  662. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/src/format.cc +0 -0
  663. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/src/os.cc +0 -0
  664. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/Android.mk +0 -0
  665. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/AndroidManifest.xml +0 -0
  666. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/C++.sublime-syntax +0 -0
  667. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/README +0 -0
  668. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/Vagrantfile +0 -0
  669. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/bazel/.bazelversion +0 -0
  670. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/bazel/MODULE.bazel +0 -0
  671. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/bazel/README.md +0 -0
  672. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/bazel/WORKSPACE.bazel +0 -0
  673. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/build.gradle +0 -0
  674. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/check-commits +0 -0
  675. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/cmake/FindSetEnv.cmake +0 -0
  676. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/cmake/JoinPaths.cmake +0 -0
  677. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/cmake/fmt-config.cmake.in +0 -0
  678. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/cmake/fmt.pc.in +0 -0
  679. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/docopt.py +0 -0
  680. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/mkdocs +0 -0
  681. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/mkdocs.yml +0 -0
  682. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/printable.py +0 -0
  683. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/python/mkdocstrings_handlers/cxx/__init__.py +0 -0
  684. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/python/mkdocstrings_handlers/cxx/templates/README +0 -0
  685. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/support/release.py +0 -0
  686. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/CMakeLists.txt +0 -0
  687. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/add-subdirectory-test/CMakeLists.txt +0 -0
  688. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/add-subdirectory-test/main.cc +0 -0
  689. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/args-test.cc +0 -0
  690. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/assert-test.cc +0 -0
  691. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/base-test.cc +0 -0
  692. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/chrono-test.cc +0 -0
  693. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/color-test.cc +0 -0
  694. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/compile-error-test/CMakeLists.txt +0 -0
  695. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/compile-fp-test.cc +0 -0
  696. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/compile-test.cc +0 -0
  697. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/cuda-test/CMakeLists.txt +0 -0
  698. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/cuda-test/cpp14.cc +0 -0
  699. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/cuda-test/cuda-cpp14.cu +0 -0
  700. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/detect-stdfs.cc +0 -0
  701. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/enforce-checks-test.cc +0 -0
  702. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/find-package-test/CMakeLists.txt +0 -0
  703. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/find-package-test/main.cc +0 -0
  704. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/format-impl-test.cc +0 -0
  705. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/format-test.cc +0 -0
  706. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/.gitignore +0 -0
  707. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/CMakeLists.txt +0 -0
  708. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/README.md +0 -0
  709. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/build.sh +0 -0
  710. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/chrono-duration.cc +0 -0
  711. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/chrono-timepoint.cc +0 -0
  712. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/float.cc +0 -0
  713. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/fuzzer-common.h +0 -0
  714. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/main.cc +0 -0
  715. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/named-arg.cc +0 -0
  716. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/one-arg.cc +0 -0
  717. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/fuzzing/two-args.cc +0 -0
  718. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest/.clang-format +0 -0
  719. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest/CMakeLists.txt +0 -0
  720. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest/gmock/gmock.h +0 -0
  721. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest/gmock-gtest-all.cc +0 -0
  722. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest/gtest/gtest-spi.h +0 -0
  723. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest/gtest/gtest.h +0 -0
  724. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest-extra-test.cc +0 -0
  725. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest-extra.cc +0 -0
  726. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/gtest-extra.h +0 -0
  727. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/header-only-test.cc +0 -0
  728. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/mock-allocator.h +0 -0
  729. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/module-test.cc +0 -0
  730. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/no-builtin-types-test.cc +0 -0
  731. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/noexception-test.cc +0 -0
  732. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/os-test.cc +0 -0
  733. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/ostream-test.cc +0 -0
  734. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/perf-sanity.cc +0 -0
  735. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/posix-mock-test.cc +0 -0
  736. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/posix-mock.h +0 -0
  737. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/printf-test.cc +0 -0
  738. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/ranges-odr-test.cc +0 -0
  739. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/ranges-test.cc +0 -0
  740. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/scan-test.cc +0 -0
  741. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/scan.h +0 -0
  742. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/static-export-test/CMakeLists.txt +0 -0
  743. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/static-export-test/library.cc +0 -0
  744. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/static-export-test/main.cc +0 -0
  745. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/std-test.cc +0 -0
  746. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/test-assert.h +0 -0
  747. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/test-main.cc +0 -0
  748. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/unicode-test.cc +0 -0
  749. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/util.cc +0 -0
  750. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/util.h +0 -0
  751. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/fmt/test/xchar-test.cc +0 -0
  752. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/.gitrepo +0 -0
  753. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/LICENSE +0 -0
  754. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/Makefile +0 -0
  755. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/README.md +0 -0
  756. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_4bit_palette.cpp +0 -0
  757. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_bmp2png.cpp +0 -0
  758. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_decode.c +0 -0
  759. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_decode.cpp +0 -0
  760. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_encode.c +0 -0
  761. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_encode.cpp +0 -0
  762. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_encode_type.cpp +0 -0
  763. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_gzip.cpp +0 -0
  764. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_opengl.cpp +0 -0
  765. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_optimize_png.cpp +0 -0
  766. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_png2bmp.cpp +0 -0
  767. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_png_info.cpp +0 -0
  768. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_reencode.cpp +0 -0
  769. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_sdl.c +0 -0
  770. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/examples/example_sdl.cpp +0 -0
  771. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/lodepng.cpp +0 -0
  772. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/lodepng.h +0 -0
  773. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/lodepng_benchmark.cpp +0 -0
  774. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/lodepng_fuzzer.cpp +0 -0
  775. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/lodepng_unittest.cpp +0 -0
  776. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/lodepng_util.cpp +0 -0
  777. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/lodepng_util.h +0 -0
  778. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/external/lodepng/pngdetail.cpp +0 -0
  779. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/README.md +0 -0
  780. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/Contents.json +0 -0
  781. {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
  782. {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
  783. {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
  784. {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
  785. {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
  786. {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
  787. {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
  788. {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
  789. {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
  790. {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
  791. {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
  792. {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
  793. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_app.appiconset/Contents.json +0 -0
  794. {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
  795. {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
  796. {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
  797. {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
  798. {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
  799. {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
  800. {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
  801. {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
  802. {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
  803. {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
  804. {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
  805. {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
  806. {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
  807. {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
  808. {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
  809. {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
  810. {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
  811. {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
  812. {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
  813. {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
  814. {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
  815. {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
  816. {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
  817. {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
  818. {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
  819. {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
  820. {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
  821. {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
  822. {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
  823. {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
  824. {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
  825. {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
  826. {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
  827. {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
  828. {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
  829. {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
  830. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ios/CommonIcons.xcassets/ktx_document.appiconset/Contents.json +0 -0
  831. {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
  832. {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
  833. {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
  834. {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
  835. {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
  836. {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
  837. {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
  838. {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
  839. {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
  840. {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
  841. {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
  842. {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
  843. {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
  844. {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
  845. {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
  846. {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
  847. {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
  848. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/ktx_logo_200.png +0 -0
  849. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/linux/ktx_app.svg +0 -0
  850. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/mac/ktx_app.icns +0 -0
  851. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/mac/ktx_document.icns +0 -0
  852. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/win/ktx_app.ico +0 -0
  853. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/win/ktx_document.ico +0 -0
  854. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/icons/win/ktx_logo_200_bmp3.bmp +0 -0
  855. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/install-gitconfig.ps1 +0 -0
  856. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/install-gitconfig.sh +0 -0
  857. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/basisu_c_binding/CMakeLists.txt +0 -0
  858. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/basisu_c_binding/inc/basisu_c_binding.h +0 -0
  859. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/basisu_c_binding/src/basisu_c_binding.cpp +0 -0
  860. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/CMakeLists.txt +0 -0
  861. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/README.md +0 -0
  862. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/pom.xml +0 -0
  863. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/cpp/KtxErrorCode.cpp +0 -0
  864. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/cpp/KtxTexture.cpp +0 -0
  865. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/cpp/KtxTexture1.cpp +0 -0
  866. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/cpp/KtxTexture2.cpp +0 -0
  867. {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
  868. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/cpp/libktx-jni.cpp +0 -0
  869. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/java_binding/src/main/cpp/libktx-jni.h +0 -0
  870. {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
  871. {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
  872. {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
  873. {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
  874. {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
  875. {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
  876. {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
  877. {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
  878. {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
  879. {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
  880. {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
  881. {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
  882. {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
  883. {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
  884. {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
  885. {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
  886. {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
  887. {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
  888. {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
  889. {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
  890. {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
  891. {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
  892. {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
  893. {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
  894. {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
  895. {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
  896. {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
  897. {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
  898. {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
  899. {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
  900. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/js_binding/class_compat.js +0 -0
  901. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/js_binding/ktx_wrapper.cpp +0 -0
  902. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/js_binding/module_create_compat.js +0 -0
  903. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/js_binding/transcoder_wrapper.cpp +0 -0
  904. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/js_binding/vk_format.inl +0 -0
  905. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/.gitignore +0 -0
  906. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/CMakeLists.txt +0 -0
  907. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/LICENSE +0 -0
  908. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/MANIFEST.in +0 -0
  909. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/Makefile +0 -0
  910. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/README.md +0 -0
  911. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/_static/.keep +0 -0
  912. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/buildscript.py +0 -0
  913. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/clean.py +0 -0
  914. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/conf.py +0 -0
  915. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/index.rst +0 -0
  916. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/make.bat +0 -0
  917. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/.gitignore +0 -0
  918. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/__init__.py +0 -0
  919. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/gl_internalformat.py +0 -0
  920. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/khr_df_model.py +0 -0
  921. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/khr_df_primaries.py +0 -0
  922. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/khr_df_transfer.py +0 -0
  923. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_astc_params.py +0 -0
  924. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_basis_codec.py +0 -0
  925. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_basis_params.py +0 -0
  926. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_error_code.py +0 -0
  927. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_hash_list.py +0 -0
  928. {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
  929. {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
  930. {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
  931. {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
  932. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_supercmp_scheme.py +0 -0
  933. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture.c +0 -0
  934. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture.h +0 -0
  935. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture.py +0 -0
  936. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture1.c +0 -0
  937. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture1.h +0 -0
  938. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture1.py +0 -0
  939. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture2.c +0 -0
  940. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture2.h +0 -0
  941. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture2.py +0 -0
  942. {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
  943. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture_create_info.py +0 -0
  944. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_texture_create_storage.py +0 -0
  945. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_transcode_flag_bits.py +0 -0
  946. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/ktx_transcode_fmt.py +0 -0
  947. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/pyktx/vk_format.py +0 -0
  948. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/requirements.txt +0 -0
  949. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/setup.py +0 -0
  950. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/tests/test_config.py +0 -0
  951. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/tests/test_ktx_texture.py +0 -0
  952. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/tests/test_ktx_texture1.py +0 -0
  953. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/interface/python_binding/tests/test_ktx_texture2.py +0 -0
  954. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/.clang-format +0 -0
  955. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/CMakeLists.txt +0 -0
  956. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/cmake/KtxConfig.cmake +0 -0
  957. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/def/internalexport.def +0 -0
  958. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/def/internalexport_write.def +0 -0
  959. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/def/internalexport_write_mingw.def +0 -0
  960. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/include/.clang-format +0 -0
  961. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/include/ktx.h +0 -0
  962. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/include/ktxvulkan.h +0 -0
  963. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/libktx_mainpage.md +0 -0
  964. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/nmkvkff +0 -0
  965. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/astc_codec.cpp +0 -0
  966. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/basis_encode.cpp +0 -0
  967. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/basis_sgd.h +0 -0
  968. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/basis_transcode.cpp +0 -0
  969. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/checkheader.c +0 -0
  970. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/etcunpack.cxx +0 -0
  971. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/filestream.c +0 -0
  972. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/filestream.h +0 -0
  973. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/formatsize.h +0 -0
  974. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/gl_format.h +0 -0
  975. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/gl_funclist.inl +0 -0
  976. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/gl_funcs.c +0 -0
  977. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/gl_funcs.h +0 -0
  978. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/glformat_str.c +0 -0
  979. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/glloader.c +0 -0
  980. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/hashlist.c +0 -0
  981. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/info.c +0 -0
  982. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/ktxint.h +0 -0
  983. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/memstream.c +0 -0
  984. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/memstream.h +0 -0
  985. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/miniz_wrapper.cpp +0 -0
  986. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/strings.c +0 -0
  987. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/swap.c +0 -0
  988. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/texture.c +0 -0
  989. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/texture.h +0 -0
  990. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/texture1.c +0 -0
  991. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/texture1.h +0 -0
  992. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/texture2.c +0 -0
  993. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/texture2.h +0 -0
  994. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/texture_funcs.inl +0 -0
  995. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/uthash.h +0 -0
  996. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vk2gl.h +0 -0
  997. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkFormat2glFormat.inl +0 -0
  998. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkFormat2glInternalFormat.inl +0 -0
  999. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkFormat2glType.inl +0 -0
  1000. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vk_format.h +0 -0
  1001. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vk_funcs.c +0 -0
  1002. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vk_funcs.h +0 -0
  1003. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkformat_check.c +0 -0
  1004. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkformat_check_variant.c +0 -0
  1005. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkformat_enum.h +0 -0
  1006. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkformat_str.c +0 -0
  1007. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkformat_typesize.c +0 -0
  1008. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/vkloader.c +0 -0
  1009. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/writer1.c +0 -0
  1010. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/lib/src/writer2.c +0 -0
  1011. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/.clang-format +0 -0
  1012. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/EGL/egl.h +0 -0
  1013. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/EGL/eglext.h +0 -0
  1014. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/EGL/eglplatform.h +0 -0
  1015. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GL/glcorearb.h +0 -0
  1016. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GL/glext.h +0 -0
  1017. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GL/glxext.h +0 -0
  1018. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GL/wglext.h +0 -0
  1019. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES/egl.h +0 -0
  1020. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES/gl.h +0 -0
  1021. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES/glext.h +0 -0
  1022. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES/glplatform.h +0 -0
  1023. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES2/gl2.h +0 -0
  1024. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES2/gl2ext.h +0 -0
  1025. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES2/gl2platform.h +0 -0
  1026. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES3/gl3.h +0 -0
  1027. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES3/gl31.h +0 -0
  1028. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/GLES3/gl3platform.h +0 -0
  1029. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/KHR/khrplatform.h +0 -0
  1030. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/CMakeLists.txt +0 -0
  1031. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/common.hpp +0 -0
  1032. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/_features.hpp +0 -0
  1033. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/_fixes.hpp +0 -0
  1034. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/_noise.hpp +0 -0
  1035. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/_swizzle.hpp +0 -0
  1036. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/_swizzle_func.hpp +0 -0
  1037. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/_vectorize.hpp +0 -0
  1038. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/dummy.cpp +0 -0
  1039. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_common.hpp +0 -0
  1040. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_common.inl +0 -0
  1041. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_common_simd.inl +0 -0
  1042. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_exponential.hpp +0 -0
  1043. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_exponential.inl +0 -0
  1044. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_exponential_simd.inl +0 -0
  1045. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_geometric.hpp +0 -0
  1046. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_geometric.inl +0 -0
  1047. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_geometric_simd.inl +0 -0
  1048. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_integer.hpp +0 -0
  1049. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_integer.inl +0 -0
  1050. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_integer_simd.inl +0 -0
  1051. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_matrix.hpp +0 -0
  1052. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_matrix.inl +0 -0
  1053. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_matrix_simd.inl +0 -0
  1054. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_packing.hpp +0 -0
  1055. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_packing.inl +0 -0
  1056. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_packing_simd.inl +0 -0
  1057. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_trigonometric.hpp +0 -0
  1058. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_trigonometric.inl +0 -0
  1059. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_trigonometric_simd.inl +0 -0
  1060. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_vector_relational.hpp +0 -0
  1061. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_vector_relational.inl +0 -0
  1062. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/func_vector_relational_simd.inl +0 -0
  1063. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/glm.cpp +0 -0
  1064. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/precision.hpp +0 -0
  1065. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/setup.hpp +0 -0
  1066. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_float.hpp +0 -0
  1067. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_gentype.hpp +0 -0
  1068. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_gentype.inl +0 -0
  1069. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_half.hpp +0 -0
  1070. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_half.inl +0 -0
  1071. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_int.hpp +0 -0
  1072. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat.hpp +0 -0
  1073. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat.inl +0 -0
  1074. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat2x2.hpp +0 -0
  1075. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat2x2.inl +0 -0
  1076. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat2x3.hpp +0 -0
  1077. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat2x3.inl +0 -0
  1078. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat2x4.hpp +0 -0
  1079. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat2x4.inl +0 -0
  1080. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat3x2.hpp +0 -0
  1081. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat3x2.inl +0 -0
  1082. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat3x3.hpp +0 -0
  1083. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat3x3.inl +0 -0
  1084. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat3x4.hpp +0 -0
  1085. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat3x4.inl +0 -0
  1086. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat4x2.hpp +0 -0
  1087. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat4x2.inl +0 -0
  1088. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat4x3.hpp +0 -0
  1089. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat4x3.inl +0 -0
  1090. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat4x4.hpp +0 -0
  1091. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat4x4.inl +0 -0
  1092. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_mat4x4_simd.inl +0 -0
  1093. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec.hpp +0 -0
  1094. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec.inl +0 -0
  1095. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec1.hpp +0 -0
  1096. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec1.inl +0 -0
  1097. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec2.hpp +0 -0
  1098. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec2.inl +0 -0
  1099. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec3.hpp +0 -0
  1100. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec3.inl +0 -0
  1101. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec4.hpp +0 -0
  1102. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec4.inl +0 -0
  1103. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/detail/type_vec4_simd.inl +0 -0
  1104. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/exponential.hpp +0 -0
  1105. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/ext.hpp +0 -0
  1106. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/fwd.hpp +0 -0
  1107. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/geometric.hpp +0 -0
  1108. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/glm.hpp +0 -0
  1109. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/bitfield.hpp +0 -0
  1110. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/bitfield.inl +0 -0
  1111. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/color_space.hpp +0 -0
  1112. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/color_space.inl +0 -0
  1113. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/constants.hpp +0 -0
  1114. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/constants.inl +0 -0
  1115. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/epsilon.hpp +0 -0
  1116. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/epsilon.inl +0 -0
  1117. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/functions.hpp +0 -0
  1118. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/functions.inl +0 -0
  1119. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/integer.hpp +0 -0
  1120. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/integer.inl +0 -0
  1121. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/matrix_access.hpp +0 -0
  1122. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/matrix_access.inl +0 -0
  1123. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/matrix_integer.hpp +0 -0
  1124. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/matrix_inverse.hpp +0 -0
  1125. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/matrix_inverse.inl +0 -0
  1126. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/matrix_transform.hpp +0 -0
  1127. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/matrix_transform.inl +0 -0
  1128. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/noise.hpp +0 -0
  1129. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/noise.inl +0 -0
  1130. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/packing.hpp +0 -0
  1131. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/packing.inl +0 -0
  1132. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/quaternion.hpp +0 -0
  1133. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/quaternion.inl +0 -0
  1134. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/quaternion_simd.inl +0 -0
  1135. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/random.hpp +0 -0
  1136. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/random.inl +0 -0
  1137. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/reciprocal.hpp +0 -0
  1138. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/reciprocal.inl +0 -0
  1139. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/round.hpp +0 -0
  1140. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/round.inl +0 -0
  1141. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/type_aligned.hpp +0 -0
  1142. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/type_precision.hpp +0 -0
  1143. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/type_precision.inl +0 -0
  1144. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/type_ptr.hpp +0 -0
  1145. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/type_ptr.inl +0 -0
  1146. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/ulp.hpp +0 -0
  1147. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/ulp.inl +0 -0
  1148. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/vec1.hpp +0 -0
  1149. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtc/vec1.inl +0 -0
  1150. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/associated_min_max.hpp +0 -0
  1151. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/associated_min_max.inl +0 -0
  1152. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/bit.hpp +0 -0
  1153. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/bit.inl +0 -0
  1154. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/closest_point.hpp +0 -0
  1155. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/closest_point.inl +0 -0
  1156. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/color_encoding.hpp +0 -0
  1157. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/color_encoding.inl +0 -0
  1158. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/color_space.hpp +0 -0
  1159. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/color_space.inl +0 -0
  1160. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/color_space_YCoCg.hpp +0 -0
  1161. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/color_space_YCoCg.inl +0 -0
  1162. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/common.hpp +0 -0
  1163. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/common.inl +0 -0
  1164. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/compatibility.hpp +0 -0
  1165. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/compatibility.inl +0 -0
  1166. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/component_wise.hpp +0 -0
  1167. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/component_wise.inl +0 -0
  1168. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/dual_quaternion.hpp +0 -0
  1169. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/dual_quaternion.inl +0 -0
  1170. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/euler_angles.hpp +0 -0
  1171. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/euler_angles.inl +0 -0
  1172. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/extend.hpp +0 -0
  1173. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/extend.inl +0 -0
  1174. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/extended_min_max.hpp +0 -0
  1175. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/extended_min_max.inl +0 -0
  1176. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/exterior_product.hpp +0 -0
  1177. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/exterior_product.inl +0 -0
  1178. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/fast_exponential.hpp +0 -0
  1179. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/fast_exponential.inl +0 -0
  1180. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/fast_square_root.hpp +0 -0
  1181. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/fast_square_root.inl +0 -0
  1182. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/fast_trigonometry.hpp +0 -0
  1183. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/fast_trigonometry.inl +0 -0
  1184. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/float_notmalize.inl +0 -0
  1185. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/gradient_paint.hpp +0 -0
  1186. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/gradient_paint.inl +0 -0
  1187. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/handed_coordinate_space.hpp +0 -0
  1188. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/handed_coordinate_space.inl +0 -0
  1189. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/hash.hpp +0 -0
  1190. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/hash.inl +0 -0
  1191. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/integer.hpp +0 -0
  1192. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/integer.inl +0 -0
  1193. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/intersect.hpp +0 -0
  1194. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/intersect.inl +0 -0
  1195. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/io.hpp +0 -0
  1196. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/io.inl +0 -0
  1197. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/log_base.hpp +0 -0
  1198. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/log_base.inl +0 -0
  1199. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_cross_product.hpp +0 -0
  1200. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_cross_product.inl +0 -0
  1201. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_decompose.hpp +0 -0
  1202. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_decompose.inl +0 -0
  1203. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_interpolation.hpp +0 -0
  1204. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_interpolation.inl +0 -0
  1205. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_major_storage.hpp +0 -0
  1206. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_major_storage.inl +0 -0
  1207. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_operation.hpp +0 -0
  1208. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_operation.inl +0 -0
  1209. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_query.hpp +0 -0
  1210. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_query.inl +0 -0
  1211. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_transform_2d.hpp +0 -0
  1212. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/matrix_transform_2d.inl +0 -0
  1213. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/mixed_product.hpp +0 -0
  1214. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/mixed_product.inl +0 -0
  1215. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/norm.hpp +0 -0
  1216. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/norm.inl +0 -0
  1217. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/normal.hpp +0 -0
  1218. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/normal.inl +0 -0
  1219. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/normalize_dot.hpp +0 -0
  1220. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/normalize_dot.inl +0 -0
  1221. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/number_precision.hpp +0 -0
  1222. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/number_precision.inl +0 -0
  1223. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/optimum_pow.hpp +0 -0
  1224. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/optimum_pow.inl +0 -0
  1225. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/orthonormalize.hpp +0 -0
  1226. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/orthonormalize.inl +0 -0
  1227. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/perpendicular.hpp +0 -0
  1228. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/perpendicular.inl +0 -0
  1229. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/polar_coordinates.hpp +0 -0
  1230. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/polar_coordinates.inl +0 -0
  1231. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/projection.hpp +0 -0
  1232. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/projection.inl +0 -0
  1233. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/quaternion.hpp +0 -0
  1234. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/quaternion.inl +0 -0
  1235. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/range.hpp +0 -0
  1236. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/raw_data.hpp +0 -0
  1237. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/raw_data.inl +0 -0
  1238. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/rotate_normalized_axis.hpp +0 -0
  1239. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/rotate_normalized_axis.inl +0 -0
  1240. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/rotate_vector.hpp +0 -0
  1241. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/rotate_vector.inl +0 -0
  1242. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/scalar_multiplication.hpp +0 -0
  1243. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/scalar_relational.hpp +0 -0
  1244. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/scalar_relational.inl +0 -0
  1245. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/spline.hpp +0 -0
  1246. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/spline.inl +0 -0
  1247. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/std_based_type.hpp +0 -0
  1248. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/std_based_type.inl +0 -0
  1249. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/string_cast.hpp +0 -0
  1250. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/string_cast.inl +0 -0
  1251. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/transform.hpp +0 -0
  1252. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/transform.inl +0 -0
  1253. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/transform2.hpp +0 -0
  1254. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/transform2.inl +0 -0
  1255. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/type_aligned.hpp +0 -0
  1256. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/type_aligned.inl +0 -0
  1257. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/type_trait.hpp +0 -0
  1258. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/type_trait.inl +0 -0
  1259. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/vec_swizzle.hpp +0 -0
  1260. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/vector_angle.hpp +0 -0
  1261. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/vector_angle.inl +0 -0
  1262. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/vector_query.hpp +0 -0
  1263. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/vector_query.inl +0 -0
  1264. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/wrap.hpp +0 -0
  1265. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/gtx/wrap.inl +0 -0
  1266. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/integer.hpp +0 -0
  1267. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat2x2.hpp +0 -0
  1268. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat2x3.hpp +0 -0
  1269. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat2x4.hpp +0 -0
  1270. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat3x2.hpp +0 -0
  1271. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat3x3.hpp +0 -0
  1272. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat3x4.hpp +0 -0
  1273. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat4x2.hpp +0 -0
  1274. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat4x3.hpp +0 -0
  1275. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/mat4x4.hpp +0 -0
  1276. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/matrix.hpp +0 -0
  1277. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/packing.hpp +0 -0
  1278. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/common.h +0 -0
  1279. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/exponential.h +0 -0
  1280. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/geometric.h +0 -0
  1281. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/integer.h +0 -0
  1282. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/matrix.h +0 -0
  1283. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/packing.h +0 -0
  1284. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/platform.h +0 -0
  1285. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/trigonometric.h +0 -0
  1286. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/simd/vector_relational.h +0 -0
  1287. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/trigonometric.hpp +0 -0
  1288. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/vec2.hpp +0 -0
  1289. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/vec3.hpp +0 -0
  1290. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/vec4.hpp +0 -0
  1291. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/glm/vector_relational.hpp +0 -0
  1292. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/stb/stb_font_consolas_24_latin1.inl +0 -0
  1293. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/other_include/vma/vk_mem_alloc.h +0 -0
  1294. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/header.html +0 -0
  1295. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/icons/KTX_document.png +0 -0
  1296. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/icons/KTX_editor.png +0 -0
  1297. {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
  1298. {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
  1299. {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
  1300. {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
  1301. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/icons/ktx-swoosh.png +0 -0
  1302. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/icons.dox +0 -0
  1303. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/jswrappersDoxyLayout.xml +0 -0
  1304. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/libktxDoxyLayout.xml +0 -0
  1305. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/packageDoxyLayout.xml +0 -0
  1306. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/pages.md +0 -0
  1307. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/pkgdoc/toolsDoxyLayout.xml +0 -0
  1308. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/before_build_macos.sh +0 -0
  1309. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/build_android.sh +0 -0
  1310. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/build_android_debug.sh +0 -0
  1311. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/build_ios.sh +0 -0
  1312. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/build_java.sh +0 -0
  1313. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/build_linux.sh +0 -0
  1314. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/build_macos.sh +0 -0
  1315. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/build_wasm_docker.sh +0 -0
  1316. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/build_win.ps1 +0 -0
  1317. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/check_lib_build_output.sh +0 -0
  1318. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/check_mkvk.ps1 +0 -0
  1319. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/check_mkvk.sh +0 -0
  1320. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/download_release_assets.sh +0 -0
  1321. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/expand_kw +0 -0
  1322. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/github_release.rb +0 -0
  1323. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/gk +0 -0
  1324. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/install_linux.sh +0 -0
  1325. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/install_macos.sh +0 -0
  1326. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/install_win.ps1 +0 -0
  1327. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/ktx-compare-git +0 -0
  1328. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/list_releases.sh +0 -0
  1329. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/mkrelnotes +0 -0
  1330. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/mkversion +0 -0
  1331. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/mkvkformatfiles +0 -0
  1332. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/notarize.sh +0 -0
  1333. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/on_failure.ps1 +0 -0
  1334. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/on_failure.sh +0 -0
  1335. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/readlink.sh +0 -0
  1336. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/smudge_date.ps1 +0 -0
  1337. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/scripts/smudge_date.sh +0 -0
  1338. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tests/CMakeLists.txt +0 -0
  1339. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/CMakeLists.txt +0 -0
  1340. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/CMakeLists.txt +0 -0
  1341. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/exr.imageio/exrinput.cc +0 -0
  1342. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/formatdesc.h +0 -0
  1343. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/image.hpp +0 -0
  1344. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/imagecodec.hpp +0 -0
  1345. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/imageinput.cc +0 -0
  1346. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/imageio.cc +0 -0
  1347. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/imageio.h +0 -0
  1348. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/imageio_utility.h +0 -0
  1349. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/imageoutput.cc +0 -0
  1350. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/imagespan.hpp +0 -0
  1351. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/jpg.imageio/jpginput.cc +0 -0
  1352. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/npbm.imageio/npbminput.cc +0 -0
  1353. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/png.imageio/pnginput.cc +0 -0
  1354. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/imageio/png.imageio/pngoutput.cc +0 -0
  1355. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/CMakeLists.txt +0 -0
  1356. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command.cpp +0 -0
  1357. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command.h +0 -0
  1358. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_compare.cpp +0 -0
  1359. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_convert.cpp +0 -0
  1360. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_create.cpp +0 -0
  1361. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_deflate.cpp +0 -0
  1362. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_encode.cpp +0 -0
  1363. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_extract.cpp +0 -0
  1364. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_help.cpp +0 -0
  1365. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_info.cpp +0 -0
  1366. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_patch.cpp +0 -0
  1367. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_transcode.cpp +0 -0
  1368. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/command_validate.cpp +0 -0
  1369. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/deflate_utils.h +0 -0
  1370. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/encode_utils_astc.h +0 -0
  1371. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/encode_utils_basis.h +0 -0
  1372. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/encode_utils_common.h +0 -0
  1373. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/format_descriptor.h +0 -0
  1374. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/formats.h +0 -0
  1375. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/fragment_uri.h +0 -0
  1376. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/ktx_main.cpp +0 -0
  1377. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/metadata_utils.h +0 -0
  1378. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/metrics_utils.h +0 -0
  1379. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/schema/compare.json +0 -0
  1380. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/schema/info.json +0 -0
  1381. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/schema/validate.json +0 -0
  1382. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/transcode_utils.cpp +0 -0
  1383. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/transcode_utils.h +0 -0
  1384. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/utility.h +0 -0
  1385. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/validate.cpp +0 -0
  1386. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/validate.h +0 -0
  1387. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktx/validation_messages.h +0 -0
  1388. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/ktxtools_mainpage.md +0 -0
  1389. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/package/mac/Resources/ktx_logo_190_xp.png +0 -0
  1390. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/package/mac/Resources/summary.html +0 -0
  1391. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/package/mac/ktx-uninstall +0 -0
  1392. {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
  1393. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/tools/package/mac/summary.rtfd/TXT.rtf +0 -0
  1394. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/utils/argparser.cpp +0 -0
  1395. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/utils/argparser.h +0 -0
  1396. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/utils/platform_utils.h +0 -0
  1397. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/utils/sbufstream.h +0 -0
  1398. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/utils/stdafx.h +0 -0
  1399. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/utils/unused.h +0 -0
  1400. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/vcpkg-configuration.json +0 -0
  1401. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/vcpkg-triplets/README.md +0 -0
  1402. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/vcpkg-triplets/arm64-ios-simulator.cmake +0 -0
  1403. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/vcpkg-triplets/arm64-ios.cmake +0 -0
  1404. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/vcpkg-triplets/arm64-osx.cmake +0 -0
  1405. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/vcpkg-triplets/x64-ios.cmake +0 -0
  1406. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/vcpkg-triplets/x64-osx.cmake +0 -0
  1407. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/KTX-Software/vcpkg.json +0 -0
  1408. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/github/compare-babylonjs.png +0 -0
  1409. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.editorconfig +0 -0
  1410. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.gitattributes +0 -0
  1411. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/FUNDING.yml +0 -0
  1412. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/ISSUE_TEMPLATE/config.yml +0 -0
  1413. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/ISSUE_TEMPLATE/issue_template.yml +0 -0
  1414. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/pull_request_template.md +0 -0
  1415. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/workflows/build.yml +0 -0
  1416. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/workflows/build_windows_vulkan_libs.ps1 +0 -0
  1417. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/workflows/manual.yml +0 -0
  1418. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/workflows/scheduled.yml +0 -0
  1419. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.github/workflows/static-analysis.yml +0 -0
  1420. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/.gitignore +0 -0
  1421. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/LICENSE.txt +0 -0
  1422. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_allegro5.cpp +0 -0
  1423. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_allegro5.h +0 -0
  1424. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_android.cpp +0 -0
  1425. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_android.h +0 -0
  1426. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_dx10.cpp +0 -0
  1427. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_dx10.h +0 -0
  1428. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_dx11.cpp +0 -0
  1429. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_dx11.h +0 -0
  1430. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_dx12.cpp +0 -0
  1431. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_dx12.h +0 -0
  1432. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_dx9.cpp +0 -0
  1433. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_dx9.h +0 -0
  1434. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_glfw.cpp +0 -0
  1435. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_glfw.h +0 -0
  1436. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_glut.cpp +0 -0
  1437. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_glut.h +0 -0
  1438. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_metal.h +0 -0
  1439. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_metal.mm +0 -0
  1440. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_metal4.h +0 -0
  1441. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_metal4.mm +0 -0
  1442. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_null.cpp +0 -0
  1443. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_null.h +0 -0
  1444. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_opengl2.cpp +0 -0
  1445. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_opengl2.h +0 -0
  1446. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_opengl3.cpp +0 -0
  1447. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_opengl3.h +0 -0
  1448. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_opengl3_loader.h +0 -0
  1449. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_osx.h +0 -0
  1450. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_osx.mm +0 -0
  1451. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdl2.cpp +0 -0
  1452. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdl2.h +0 -0
  1453. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdl3.cpp +0 -0
  1454. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdl3.h +0 -0
  1455. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdlgpu3.cpp +0 -0
  1456. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdlgpu3.h +0 -0
  1457. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdlgpu3_shaders.h +0 -0
  1458. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdlrenderer2.cpp +0 -0
  1459. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdlrenderer2.h +0 -0
  1460. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdlrenderer3.cpp +0 -0
  1461. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_sdlrenderer3.h +0 -0
  1462. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_vulkan.cpp +0 -0
  1463. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_vulkan.h +0 -0
  1464. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_wgpu.cpp +0 -0
  1465. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_wgpu.h +0 -0
  1466. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_win32.cpp +0 -0
  1467. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/imgui_impl_win32.h +0 -0
  1468. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/sdlgpu3/build_instructions.txt +0 -0
  1469. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/sdlgpu3/shader.frag +0 -0
  1470. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/sdlgpu3/shader.vert +0 -0
  1471. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/vulkan/build_instructions.txt +0 -0
  1472. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/vulkan/generate_spv.sh +0 -0
  1473. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/vulkan/glsl_shader.frag +0 -0
  1474. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/backends/vulkan/glsl_shader.vert +0 -0
  1475. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/BACKENDS.md +0 -0
  1476. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/CHANGELOG.txt +0 -0
  1477. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/CONTRIBUTING.md +0 -0
  1478. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/EXAMPLES.md +0 -0
  1479. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/FAQ.md +0 -0
  1480. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/FONTS.md +0 -0
  1481. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/README.md +0 -0
  1482. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/SECURITY.md +0 -0
  1483. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/docs/TODO.txt +0 -0
  1484. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/README.txt +0 -0
  1485. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_allegro5/README.md +0 -0
  1486. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_allegro5/example_allegro5.vcxproj +0 -0
  1487. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_allegro5/example_allegro5.vcxproj.filters +0 -0
  1488. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_allegro5/imconfig_allegro5.h +0 -0
  1489. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_allegro5/main.cpp +0 -0
  1490. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_android_opengl3/CMakeLists.txt +0 -0
  1491. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_android_opengl3/android/.gitignore +0 -0
  1492. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_android_opengl3/android/app/build.gradle +0 -0
  1493. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml +0 -0
  1494. {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
  1495. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_android_opengl3/android/build.gradle +0 -0
  1496. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_android_opengl3/android/gradle/libs.versions.toml +0 -0
  1497. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_android_opengl3/android/settings.gradle +0 -0
  1498. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_android_opengl3/main.cpp +0 -0
  1499. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal/Makefile +0 -0
  1500. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal/README.md +0 -0
  1501. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal/example_apple_metal.xcodeproj/project.pbxproj +0 -0
  1502. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal/iOS/Info-iOS.plist +0 -0
  1503. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal/iOS/LaunchScreen.storyboard +0 -0
  1504. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal/macOS/Info-macOS.plist +0 -0
  1505. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal/macOS/MainMenu.storyboard +0 -0
  1506. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal/main.mm +0 -0
  1507. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal4/Makefile +0 -0
  1508. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal4/README.md +0 -0
  1509. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal4/example_apple_metal4.xcodeproj/project.pbxproj +0 -0
  1510. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal4/iOS/Info-iOS.plist +0 -0
  1511. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal4/iOS/LaunchScreen.storyboard +0 -0
  1512. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal4/macOS/Info-macOS.plist +0 -0
  1513. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal4/macOS/MainMenu.storyboard +0 -0
  1514. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_metal4/main.mm +0 -0
  1515. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_opengl2/Makefile +0 -0
  1516. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_opengl2/example_apple_opengl2.xcodeproj/project.pbxproj +0 -0
  1517. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_apple_opengl2/main.mm +0 -0
  1518. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_metal/Makefile +0 -0
  1519. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_metal/main.mm +0 -0
  1520. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl2/Makefile +0 -0
  1521. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl2/build_win32.bat +0 -0
  1522. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj +0 -0
  1523. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj.filters +0 -0
  1524. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl2/main.cpp +0 -0
  1525. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl3/Makefile +0 -0
  1526. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl3/Makefile.emscripten +0 -0
  1527. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl3/build_win32.bat +0 -0
  1528. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj +0 -0
  1529. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj.filters +0 -0
  1530. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_opengl3/main.cpp +0 -0
  1531. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_vulkan/CMakeLists.txt +0 -0
  1532. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_vulkan/Makefile +0 -0
  1533. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_vulkan/build_win32.bat +0 -0
  1534. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_vulkan/build_win64.bat +0 -0
  1535. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj +0 -0
  1536. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj.filters +0 -0
  1537. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_vulkan/main.cpp +0 -0
  1538. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_wgpu/CMakeLists.txt +0 -0
  1539. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_wgpu/Makefile.emscripten +0 -0
  1540. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_wgpu/README.md +0 -0
  1541. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glfw_wgpu/main.cpp +0 -0
  1542. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glut_opengl2/Makefile +0 -0
  1543. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj +0 -0
  1544. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj.filters +0 -0
  1545. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_glut_opengl2/main.cpp +0 -0
  1546. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_null/Makefile +0 -0
  1547. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_null/build_win32.bat +0 -0
  1548. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_null/example_null.vcxproj +0 -0
  1549. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_null/example_null.vcxproj.filters +0 -0
  1550. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_null/main.cpp +0 -0
  1551. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_directx11/build_win32.bat +0 -0
  1552. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj +0 -0
  1553. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj.filters +0 -0
  1554. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_directx11/main.cpp +0 -0
  1555. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_metal/Makefile +0 -0
  1556. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_metal/main.mm +0 -0
  1557. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl2/Makefile +0 -0
  1558. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl2/README.md +0 -0
  1559. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl2/build_win32.bat +0 -0
  1560. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj +0 -0
  1561. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj.filters +0 -0
  1562. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl2/main.cpp +0 -0
  1563. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl3/Makefile +0 -0
  1564. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl3/Makefile.emscripten +0 -0
  1565. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl3/README.md +0 -0
  1566. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl3/build_win32.bat +0 -0
  1567. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj +0 -0
  1568. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj.filters +0 -0
  1569. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_opengl3/main.cpp +0 -0
  1570. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_sdlrenderer2/Makefile +0 -0
  1571. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_sdlrenderer2/README.md +0 -0
  1572. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_sdlrenderer2/build_win32.bat +0 -0
  1573. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_sdlrenderer2/example_sdl2_sdlrenderer2.vcxproj +0 -0
  1574. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_sdlrenderer2/example_sdl2_sdlrenderer2.vcxproj.filters +0 -0
  1575. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_sdlrenderer2/main.cpp +0 -0
  1576. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_vulkan/Makefile +0 -0
  1577. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_vulkan/build_win32.bat +0 -0
  1578. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_vulkan/build_win64.bat +0 -0
  1579. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj +0 -0
  1580. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj.filters +0 -0
  1581. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_vulkan/main.cpp +0 -0
  1582. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_wgpu/CMakeLists.txt +0 -0
  1583. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_wgpu/Makefile.emscripten +0 -0
  1584. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_wgpu/README.md +0 -0
  1585. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl2_wgpu/main.cpp +0 -0
  1586. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_directx11/build_win32.bat +0 -0
  1587. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_directx11/example_sdl3_directx11.vcxproj +0 -0
  1588. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_directx11/example_sdl3_directx11.vcxproj.filters +0 -0
  1589. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_directx11/main.cpp +0 -0
  1590. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_metal/Makefile +0 -0
  1591. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_metal/main.mm +0 -0
  1592. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_metal4/Makefile +0 -0
  1593. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_metal4/main.mm +0 -0
  1594. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_opengl3/Makefile +0 -0
  1595. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_opengl3/Makefile.emscripten +0 -0
  1596. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_opengl3/README.md +0 -0
  1597. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_opengl3/build_win32.bat +0 -0
  1598. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_opengl3/build_win64.bat +0 -0
  1599. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_opengl3/example_sdl3_opengl3.vcxproj +0 -0
  1600. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_opengl3/example_sdl3_opengl3.vcxproj.filters +0 -0
  1601. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_opengl3/main.cpp +0 -0
  1602. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlgpu3/Makefile +0 -0
  1603. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlgpu3/build_win64.bat +0 -0
  1604. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlgpu3/example_sdl3_sdlgpu3.vcxproj +0 -0
  1605. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlgpu3/example_sdl3_sdlgpu3.vcxproj.filters +0 -0
  1606. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlgpu3/main.cpp +0 -0
  1607. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlrenderer3/Makefile +0 -0
  1608. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlrenderer3/build_win32.bat +0 -0
  1609. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlrenderer3/example_sdl3_sdlrenderer3.vcxproj +0 -0
  1610. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlrenderer3/example_sdl3_sdlrenderer3.vcxproj.filters +0 -0
  1611. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_sdlrenderer3/main.cpp +0 -0
  1612. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_vulkan/Makefile +0 -0
  1613. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_vulkan/build_win32.bat +0 -0
  1614. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_vulkan/build_win64.bat +0 -0
  1615. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_vulkan/example_sdl3_vulkan.vcxproj +0 -0
  1616. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_vulkan/example_sdl3_vulkan.vcxproj.filters +0 -0
  1617. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_vulkan/main.cpp +0 -0
  1618. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_wgpu/CMakeLists.txt +0 -0
  1619. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_wgpu/Makefile.emscripten +0 -0
  1620. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_wgpu/README.md +0 -0
  1621. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_sdl3_wgpu/main.cpp +0 -0
  1622. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx10/build_win32.bat +0 -0
  1623. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj +0 -0
  1624. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj.filters +0 -0
  1625. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx10/main.cpp +0 -0
  1626. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx11/build_win32.bat +0 -0
  1627. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj +0 -0
  1628. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj.filters +0 -0
  1629. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx11/main.cpp +0 -0
  1630. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx12/build_win32.bat +0 -0
  1631. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj +0 -0
  1632. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj.filters +0 -0
  1633. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx12/main.cpp +0 -0
  1634. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx9/build_win32.bat +0 -0
  1635. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj +0 -0
  1636. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj.filters +0 -0
  1637. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_directx9/main.cpp +0 -0
  1638. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_opengl3/build_mingw.bat +0 -0
  1639. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_opengl3/build_win32.bat +0 -0
  1640. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_opengl3/example_win32_opengl3.vcxproj +0 -0
  1641. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_opengl3/example_win32_opengl3.vcxproj.filters +0 -0
  1642. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_opengl3/main.cpp +0 -0
  1643. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_vulkan/build_win32.bat +0 -0
  1644. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_vulkan/build_win64.bat +0 -0
  1645. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_vulkan/example_win32_vulkan.vcxproj +0 -0
  1646. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_vulkan/example_win32_vulkan.vcxproj.filters +0 -0
  1647. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/example_win32_vulkan/main.cpp +0 -0
  1648. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/imgui_examples.sln +0 -0
  1649. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/libs/emscripten/emscripten_mainloop_stub.h +0 -0
  1650. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/libs/emscripten/shell_minimal.html +0 -0
  1651. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/libs/glfw/COPYING.txt +0 -0
  1652. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/libs/glfw/include/GLFW/glfw3.h +0 -0
  1653. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/libs/glfw/include/GLFW/glfw3native.h +0 -0
  1654. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/libs/usynergy/README.txt +0 -0
  1655. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/libs/usynergy/uSynergy.c +0 -0
  1656. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/examples/libs/usynergy/uSynergy.h +0 -0
  1657. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imconfig.h +0 -0
  1658. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imgui.cpp +0 -0
  1659. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imgui.h +0 -0
  1660. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imgui_demo.cpp +0 -0
  1661. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imgui_draw.cpp +0 -0
  1662. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imgui_internal.h +0 -0
  1663. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imgui_tables.cpp +0 -0
  1664. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imgui_widgets.cpp +0 -0
  1665. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imstb_rectpack.h +0 -0
  1666. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imstb_textedit.h +0 -0
  1667. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/imstb_truetype.h +0 -0
  1668. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/README.txt +0 -0
  1669. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/cpp/README.txt +0 -0
  1670. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/cpp/imgui_stdlib.cpp +0 -0
  1671. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/cpp/imgui_stdlib.h +0 -0
  1672. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/debuggers/README.txt +0 -0
  1673. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/debuggers/imgui.gdb +0 -0
  1674. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/debuggers/imgui.natstepfilter +0 -0
  1675. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/debuggers/imgui.natvis +0 -0
  1676. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/debuggers/imgui_lldb.py +0 -0
  1677. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/fonts/Cousine-Regular.ttf +0 -0
  1678. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/fonts/DroidSans.ttf +0 -0
  1679. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/fonts/Karla-Regular.ttf +0 -0
  1680. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/fonts/ProggyClean.ttf +0 -0
  1681. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/fonts/ProggyTiny.ttf +0 -0
  1682. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/fonts/Roboto-Medium.ttf +0 -0
  1683. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/fonts/binary_to_compressed_c.cpp +0 -0
  1684. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/freetype/README.md +0 -0
  1685. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/freetype/imgui_freetype.cpp +0 -0
  1686. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/freetype/imgui_freetype.h +0 -0
  1687. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/imgui/misc/single_file/imgui_single_file.h +0 -0
  1688. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.clang-format +0 -0
  1689. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.github/FUNDING.yml +0 -0
  1690. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.github/ISSUE_TEMPLATE/config.yml +0 -0
  1691. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.github/ISSUE_TEMPLATE/issue-report.md +0 -0
  1692. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  1693. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.github/workflows/c-cpp.yml +0 -0
  1694. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.github/workflows/ci.yml +0 -0
  1695. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.github/workflows/mingw-w64-msys2.yml +0 -0
  1696. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/.gitignore +0 -0
  1697. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/CMakeLists.txt +0 -0
  1698. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/LICENSE +0 -0
  1699. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/Makefile +0 -0
  1700. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/README.md +0 -0
  1701. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/benchmark/Makefile +0 -0
  1702. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/benchmark/bench_v3.cpp +0 -0
  1703. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/benchmark/gen_synthetic.cpp +0 -0
  1704. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/meson.build +0 -0
  1705. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/meson_options.txt +0 -0
  1706. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/BoundsChecking/integer-out-of-bounds.gltf +0 -0
  1707. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/BoundsChecking/invalid-buffer-index.gltf +0 -0
  1708. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/BoundsChecking/invalid-buffer-view-index.gltf +0 -0
  1709. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/BoundsChecking/invalid-primitive-indices.gltf +0 -0
  1710. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/BoundsChecking/simpleTriangle.bin +0 -0
  1711. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube/Cube.bin +0 -0
  1712. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube/Cube.gltf +0 -0
  1713. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube/Cube_BaseColor.png +0 -0
  1714. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube/Cube_MetallicRoughness.png +0 -0
  1715. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube/README.md +0 -0
  1716. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube-texture-ext/Cube-textransform.gltf +0 -0
  1717. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube-texture-ext/Cube.bin +0 -0
  1718. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube-texture-ext/Cube_MetallicRoughness.png +0 -0
  1719. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Cube-texture-ext/README.md +0 -0
  1720. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/CubeImageUriSpaces/ 2x2 image has multiple spaces.png +0 -0
  1721. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/CubeImageUriSpaces/2x2 image has spaces.png +0 -0
  1722. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/CubeImageUriSpaces/CubeImageUriMultipleSpaces.gltf +0 -0
  1723. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/CubeImageUriSpaces/CubeImageUriSpaces.bin +0 -0
  1724. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/CubeImageUriSpaces/CubeImageUriSpaces.gltf +0 -0
  1725. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Extensions-issue97/test.gltf +0 -0
  1726. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Extensions-overwrite-issue261/issue-261.bin +0 -0
  1727. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/Extensions-overwrite-issue261/issue-261.gltf +0 -0
  1728. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/SparseMorphTargets-issue280/singleBlendshapeCube_sparse.glb +0 -0
  1729. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/box01.glb +0 -0
  1730. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/regression/unassigned-skeleton.gltf +0 -0
  1731. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/models/regression/zero-sized-bin-chunk-issue-440.glb +0 -0
  1732. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/test_runner.py +0 -0
  1733. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/Makefile +0 -0
  1734. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/catch.hpp +0 -0
  1735. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/issue-416.gltf +0 -0
  1736. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/issue-492.glb +0 -0
  1737. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/tester_v3_c.c +0 -0
  1738. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/tester_v3_c_v1port.c +0 -0
  1739. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/tester_v3_freestanding.c +0 -0
  1740. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/tester_v3_json_c.c +0 -0
  1741. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/v3/fuzzer/Makefile +0 -0
  1742. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/v3/fuzzer/fuzz_gltf_v3.cc +0 -0
  1743. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/v3/fuzzer/fuzz_gltf_v3_c.c +0 -0
  1744. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/v3/security/negstride.gltf +0 -0
  1745. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/v3/security/oob_buffer_view.gltf +0 -0
  1746. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/v3/security/oob_extension_indices.gltf +0 -0
  1747. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tests/v3/security/traversal_relative.gltf +0 -0
  1748. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tiny_gltf_v3.c +0 -0
  1749. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tiny_gltf_v3.h +0 -0
  1750. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/tinygltf_json_c.h +0 -0
  1751. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/web/Makefile +0 -0
  1752. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/web/README.md +0 -0
  1753. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/web/gen_sample.py +0 -0
  1754. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/web/index.html +0 -0
  1755. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/web/loader.c +0 -0
  1756. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/web/main.js +0 -0
  1757. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/ext/tinygltf/web/style.css +0 -0
  1758. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/plugins/CMakeLists.txt +0 -0
  1759. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/plugins/debug/CMakeLists.txt +0 -0
  1760. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/plugins/debug/ReaderWriterDEBUG.cpp +0 -0
  1761. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/plugins/gltf/CMakeLists.txt +0 -0
  1762. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/plugins/gltf/ReaderWriterGLTF.cpp +0 -0
  1763. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/plugins/ktx2/CMakeLists.txt +0 -0
  1764. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/plugins/ktx2/KTX2.cpp +0 -0
  1765. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/plugins/ktx2/ReaderWriterKTX2.cpp +0 -0
  1766. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/pytest.ini +0 -0
  1767. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Array.cpp +0 -0
  1768. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/CameraIntents.cpp +0 -0
  1769. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/CaptureCubeMap.cpp +0 -0
  1770. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Cursor.cpp +0 -0
  1771. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Debug.cpp +0 -0
  1772. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/GBuffer.cpp +0 -0
  1773. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/GGXPrefilter.cpp +0 -0
  1774. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Gizmos.cpp +0 -0
  1775. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/GraphicsWindowEGL.cpp +0 -0
  1776. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/GraphicsWindowGBM.cpp +0 -0
  1777. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Grid.cpp +0 -0
  1778. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/LambertianBake.cpp +0 -0
  1779. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Linux.cpp +0 -0
  1780. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Manipulators.cpp +0 -0
  1781. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Picking.cpp +0 -0
  1782. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Shadow.cpp +0 -0
  1783. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/Shapes.cpp +0 -0
  1784. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Accessor.cpp +0 -0
  1785. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Accessor.hpp +0 -0
  1786. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Animation.cpp +0 -0
  1787. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Animation.hpp +0 -0
  1788. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/CMakeLists.txt +0 -0
  1789. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Log.hpp +0 -0
  1790. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Material.cpp +0 -0
  1791. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Material.hpp +0 -0
  1792. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Mesh.cpp +0 -0
  1793. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Mesh.hpp +0 -0
  1794. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Reader.cpp +0 -0
  1795. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/ReaderImpl.cpp +0 -0
  1796. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/ReaderImpl.hpp +0 -0
  1797. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Scene.cpp +0 -0
  1798. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Scene.hpp +0 -0
  1799. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Skin.cpp +0 -0
  1800. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Skin.hpp +0 -0
  1801. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/Texture.hpp +0 -0
  1802. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/gltf/tg3_util.hpp +0 -0
  1803. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Array.hpp +0 -0
  1804. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Callbacks.hpp +0 -0
  1805. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/CameraIntents.hpp +0 -0
  1806. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/CaptureCubeMap.hpp +0 -0
  1807. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Cursor.hpp +0 -0
  1808. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Debug.hpp +0 -0
  1809. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/GBuffer.hpp +0 -0
  1810. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/GGXPrefilter.hpp +0 -0
  1811. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Gizmos.hpp +0 -0
  1812. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/GraphicsWindowEGL.hpp +0 -0
  1813. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/GraphicsWindowGBM.hpp +0 -0
  1814. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/IBL.hpp +0 -0
  1815. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/ImGui.hpp +0 -0
  1816. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/LambertianBake.hpp +0 -0
  1817. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Linux.hpp +0 -0
  1818. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Manipulators.hpp +0 -0
  1819. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Picking.hpp +0 -0
  1820. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Shader.hpp +0 -0
  1821. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Shapes.hpp +0 -0
  1822. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Version.hpp.in +0 -0
  1823. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Visitors.hpp +0 -0
  1824. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/Warnings.hpp +0 -0
  1825. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/gltf/Reader.hpp +0 -0
  1826. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/gltf/Shader.hpp +0 -0
  1827. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/gltf/SimplePlayer.hpp +0 -0
  1828. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/src/osgx/ktx2/KTX2.hpp +0 -0
  1829. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/test/__init__.py +0 -0
  1830. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/test/conftest.py +0 -0
  1831. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/test/osgx_Callbacks.py +0 -0
  1832. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/test/osgx_LightSet.py +0 -0
  1833. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/test/osgx_Material.py +0 -0
  1834. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/test/osgx_Picking.py +0 -0
  1835. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/test/osgx_Shapes.py +0 -0
  1836. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/utils/osgx-cubemap.cpp +0 -0
  1837. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/utils/osgx-describe.cpp +0 -0
  1838. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/utils/osgx-drawables.cpp +0 -0
  1839. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/utils/osgx-gltf-viewer.cpp +0 -0
  1840. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/osgx/utils/osgx-gltf.py +0 -0
  1841. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.appveyor.yml +0 -0
  1842. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.clang-format +0 -0
  1843. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.clang-tidy +0 -0
  1844. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.cmake-format.yaml +0 -0
  1845. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.codespell-ignore-lines +0 -0
  1846. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.gitattributes +0 -0
  1847. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/CODEOWNERS +0 -0
  1848. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/CONTRIBUTING.md +0 -0
  1849. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
  1850. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/ISSUE_TEMPLATE/config.yml +0 -0
  1851. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/dependabot.yml +0 -0
  1852. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/labeler.yml +0 -0
  1853. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/labeler_merged.yml +0 -0
  1854. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/matchers/pylint.json +0 -0
  1855. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/pull_request_template.md +0 -0
  1856. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/ci.yml +0 -0
  1857. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/configure.yml +0 -0
  1858. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/docs-link.yml +0 -0
  1859. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/format.yml +0 -0
  1860. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/labeler.yml +0 -0
  1861. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/nightlies.yml +0 -0
  1862. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/pip.yml +0 -0
  1863. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/reusable-standard.yml +0 -0
  1864. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/tests-cibw.yml +0 -0
  1865. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.github/workflows/upstream.yml +0 -0
  1866. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.gitignore +0 -0
  1867. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.pre-commit-config.yaml +0 -0
  1868. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/.readthedocs.yml +0 -0
  1869. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/CMakeLists.txt +0 -0
  1870. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/CMakePresets.json +0 -0
  1871. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/LICENSE +0 -0
  1872. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/README.rst +0 -0
  1873. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/SECURITY.md +0 -0
  1874. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/Doxyfile +0 -0
  1875. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/_static/css/custom.css +0 -0
  1876. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/cast/chrono.rst +0 -0
  1877. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/cast/custom.rst +0 -0
  1878. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/cast/eigen.rst +0 -0
  1879. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/cast/functional.rst +0 -0
  1880. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/cast/index.rst +0 -0
  1881. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/cast/overview.rst +0 -0
  1882. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/cast/stl.rst +0 -0
  1883. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/cast/strings.rst +0 -0
  1884. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/classes.rst +0 -0
  1885. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/deadlock.md +0 -0
  1886. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/deprecated.rst +0 -0
  1887. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/embedding.rst +0 -0
  1888. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/exceptions.rst +0 -0
  1889. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/functions.rst +0 -0
  1890. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/misc.rst +0 -0
  1891. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/pycpp/index.rst +0 -0
  1892. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/pycpp/numpy.rst +0 -0
  1893. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/pycpp/object.rst +0 -0
  1894. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/pycpp/utilities.rst +0 -0
  1895. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/advanced/smart_ptrs.rst +0 -0
  1896. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/basics.rst +0 -0
  1897. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/benchmark.py +0 -0
  1898. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/benchmark.rst +0 -0
  1899. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/changelog.md +0 -0
  1900. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/classes.rst +0 -0
  1901. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/cmake/index.rst +0 -0
  1902. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/compiling.rst +0 -0
  1903. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/conf.py +0 -0
  1904. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/faq.rst +0 -0
  1905. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/index.rst +0 -0
  1906. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/installing.rst +0 -0
  1907. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/limitations.rst +0 -0
  1908. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/pybind11-logo.png +0 -0
  1909. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
  1910. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/pybind11_vs_boost_python1.svg +0 -0
  1911. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
  1912. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/pybind11_vs_boost_python2.svg +0 -0
  1913. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/reference.rst +0 -0
  1914. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/release.rst +0 -0
  1915. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/requirements.in +0 -0
  1916. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/requirements.txt +0 -0
  1917. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/docs/upgrade.rst +0 -0
  1918. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/attr.h +0 -0
  1919. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/buffer_info.h +0 -0
  1920. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/cast.h +0 -0
  1921. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/chrono.h +0 -0
  1922. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/common.h +0 -0
  1923. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/complex.h +0 -0
  1924. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/conduit/README.txt +0 -0
  1925. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/conduit/pybind11_conduit_v1.h +0 -0
  1926. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h +0 -0
  1927. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/conduit/wrap_include_python_h.h +0 -0
  1928. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/critical_section.h +0 -0
  1929. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/argument_vector.h +0 -0
  1930. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/class.h +0 -0
  1931. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/common.h +0 -0
  1932. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/cpp_conduit.h +0 -0
  1933. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/descr.h +0 -0
  1934. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h +0 -0
  1935. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/exception_translation.h +0 -0
  1936. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/function_record_pyobject.h +0 -0
  1937. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/holder_caster_foreign_helpers.h +0 -0
  1938. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/init.h +0 -0
  1939. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/internals.h +0 -0
  1940. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/native_enum_data.h +0 -0
  1941. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/pybind11_namespace_macros.h +0 -0
  1942. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/struct_smart_holder.h +0 -0
  1943. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/type_caster_base.h +0 -0
  1944. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/typeid.h +0 -0
  1945. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/using_smart_holder.h +0 -0
  1946. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/detail/value_and_holder.h +0 -0
  1947. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/eigen/common.h +0 -0
  1948. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/eigen/matrix.h +0 -0
  1949. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/eigen/tensor.h +0 -0
  1950. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/eigen.h +0 -0
  1951. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/embed.h +0 -0
  1952. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/eval.h +0 -0
  1953. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/functional.h +0 -0
  1954. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/gil.h +0 -0
  1955. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/gil_safe_call_once.h +0 -0
  1956. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/gil_simple.h +0 -0
  1957. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/iostream.h +0 -0
  1958. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/native_enum.h +0 -0
  1959. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/numpy.h +0 -0
  1960. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/operators.h +0 -0
  1961. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/options.h +0 -0
  1962. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/pybind11.h +0 -0
  1963. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/pytypes.h +0 -0
  1964. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/stl/filesystem.h +0 -0
  1965. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/stl.h +0 -0
  1966. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/stl_bind.h +0 -0
  1967. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/subinterpreter.h +0 -0
  1968. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/trampoline_self_life_support.h +0 -0
  1969. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/type_caster_pyobject_ptr.h +0 -0
  1970. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/typing.h +0 -0
  1971. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/include/pybind11/warnings.h +0 -0
  1972. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/noxfile.py +0 -0
  1973. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/pybind11/__init__.py +0 -0
  1974. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/pybind11/__main__.py +0 -0
  1975. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/pybind11/_version.py +0 -0
  1976. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/pybind11/commands.py +0 -0
  1977. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/pybind11/py.typed +0 -0
  1978. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/pybind11/setup_helpers.py +0 -0
  1979. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/pyproject.toml +0 -0
  1980. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/CMakeLists.txt +0 -0
  1981. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/conftest.py +0 -0
  1982. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/constructor_stats.h +0 -0
  1983. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/cross_module_gil_utils.cpp +0 -0
  1984. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/cross_module_interleaved_error_already_set.cpp +0 -0
  1985. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/custom_exceptions.py +0 -0
  1986. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +0 -0
  1987. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/env.py +0 -0
  1988. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/exo_planet_c_api.cpp +0 -0
  1989. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/exo_planet_pybind11.cpp +0 -0
  1990. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/extra_python_package/pytest.ini +0 -0
  1991. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/extra_python_package/test_files.py +0 -0
  1992. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/extra_setuptools/pytest.ini +0 -0
  1993. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/extra_setuptools/test_setuphelper.py +0 -0
  1994. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/home_planet_very_lonely_traveler.cpp +0 -0
  1995. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/local_bindings.h +0 -0
  1996. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/mod_per_interpreter_gil.cpp +0 -0
  1997. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/mod_per_interpreter_gil_with_singleton.cpp +0 -0
  1998. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/mod_shared_interpreter_gil.cpp +0 -0
  1999. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/object.h +0 -0
  2000. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/pure_cpp/CMakeLists.txt +0 -0
  2001. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/pure_cpp/smart_holder_poc.h +0 -0
  2002. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/pure_cpp/smart_holder_poc_test.cpp +0 -0
  2003. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/pybind11_cross_module_tests.cpp +0 -0
  2004. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/pybind11_tests.cpp +0 -0
  2005. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/pybind11_tests.h +0 -0
  2006. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/pyproject.toml +0 -0
  2007. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/pytest.ini +0 -0
  2008. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/requirements.txt +0 -0
  2009. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/standalone_enum_module.cpp +0 -0
  2010. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_async.cpp +0 -0
  2011. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_async.py +0 -0
  2012. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_buffers.cpp +0 -0
  2013. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_buffers.py +0 -0
  2014. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_builtin_casters.cpp +0 -0
  2015. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_builtin_casters.py +0 -0
  2016. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_call_policies.cpp +0 -0
  2017. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_call_policies.py +0 -0
  2018. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_callbacks.cpp +0 -0
  2019. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_callbacks.py +0 -0
  2020. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_chrono.cpp +0 -0
  2021. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_chrono.py +0 -0
  2022. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class.cpp +0 -0
  2023. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class.py +0 -0
  2024. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_cross_module_use_after_one_module_dealloc.cpp +0 -0
  2025. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_cross_module_use_after_one_module_dealloc.py +0 -0
  2026. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_release_gil_before_calling_cpp_dtor.cpp +0 -0
  2027. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_release_gil_before_calling_cpp_dtor.py +0 -0
  2028. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_basic.cpp +0 -0
  2029. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_basic.py +0 -0
  2030. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_disowning.cpp +0 -0
  2031. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_disowning.py +0 -0
  2032. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_disowning_mi.cpp +0 -0
  2033. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_disowning_mi.py +0 -0
  2034. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_factory_constructors.cpp +0 -0
  2035. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_factory_constructors.py +0 -0
  2036. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_inheritance.cpp +0 -0
  2037. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_inheritance.py +0 -0
  2038. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_mi_thunks.cpp +0 -0
  2039. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_mi_thunks.py +0 -0
  2040. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_property.cpp +0 -0
  2041. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_property.py +0 -0
  2042. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_property_non_owning.cpp +0 -0
  2043. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_property_non_owning.py +0 -0
  2044. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_shared_ptr_copy_move.cpp +0 -0
  2045. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_shared_ptr_copy_move.py +0 -0
  2046. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_basic.cpp +0 -0
  2047. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_basic.py +0 -0
  2048. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_self_life_support.cpp +0 -0
  2049. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_self_life_support.py +0 -0
  2050. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_shared_from_this.cpp +0 -0
  2051. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_shared_from_this.py +0 -0
  2052. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_shared_ptr_cpp_arg.cpp +0 -0
  2053. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_shared_ptr_cpp_arg.py +0 -0
  2054. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_unique_ptr.cpp +0 -0
  2055. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_trampoline_unique_ptr.py +0 -0
  2056. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_unique_ptr_custom_deleter.cpp +0 -0
  2057. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_unique_ptr_custom_deleter.py +0 -0
  2058. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_unique_ptr_member.cpp +0 -0
  2059. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_unique_ptr_member.py +0 -0
  2060. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_virtual_py_cpp_mix.cpp +0 -0
  2061. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_class_sh_virtual_py_cpp_mix.py +0 -0
  2062. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/CMakeLists.txt +0 -0
  2063. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/embed.cpp +0 -0
  2064. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +0 -0
  2065. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +0 -0
  2066. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +0 -0
  2067. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/main.cpp +0 -0
  2068. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +0 -0
  2069. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +0 -0
  2070. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +0 -0
  2071. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cmake_build/test.py +0 -0
  2072. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_const_name.cpp +0 -0
  2073. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_const_name.py +0 -0
  2074. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_constants_and_functions.cpp +0 -0
  2075. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_constants_and_functions.py +0 -0
  2076. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_copy_move.cpp +0 -0
  2077. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_copy_move.py +0 -0
  2078. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cpp_conduit.cpp +0 -0
  2079. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cpp_conduit.py +0 -0
  2080. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cpp_conduit_traveler_bindings.h +0 -0
  2081. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cpp_conduit_traveler_types.h +0 -0
  2082. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cross_module_rtti/CMakeLists.txt +0 -0
  2083. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cross_module_rtti/bindings.cpp +0 -0
  2084. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cross_module_rtti/catch.cpp +0 -0
  2085. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cross_module_rtti/lib.cpp +0 -0
  2086. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cross_module_rtti/lib.h +0 -0
  2087. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_cross_module_rtti/test_cross_module_rtti.cpp +0 -0
  2088. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_custom_type_casters.cpp +0 -0
  2089. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_custom_type_casters.py +0 -0
  2090. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_custom_type_setup.cpp +0 -0
  2091. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_custom_type_setup.py +0 -0
  2092. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_docs_advanced_cast_custom.cpp +0 -0
  2093. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_docs_advanced_cast_custom.py +0 -0
  2094. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_docstring_options.cpp +0 -0
  2095. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_docstring_options.py +0 -0
  2096. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_eigen_matrix.cpp +0 -0
  2097. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_eigen_matrix.py +0 -0
  2098. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_eigen_tensor.cpp +0 -0
  2099. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_eigen_tensor.inl +0 -0
  2100. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_eigen_tensor.py +0 -0
  2101. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_enum.cpp +0 -0
  2102. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_enum.py +0 -0
  2103. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_eval.cpp +0 -0
  2104. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_eval.py +0 -0
  2105. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_eval_call.py +0 -0
  2106. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_exceptions.cpp +0 -0
  2107. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_exceptions.h +0 -0
  2108. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_exceptions.py +0 -0
  2109. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_factory_constructors.cpp +0 -0
  2110. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_factory_constructors.py +0 -0
  2111. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_gil_scoped.cpp +0 -0
  2112. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_gil_scoped.py +0 -0
  2113. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_iostream.cpp +0 -0
  2114. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_iostream.py +0 -0
  2115. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_kwargs_and_defaults.cpp +0 -0
  2116. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_kwargs_and_defaults.py +0 -0
  2117. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_local_bindings.cpp +0 -0
  2118. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_local_bindings.py +0 -0
  2119. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_methods_and_attributes.cpp +0 -0
  2120. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_methods_and_attributes.py +0 -0
  2121. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_modules.cpp +0 -0
  2122. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_modules.py +0 -0
  2123. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_multiple_inheritance.cpp +0 -0
  2124. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_multiple_inheritance.py +0 -0
  2125. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_multiple_interpreters.py +0 -0
  2126. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_native_enum.cpp +0 -0
  2127. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_native_enum.py +0 -0
  2128. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_numpy_array.cpp +0 -0
  2129. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_numpy_array.py +0 -0
  2130. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_numpy_dtypes.cpp +0 -0
  2131. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_numpy_dtypes.py +0 -0
  2132. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_numpy_scalars.cpp +0 -0
  2133. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_numpy_scalars.py +0 -0
  2134. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_numpy_vectorize.cpp +0 -0
  2135. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_numpy_vectorize.py +0 -0
  2136. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_opaque_types.cpp +0 -0
  2137. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_opaque_types.py +0 -0
  2138. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_operator_overloading.cpp +0 -0
  2139. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_operator_overloading.py +0 -0
  2140. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_pickling.cpp +0 -0
  2141. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_pickling.py +0 -0
  2142. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_potentially_slicing_weak_ptr.cpp +0 -0
  2143. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_potentially_slicing_weak_ptr.py +0 -0
  2144. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_python_multiple_inheritance.cpp +0 -0
  2145. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_python_multiple_inheritance.py +0 -0
  2146. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_pytypes.cpp +0 -0
  2147. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_pytypes.py +0 -0
  2148. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_scoped_critical_section.cpp +0 -0
  2149. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_scoped_critical_section.py +0 -0
  2150. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_sequences_and_iterators.cpp +0 -0
  2151. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_sequences_and_iterators.py +0 -0
  2152. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_smart_ptr.cpp +0 -0
  2153. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_smart_ptr.py +0 -0
  2154. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_standalone_enum_module.py +0 -0
  2155. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_stl.cpp +0 -0
  2156. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_stl.py +0 -0
  2157. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_stl_binders.cpp +0 -0
  2158. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_stl_binders.py +0 -0
  2159. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_tagbased_polymorphic.cpp +0 -0
  2160. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_tagbased_polymorphic.py +0 -0
  2161. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_thread.cpp +0 -0
  2162. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_thread.py +0 -0
  2163. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_type_caster_pyobject_ptr.cpp +0 -0
  2164. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_type_caster_pyobject_ptr.py +0 -0
  2165. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_type_caster_std_function_specializations.cpp +0 -0
  2166. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_type_caster_std_function_specializations.py +0 -0
  2167. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_union.cpp +0 -0
  2168. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_union.py +0 -0
  2169. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_unnamed_namespace_a.cpp +0 -0
  2170. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_unnamed_namespace_a.py +0 -0
  2171. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_unnamed_namespace_b.cpp +0 -0
  2172. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_unnamed_namespace_b.py +0 -0
  2173. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_vector_unique_ptr_member.cpp +0 -0
  2174. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_vector_unique_ptr_member.py +0 -0
  2175. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_virtual_functions.cpp +0 -0
  2176. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_virtual_functions.py +0 -0
  2177. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_warnings.cpp +0 -0
  2178. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_warnings.py +0 -0
  2179. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/CMakeLists.txt +0 -0
  2180. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/catch.cpp +0 -0
  2181. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/catch_skip.h +0 -0
  2182. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/external_module.cpp +0 -0
  2183. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/test_args_convert_vector.cpp +0 -0
  2184. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/test_argument_vector.cpp +0 -0
  2185. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/test_interpreter.cpp +0 -0
  2186. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/test_interpreter.py +0 -0
  2187. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/test_subinterpreter.cpp +0 -0
  2188. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/test_with_catch/test_trampoline.py +0 -0
  2189. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/valgrind-numpy-scipy.supp +0 -0
  2190. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tests/valgrind-python.supp +0 -0
  2191. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/FindCatch.cmake +0 -0
  2192. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/FindEigen3.cmake +0 -0
  2193. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/FindPythonLibsNew.cmake +0 -0
  2194. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/JoinPaths.cmake +0 -0
  2195. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/check-style.sh +0 -0
  2196. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/cmake_uninstall.cmake.in +0 -0
  2197. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/codespell_ignore_lines_from_errors.py +0 -0
  2198. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/libsize.py +0 -0
  2199. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/make_changelog.py +0 -0
  2200. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/make_global.py +0 -0
  2201. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/pybind11.pc.in +0 -0
  2202. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/pybind11Common.cmake +0 -0
  2203. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/pybind11Config.cmake.in +0 -0
  2204. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +0 -0
  2205. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/pybind11NewTools.cmake +0 -0
  2206. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/pybind11Tools.cmake +0 -0
  2207. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +0 -0
  2208. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pybind11x-osg.hpp +0 -0
  2209. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/pyside6-basic.py +0 -0
  2210. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/scripts/build-manylinux-wheel.sh +0 -0
  2211. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/scripts/compact-wheel-libraries.py +0 -0
  2212. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/scripts/msvc-wine-bootstrap.sh +0 -0
  2213. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/scripts/msvc-wine-wheel.sh +0 -0
  2214. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/scripts/msvc-wine.sh +0 -0
  2215. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/etc/scripts/repair-windows-wheel.py +0 -0
  2216. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-async-gltf.py +0 -0
  2217. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-async.py +0 -0
  2218. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-blur.py +0 -0
  2219. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-cuda-points.py +0 -0
  2220. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-explosion.py +0 -0
  2221. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-flame.py +0 -0
  2222. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-hatch.py +0 -0
  2223. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-hover.py +0 -0
  2224. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-info.py +0 -0
  2225. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-instanced-ssbo.py +0 -0
  2226. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-instanced.py +0 -0
  2227. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-linux.py +0 -0
  2228. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-match4.py +0 -0
  2229. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-picking.py +0 -0
  2230. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-points.py +0 -0
  2231. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-polyhaven.py +0 -0
  2232. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-rtt.py +0 -0
  2233. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg-voxelize2d.py +0 -0
  2234. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg_dice.py +0 -0
  2235. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg_repl.py +0 -0
  2236. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/examples/pyosg_visitor.py +0 -0
  2237. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/logo.png +0 -0
  2238. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/OpenSceneGraph-python.cpp +0 -0
  2239. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/ArgumentParser.cpp +0 -0
  2240. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/ArgumentParser.hpp +0 -0
  2241. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Array.cpp +0 -0
  2242. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Array.hpp +0 -0
  2243. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Bound.cpp +0 -0
  2244. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Bound.hpp +0 -0
  2245. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Buffer.cpp +0 -0
  2246. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Buffer.hpp +0 -0
  2247. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Camera.cpp +0 -0
  2248. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Camera.hpp +0 -0
  2249. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Drawable.cpp +0 -0
  2250. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Drawable.hpp +0 -0
  2251. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Geode.cpp +0 -0
  2252. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Geode.hpp +0 -0
  2253. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Geometry.cpp +0 -0
  2254. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Geometry.hpp +0 -0
  2255. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/GraphicsContext.cpp +0 -0
  2256. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Group.cpp +0 -0
  2257. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Group.hpp +0 -0
  2258. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Image.cpp +0 -0
  2259. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Image.hpp +0 -0
  2260. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Matrix.cpp +0 -0
  2261. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Matrix.hpp +0 -0
  2262. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Node.cpp +0 -0
  2263. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Node.hpp +0 -0
  2264. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/NodeCallback.cpp +0 -0
  2265. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/NodeCallback.hpp +0 -0
  2266. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/NodeVisitor.cpp +0 -0
  2267. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/NodeVisitor.hpp +0 -0
  2268. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Notify.cpp +0 -0
  2269. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Notify.hpp +0 -0
  2270. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Object.cpp +0 -0
  2271. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Object.hpp +0 -0
  2272. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Operation.cpp +0 -0
  2273. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Operation.hpp +0 -0
  2274. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Program.cpp +0 -0
  2275. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Program.hpp +0 -0
  2276. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Quat.cpp +0 -0
  2277. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Shader.cpp +0 -0
  2278. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Shape.cpp +0 -0
  2279. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/State.cpp +0 -0
  2280. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/State.hpp +0 -0
  2281. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/StateAttributes.cpp +0 -0
  2282. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Texture.cpp +0 -0
  2283. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Texture.hpp +0 -0
  2284. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Uniform.cpp +0 -0
  2285. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Uniform.hpp +0 -0
  2286. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Vec.cpp +0 -0
  2287. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/Vec.hpp +0 -0
  2288. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/View.cpp +0 -0
  2289. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/callable.hpp +0 -0
  2290. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osg/lifetime-probe.hpp +0 -0
  2291. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/osgEarth-python.cpp +0 -0
  2292. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosg.cpp +0 -0
  2293. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosgAnimation.cpp +0 -0
  2294. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosgAnimation.hpp +0 -0
  2295. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosgDB.hpp +0 -0
  2296. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosgGA.hpp +0 -0
  2297. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosgUtil.cpp +0 -0
  2298. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosgUtil.hpp +0 -0
  2299. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosgViewer.cpp +0 -0
  2300. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyosg/pyosgViewer.hpp +0 -0
  2301. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pyproject.toml +0 -0
  2302. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/pytest.ini +0 -0
  2303. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/python/OpenSceneGraph/__init__.py +0 -0
  2304. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/python/OpenSceneGraph/examples/__init__.py +0 -0
  2305. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/python/osgx.py +0 -0
  2306. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/__init__.py +0 -0
  2307. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/conftest.py +0 -0
  2308. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osgAnimation_Motion.py +0 -0
  2309. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osgDB.py +0 -0
  2310. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osgGA_CameraManipulator.py +0 -0
  2311. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osgViewer_View.py +0 -0
  2312. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Array.py +0 -0
  2313. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Callback.py +0 -0
  2314. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Camera.py +0 -0
  2315. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Drawable.py +0 -0
  2316. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Geode.py +0 -0
  2317. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Geometry.py +0 -0
  2318. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Image.py +0 -0
  2319. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Matrix.py +0 -0
  2320. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Misc.py +0 -0
  2321. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Node.py +0 -0
  2322. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_NodeVisitor.py +0 -0
  2323. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Notify.py +0 -0
  2324. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Object.py +0 -0
  2325. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Program.py +0 -0
  2326. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Quat.py +0 -0
  2327. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Shape.py +0 -0
  2328. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_State.py +0 -0
  2329. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_StateSet.py +0 -0
  2330. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Texture.py +0 -0
  2331. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Transform.py +0 -0
  2332. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Uniform.py +0 -0
  2333. {openscenegraph-0.1.1 → openscenegraph-0.1.2}/test/osg_Vec.py +0 -0
  2334. {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