tinyvdb 0.1.0__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 (1702) hide show
  1. tinyvdb-0.1.0/.clang-format +7 -0
  2. tinyvdb-0.1.0/.github/workflows/ci.yml +104 -0
  3. tinyvdb-0.1.0/.github/workflows/wheels.yml +97 -0
  4. tinyvdb-0.1.0/.gitignore +36 -0
  5. tinyvdb-0.1.0/.gitmodules +6 -0
  6. tinyvdb-0.1.0/CMakeLists.txt +114 -0
  7. tinyvdb-0.1.0/LICENSE +201 -0
  8. tinyvdb-0.1.0/Makefile +19 -0
  9. tinyvdb-0.1.0/PKG-INFO +296 -0
  10. tinyvdb-0.1.0/README.md +281 -0
  11. tinyvdb-0.1.0/cmake/ClangClCMakeCompileRules.cmake +9 -0
  12. tinyvdb-0.1.0/cmake/aarch64-linux-gnu.toolchain +14 -0
  13. tinyvdb-0.1.0/cmake/clang-cl-msvc-windows.cmake +329 -0
  14. tinyvdb-0.1.0/cmake/clang-cl-msvc-wsl.cmake +331 -0
  15. tinyvdb-0.1.0/cmake/ios.toolchain.cmake +105 -0
  16. tinyvdb-0.1.0/cmake/llvm-mingw-cross.cmake +24 -0
  17. tinyvdb-0.1.0/cmake/llvm-mingw-win64.cmake +20 -0
  18. tinyvdb-0.1.0/cmake/mingw64-cross.cmake +20 -0
  19. tinyvdb-0.1.0/cmake/sanitizers/FindASan.cmake +59 -0
  20. tinyvdb-0.1.0/cmake/sanitizers/FindMSan.cmake +57 -0
  21. tinyvdb-0.1.0/cmake/sanitizers/FindSanitizers.cmake +94 -0
  22. tinyvdb-0.1.0/cmake/sanitizers/FindTSan.cmake +65 -0
  23. tinyvdb-0.1.0/cmake/sanitizers/FindUBSan.cmake +46 -0
  24. tinyvdb-0.1.0/cmake/sanitizers/asan-wrapper +55 -0
  25. tinyvdb-0.1.0/cmake/sanitizers/sanitize-helpers.cmake +177 -0
  26. tinyvdb-0.1.0/deps/zstd.c +49058 -0
  27. tinyvdb-0.1.0/deps/zstd.h +3198 -0
  28. tinyvdb-0.1.0/deps/zstd_errors.h +107 -0
  29. tinyvdb-0.1.0/doc/NOTE.md +89 -0
  30. tinyvdb-0.1.0/doc/fileformat.md +59 -0
  31. tinyvdb-0.1.0/examples/common/LICENSE.clipp +20 -0
  32. tinyvdb-0.1.0/examples/common/clipp.h +7024 -0
  33. tinyvdb-0.1.0/examples/common/cmake/FindASan.cmake +59 -0
  34. tinyvdb-0.1.0/examples/common/cmake/FindGLFW.cmake +258 -0
  35. tinyvdb-0.1.0/examples/common/cmake/FindMSan.cmake +57 -0
  36. tinyvdb-0.1.0/examples/common/cmake/FindSanitizers.cmake +87 -0
  37. tinyvdb-0.1.0/examples/common/cmake/FindTSan.cmake +64 -0
  38. tinyvdb-0.1.0/examples/common/cmake/FindUBSan.cmake +46 -0
  39. tinyvdb-0.1.0/examples/common/cmake/FindWayland.cmake +66 -0
  40. tinyvdb-0.1.0/examples/common/cmake/FindXCB.cmake +51 -0
  41. tinyvdb-0.1.0/examples/common/cmake/asan-wrapper +55 -0
  42. tinyvdb-0.1.0/examples/common/cmake/cotire.cmake +4190 -0
  43. tinyvdb-0.1.0/examples/common/cmake/mingw64-cross.cmake +13 -0
  44. tinyvdb-0.1.0/examples/common/cmake/sanitize-helpers.cmake +170 -0
  45. tinyvdb-0.1.0/examples/common/glad/include/KHR/khrplatform.h +290 -0
  46. tinyvdb-0.1.0/examples/common/glad/include/glad/glad.h +17175 -0
  47. tinyvdb-0.1.0/examples/common/glad/src/glad.c +9975 -0
  48. tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/GenerateMappings.cmake +33 -0
  49. tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/MacOSXBundleInfo.plist.in +38 -0
  50. tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/i686-w64-mingw32-clang.cmake +13 -0
  51. tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/i686-w64-mingw32.cmake +13 -0
  52. tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/modules/FindEpollShim.cmake +17 -0
  53. tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/modules/FindOSMesa.cmake +18 -0
  54. tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/modules/FindWaylandProtocols.cmake +26 -0
  55. tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/modules/FindXKBCommon.cmake +34 -0
  56. tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/x86_64-w64-mingw32-clang.cmake +13 -0
  57. tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/x86_64-w64-mingw32.cmake +13 -0
  58. tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMakeLists.txt +374 -0
  59. tinyvdb-0.1.0/examples/common/glfw-3.3.1/LICENSE.md +23 -0
  60. tinyvdb-0.1.0/examples/common/glfw-3.3.1/README.md +364 -0
  61. tinyvdb-0.1.0/examples/common/glfw-3.3.1/cmake_uninstall.cmake.in +29 -0
  62. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/getopt.c +230 -0
  63. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/getopt.h +57 -0
  64. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/glad/gl.h +3840 -0
  65. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/glad/khrplatform.h +282 -0
  66. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/glad/vk_platform.h +92 -0
  67. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/glad/vulkan.h +3480 -0
  68. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/glad_gl.c +1791 -0
  69. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/glad_vulkan.c +593 -0
  70. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/linmath.h +574 -0
  71. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/mingw/_mingw_dxhelper.h +117 -0
  72. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/mingw/dinput.h +2467 -0
  73. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/mingw/xinput.h +239 -0
  74. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/nuklear.h +25539 -0
  75. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/nuklear_glfw_gl2.h +381 -0
  76. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/stb_image_write.h +1048 -0
  77. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/tinycthread.c +594 -0
  78. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/tinycthread.h +443 -0
  79. tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/vs2008/stdint.h +247 -0
  80. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/CMakeLists.txt +32 -0
  81. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/CODEOWNERS +10 -0
  82. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/CONTRIBUTING.md +391 -0
  83. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/Doxyfile.in +1848 -0
  84. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/DoxygenLayout.xml +71 -0
  85. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/SUPPORT.md +14 -0
  86. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/build.dox +386 -0
  87. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/compat.dox +285 -0
  88. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/compile.dox +290 -0
  89. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/context.dox +346 -0
  90. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/extra.css +1 -0
  91. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/extra.less +414 -0
  92. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/footer.html +7 -0
  93. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/header.html +33 -0
  94. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/bc_s.png +0 -0
  95. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/bdwn.png +0 -0
  96. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/bug.html +78 -0
  97. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/build_8dox.html +73 -0
  98. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/build_guide.html +205 -0
  99. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/closed.png +0 -0
  100. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/compat_8dox.html +73 -0
  101. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/compat_guide.html +144 -0
  102. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/compile_8dox.html +73 -0
  103. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/compile_guide.html +197 -0
  104. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/context_8dox.html +73 -0
  105. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/context_guide.html +250 -0
  106. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/deprecated.html +80 -0
  107. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/dir_5dcdc111a8cc46b7ba079b758fca78dc.html +77 -0
  108. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/dir_8e024bada8281d1e35d4f557736ec981.html +87 -0
  109. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/dir_c41baed9597671ff1a15b37f0402add0.html +83 -0
  110. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/dir_cadcc4232541fc0fdfafe7052b4d94e2.html +85 -0
  111. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/doc.png +0 -0
  112. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/doxygen.css +1766 -0
  113. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/doxygen.png +0 -0
  114. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/dynsections.js +120 -0
  115. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/extra.css +1 -0
  116. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/files.html +79 -0
  117. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/folderclosed.png +0 -0
  118. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/folderopen.png +0 -0
  119. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/glfw3_8h.html +1602 -0
  120. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/glfw3_8h_source.html +1206 -0
  121. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/glfw3native_8h.html +159 -0
  122. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/glfw3native_8h_source.html +272 -0
  123. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__buttons.html +274 -0
  124. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__context.html +294 -0
  125. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__errors.html +296 -0
  126. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__gamepad__axes.html +194 -0
  127. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__gamepad__buttons.html +402 -0
  128. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__hat__state.html +226 -0
  129. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__init.html +541 -0
  130. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__input.html +2226 -0
  131. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__joysticks.html +354 -0
  132. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__keys.html +2042 -0
  133. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__mods.html +190 -0
  134. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__monitor.html +840 -0
  135. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__native.html +770 -0
  136. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__shapes.html +190 -0
  137. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__vulkan.html +353 -0
  138. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__window.html +3424 -0
  139. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/index.html +91 -0
  140. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/input_8dox.html +73 -0
  141. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/input_guide.html +558 -0
  142. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/internal_8dox.html +73 -0
  143. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/internals_guide.html +124 -0
  144. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/intro_8dox.html +73 -0
  145. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/intro_guide.html +328 -0
  146. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/jquery.js +35 -0
  147. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/main_8dox.html +73 -0
  148. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/menu.js +50 -0
  149. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/menudata.js +28 -0
  150. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/modules.html +93 -0
  151. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/monitor_8dox.html +73 -0
  152. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/monitor_guide.html +221 -0
  153. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/moving_8dox.html +73 -0
  154. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/moving_guide.html +366 -0
  155. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/nav_f.png +0 -0
  156. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/nav_g.png +0 -0
  157. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/nav_h.png +0 -0
  158. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/news.html +601 -0
  159. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/news_8dox.html +73 -0
  160. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/open.png +0 -0
  161. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/pages.html +92 -0
  162. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/quick_8dox.html +73 -0
  163. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/quick_guide.html +386 -0
  164. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_0.html +30 -0
  165. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_0.js +4 -0
  166. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_1.html +30 -0
  167. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_1.js +9 -0
  168. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_10.html +30 -0
  169. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_10.js +6 -0
  170. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_11.html +30 -0
  171. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_11.js +7 -0
  172. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_2.html +30 -0
  173. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_2.js +9 -0
  174. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_3.html +30 -0
  175. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_3.js +4 -0
  176. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_4.html +30 -0
  177. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_4.js +4 -0
  178. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_5.html +30 -0
  179. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_5.js +476 -0
  180. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_6.html +30 -0
  181. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_6.js +4 -0
  182. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_7.html +30 -0
  183. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_7.js +11 -0
  184. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_8.html +30 -0
  185. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_8.js +5 -0
  186. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_9.html +30 -0
  187. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_9.js +4 -0
  188. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_a.html +30 -0
  189. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_a.js +11 -0
  190. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_b.html +30 -0
  191. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_b.js +6 -0
  192. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_c.html +30 -0
  193. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_c.js +4 -0
  194. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_d.html +30 -0
  195. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_d.js +4 -0
  196. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_e.html +30 -0
  197. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_e.js +7 -0
  198. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_f.html +30 -0
  199. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_f.js +6 -0
  200. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/classes_0.html +30 -0
  201. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/classes_0.js +7 -0
  202. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/close.png +0 -0
  203. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/defines_0.html +30 -0
  204. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/defines_0.js +31 -0
  205. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_0.html +30 -0
  206. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_0.js +4 -0
  207. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_1.html +30 -0
  208. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_1.js +6 -0
  209. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_2.html +30 -0
  210. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_2.js +5 -0
  211. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_3.html +30 -0
  212. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_3.js +6 -0
  213. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_4.html +30 -0
  214. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_4.js +6 -0
  215. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_5.html +30 -0
  216. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_5.js +4 -0
  217. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_6.html +30 -0
  218. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_6.js +4 -0
  219. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_7.html +30 -0
  220. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_7.js +4 -0
  221. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_8.html +30 -0
  222. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_8.js +4 -0
  223. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/functions_0.html +30 -0
  224. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/functions_0.js +146 -0
  225. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_0.html +30 -0
  226. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_0.js +4 -0
  227. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_1.html +30 -0
  228. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_1.js +4 -0
  229. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_2.html +30 -0
  230. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_2.js +5 -0
  231. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_3.html +30 -0
  232. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_3.js +5 -0
  233. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_4.html +30 -0
  234. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_4.js +5 -0
  235. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_5.html +30 -0
  236. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_5.js +4 -0
  237. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_6.html +30 -0
  238. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_6.js +6 -0
  239. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_7.html +30 -0
  240. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_7.js +4 -0
  241. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_8.html +30 -0
  242. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_8.js +4 -0
  243. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_9.html +30 -0
  244. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_9.js +4 -0
  245. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_a.html +30 -0
  246. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_a.js +4 -0
  247. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/mag_sel.png +0 -0
  248. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/nomatches.html +12 -0
  249. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_0.html +30 -0
  250. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_0.js +5 -0
  251. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_1.html +30 -0
  252. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_1.js +5 -0
  253. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_2.html +30 -0
  254. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_2.js +4 -0
  255. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_3.html +30 -0
  256. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_3.js +4 -0
  257. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_4.html +30 -0
  258. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_4.js +6 -0
  259. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_5.html +30 -0
  260. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_5.js +5 -0
  261. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_6.html +30 -0
  262. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_6.js +4 -0
  263. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_7.html +30 -0
  264. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_7.js +4 -0
  265. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_8.html +30 -0
  266. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_8.js +4 -0
  267. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_9.html +30 -0
  268. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_9.js +4 -0
  269. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_a.html +30 -0
  270. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_a.js +4 -0
  271. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/search.css +271 -0
  272. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/search.js +814 -0
  273. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/search_l.png +0 -0
  274. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/search_m.png +0 -0
  275. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/search_r.png +0 -0
  276. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/searchdata.js +39 -0
  277. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/typedefs_0.html +30 -0
  278. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/typedefs_0.js +32 -0
  279. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_0.html +30 -0
  280. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_0.js +4 -0
  281. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_1.html +30 -0
  282. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_1.js +6 -0
  283. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_2.html +30 -0
  284. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_2.js +5 -0
  285. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_3.html +30 -0
  286. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_3.js +4 -0
  287. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_4.html +30 -0
  288. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_4.js +4 -0
  289. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_5.html +30 -0
  290. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_5.js +6 -0
  291. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_6.html +30 -0
  292. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_6.js +4 -0
  293. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_7.html +30 -0
  294. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_7.js +4 -0
  295. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/spaces.svg +877 -0
  296. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/splitbar.png +0 -0
  297. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/structGLFWgamepadstate.html +126 -0
  298. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/structGLFWgammaramp.html +162 -0
  299. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/structGLFWimage.html +143 -0
  300. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/structGLFWvidmode.html +196 -0
  301. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/sync_off.png +0 -0
  302. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/sync_on.png +0 -0
  303. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/tab_a.png +0 -0
  304. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/tab_b.png +0 -0
  305. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/tab_h.png +0 -0
  306. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/tab_s.png +0 -0
  307. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/tabs.css +1 -0
  308. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/vulkan_8dox.html +73 -0
  309. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/vulkan_guide.html +186 -0
  310. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/window_8dox.html +73 -0
  311. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/window_guide.html +751 -0
  312. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/input.dox +945 -0
  313. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/internal.dox +115 -0
  314. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/intro.dox +454 -0
  315. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/main.dox +46 -0
  316. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/monitor.dox +268 -0
  317. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/moving.dox +513 -0
  318. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/news.dox +856 -0
  319. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/quick.dox +362 -0
  320. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/spaces.svg +877 -0
  321. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/vulkan.dox +230 -0
  322. tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/window.dox +1434 -0
  323. tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/CMakeLists.txt +88 -0
  324. tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/boing.c +679 -0
  325. tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/gears.c +360 -0
  326. tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/glfw.icns +0 -0
  327. tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/glfw.ico +0 -0
  328. tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/glfw.rc +3 -0
  329. tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/heightmap.c +512 -0
  330. tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/offscreen.c +176 -0
  331. tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/particles.c +1073 -0
  332. tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/sharing.c +234 -0
  333. tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/simple.c +166 -0
  334. tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/splitview.c +546 -0
  335. tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/wave.c +462 -0
  336. tinyvdb-0.1.0/examples/common/glfw-3.3.1/include/GLFW/glfw3.h +5873 -0
  337. tinyvdb-0.1.0/examples/common/glfw-3.3.1/include/GLFW/glfw3native.h +525 -0
  338. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/CMakeLists.txt +184 -0
  339. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/cocoa_init.m +595 -0
  340. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/cocoa_joystick.h +50 -0
  341. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/cocoa_joystick.m +487 -0
  342. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/cocoa_monitor.m +612 -0
  343. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/cocoa_platform.h +199 -0
  344. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/cocoa_time.c +62 -0
  345. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/cocoa_window.m +1783 -0
  346. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/context.c +760 -0
  347. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/egl_context.c +789 -0
  348. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/egl_context.h +215 -0
  349. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/glfw3.pc.in +13 -0
  350. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/glfw3Config.cmake.in +1 -0
  351. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/glfw_config.h.in +60 -0
  352. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/glx_context.c +698 -0
  353. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/glx_context.h +181 -0
  354. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/init.c +340 -0
  355. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/input.c +1356 -0
  356. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/internal.h +776 -0
  357. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/linux_joystick.c +433 -0
  358. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/linux_joystick.h +62 -0
  359. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/mappings.h +476 -0
  360. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/mappings.h.in +73 -0
  361. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/monitor.c +544 -0
  362. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/nsgl_context.h +66 -0
  363. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/nsgl_context.m +376 -0
  364. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/null_init.c +52 -0
  365. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/null_joystick.c +44 -0
  366. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/null_joystick.h +31 -0
  367. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/null_monitor.c +77 -0
  368. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/null_platform.h +62 -0
  369. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/null_window.c +332 -0
  370. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/osmesa_context.c +372 -0
  371. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/osmesa_context.h +94 -0
  372. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/posix_thread.c +105 -0
  373. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/posix_thread.h +51 -0
  374. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/posix_time.c +87 -0
  375. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/posix_time.h +44 -0
  376. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/vulkan.c +328 -0
  377. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/wgl_context.c +796 -0
  378. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/wgl_context.h +164 -0
  379. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/win32_init.c +631 -0
  380. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/win32_joystick.c +755 -0
  381. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/win32_joystick.h +56 -0
  382. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/win32_monitor.c +535 -0
  383. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/win32_platform.h +458 -0
  384. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/win32_thread.c +99 -0
  385. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/win32_time.c +76 -0
  386. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/win32_window.c +2249 -0
  387. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/window.c +1101 -0
  388. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/wl_init.c +1324 -0
  389. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/wl_monitor.c +225 -0
  390. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/wl_platform.h +359 -0
  391. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/wl_window.c +1894 -0
  392. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/x11_init.c +1106 -0
  393. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/x11_monitor.c +604 -0
  394. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/x11_platform.h +450 -0
  395. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/x11_window.c +3164 -0
  396. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/xkb_unicode.c +942 -0
  397. tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/xkb_unicode.h +28 -0
  398. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/CMakeLists.txt +94 -0
  399. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/clipboard.c +145 -0
  400. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/cursor.c +493 -0
  401. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/empty.c +132 -0
  402. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/events.c +650 -0
  403. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/gamma.c +179 -0
  404. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/glfwinfo.c +920 -0
  405. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/icon.c +149 -0
  406. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/iconify.c +297 -0
  407. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/inputlag.c +308 -0
  408. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/joysticks.c +344 -0
  409. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/monitors.c +260 -0
  410. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/msaa.c +220 -0
  411. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/opacity.c +108 -0
  412. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/reopen.c +240 -0
  413. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/tearing.c +250 -0
  414. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/threads.c +152 -0
  415. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/timeout.c +98 -0
  416. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/title.c +72 -0
  417. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/triangle-vulkan.c +2229 -0
  418. tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/windows.c +174 -0
  419. tinyvdb-0.1.0/examples/common/imgui/IconsIonicons.h +742 -0
  420. tinyvdb-0.1.0/examples/common/imgui/LICENSE.roboto_mono_embed.md +3 -0
  421. tinyvdb-0.1.0/examples/common/imgui/imconfig.h +93 -0
  422. tinyvdb-0.1.0/examples/common/imgui/imgui.cpp +15253 -0
  423. tinyvdb-0.1.0/examples/common/imgui/imgui.h +2454 -0
  424. tinyvdb-0.1.0/examples/common/imgui/imgui_draw.cpp +3400 -0
  425. tinyvdb-0.1.0/examples/common/imgui/imgui_impl_glfw.cpp +804 -0
  426. tinyvdb-0.1.0/examples/common/imgui/imgui_impl_glfw.h +34 -0
  427. tinyvdb-0.1.0/examples/common/imgui/imgui_impl_opengl2.cpp +283 -0
  428. tinyvdb-0.1.0/examples/common/imgui/imgui_impl_opengl2.h +31 -0
  429. tinyvdb-0.1.0/examples/common/imgui/imgui_impl_opengl3.cpp +707 -0
  430. tinyvdb-0.1.0/examples/common/imgui/imgui_impl_opengl3.h +65 -0
  431. tinyvdb-0.1.0/examples/common/imgui/imgui_internal.h +2061 -0
  432. tinyvdb-0.1.0/examples/common/imgui/imgui_widgets.cpp +7740 -0
  433. tinyvdb-0.1.0/examples/common/imgui/imstb_rectpack.h +639 -0
  434. tinyvdb-0.1.0/examples/common/imgui/imstb_textedit.h +1417 -0
  435. tinyvdb-0.1.0/examples/common/imgui/imstb_truetype.h +4903 -0
  436. tinyvdb-0.1.0/examples/common/imgui/ionic_icons_license.mit.txt +21 -0
  437. tinyvdb-0.1.0/examples/common/imgui/ionicons_embed.inc.h +3111 -0
  438. tinyvdb-0.1.0/examples/common/imgui/roboto_mono_embed.inc.h +1676 -0
  439. tinyvdb-0.1.0/examples/common/trackball.cc +292 -0
  440. tinyvdb-0.1.0/examples/common/trackball.h +75 -0
  441. tinyvdb-0.1.0/examples/openvdb2nanovdb/CMakeLists.txt +98 -0
  442. tinyvdb-0.1.0/examples/openvdb2nanovdb/openvdb2nanovdb.cc +7 -0
  443. tinyvdb-0.1.0/examples/openvkl/README.md +3 -0
  444. tinyvdb-0.1.0/examples/vdb2vtk/LICENSE.SimpleVTK +21 -0
  445. tinyvdb-0.1.0/examples/vdb2vtk/Makefile +26 -0
  446. tinyvdb-0.1.0/examples/vdb2vtk/README.md +9 -0
  447. tinyvdb-0.1.0/examples/vdb2vtk/simple_vtk.hpp +1086 -0
  448. tinyvdb-0.1.0/examples/vdb2vtk/vdb2vtk.cc +89 -0
  449. tinyvdb-0.1.0/examples/vdbdump/CMakeLists.txt +8 -0
  450. tinyvdb-0.1.0/examples/vdbdump/vdbdump.cc +285 -0
  451. tinyvdb-0.1.0/examples/vdbrender/CMakeLists.txt +18 -0
  452. tinyvdb-0.1.0/examples/vdbrender/vdbrender.cc +679 -0
  453. tinyvdb-0.1.0/examples/viewer/CMakeLists.txt +127 -0
  454. tinyvdb-0.1.0/examples/viewer/README.md +26 -0
  455. tinyvdb-0.1.0/examples/viewer/main.cc +23 -0
  456. tinyvdb-0.1.0/examples/viewer/scripts/bootstrap-linux.sh +16 -0
  457. tinyvdb-0.1.0/lgtm.yaml +4 -0
  458. tinyvdb-0.1.0/nanovdb/CMakeLists.txt +273 -0
  459. tinyvdb-0.1.0/nanovdb/CNanoVDB.h +715 -0
  460. tinyvdb-0.1.0/nanovdb/NanoVDB.h +4781 -0
  461. tinyvdb-0.1.0/nanovdb/PNanoVDB.h +2502 -0
  462. tinyvdb-0.1.0/nanovdb/Readme.md +15 -0
  463. tinyvdb-0.1.0/nanovdb/cmd/CMakeLists.txt +48 -0
  464. tinyvdb-0.1.0/nanovdb/cmd/convert/nanovdb_convert.cc +311 -0
  465. tinyvdb-0.1.0/nanovdb/cmd/print/nanovdb_print.cc +324 -0
  466. tinyvdb-0.1.0/nanovdb/cmd/validate/nanovdb_validate.cc +156 -0
  467. tinyvdb-0.1.0/nanovdb/docs/CMakeLists.txt +33 -0
  468. tinyvdb-0.1.0/nanovdb/docs/codingstyle.txt +305 -0
  469. tinyvdb-0.1.0/nanovdb/docs/doxygen-config +2354 -0
  470. tinyvdb-0.1.0/nanovdb/examples/CMakeLists.txt +115 -0
  471. tinyvdb-0.1.0/nanovdb/examples/benchmark/BenchKernels_dense.cu +108 -0
  472. tinyvdb-0.1.0/nanovdb/examples/benchmark/BenchKernels_nano.cu +112 -0
  473. tinyvdb-0.1.0/nanovdb/examples/benchmark/Benchmark.cc +721 -0
  474. tinyvdb-0.1.0/nanovdb/examples/benchmark/Benchmark_dense.cc +127 -0
  475. tinyvdb-0.1.0/nanovdb/examples/benchmark/Benchmark_nano.cc +134 -0
  476. tinyvdb-0.1.0/nanovdb/examples/benchmark/CMakeLists.txt +74 -0
  477. tinyvdb-0.1.0/nanovdb/examples/benchmark/Camera.h +72 -0
  478. tinyvdb-0.1.0/nanovdb/examples/benchmark/DenseGrid.h +487 -0
  479. tinyvdb-0.1.0/nanovdb/examples/benchmark/Image.h +159 -0
  480. tinyvdb-0.1.0/nanovdb/examples/ex_bump_pool_buffer/bump_pool_buffer.cc +131 -0
  481. tinyvdb-0.1.0/nanovdb/examples/ex_collide_level_set/common.h +26 -0
  482. tinyvdb-0.1.0/nanovdb/examples/ex_collide_level_set/main.cc +54 -0
  483. tinyvdb-0.1.0/nanovdb/examples/ex_collide_level_set/nanovdb.cu +156 -0
  484. tinyvdb-0.1.0/nanovdb/examples/ex_collide_level_set/openvdb.cc +39 -0
  485. tinyvdb-0.1.0/nanovdb/examples/ex_make_custom_nanovdb/make_custom_nanovdb.cc +33 -0
  486. tinyvdb-0.1.0/nanovdb/examples/ex_make_funny_nanovdb/make_funny_nanovdb.cc +35 -0
  487. tinyvdb-0.1.0/nanovdb/examples/ex_make_nanovdb_sphere/make_nanovdb_sphere.cc +27 -0
  488. tinyvdb-0.1.0/nanovdb/examples/ex_make_typed_grids/make_typed_grids.cc +94 -0
  489. tinyvdb-0.1.0/nanovdb/examples/ex_map_pool_buffer/map_pool_buffer.cc +186 -0
  490. tinyvdb-0.1.0/nanovdb/examples/ex_modify_nanovdb_thrust/modify_nanovdb_thrust.cu +59 -0
  491. tinyvdb-0.1.0/nanovdb/examples/ex_openvdb_to_nanovdb/openvdb_to_nanovdb.cc +33 -0
  492. tinyvdb-0.1.0/nanovdb/examples/ex_openvdb_to_nanovdb_accessor/openvdb_to_nanovdb_accessor.cc +41 -0
  493. tinyvdb-0.1.0/nanovdb/examples/ex_openvdb_to_nanovdb_cuda/openvdb_to_nanovdb_cuda.cc +41 -0
  494. tinyvdb-0.1.0/nanovdb/examples/ex_openvdb_to_nanovdb_cuda/openvdb_to_nanovdb_cuda.cu +27 -0
  495. tinyvdb-0.1.0/nanovdb/examples/ex_raytrace_fog_volume/common.h +144 -0
  496. tinyvdb-0.1.0/nanovdb/examples/ex_raytrace_fog_volume/main.cc +52 -0
  497. tinyvdb-0.1.0/nanovdb/examples/ex_raytrace_fog_volume/nanovdb.cu +109 -0
  498. tinyvdb-0.1.0/nanovdb/examples/ex_raytrace_fog_volume/openvdb.cc +95 -0
  499. tinyvdb-0.1.0/nanovdb/examples/ex_raytrace_level_set/common.h +144 -0
  500. tinyvdb-0.1.0/nanovdb/examples/ex_raytrace_level_set/main.cc +52 -0
  501. tinyvdb-0.1.0/nanovdb/examples/ex_raytrace_level_set/nanovdb.cu +109 -0
  502. tinyvdb-0.1.0/nanovdb/examples/ex_raytrace_level_set/openvdb.cc +98 -0
  503. tinyvdb-0.1.0/nanovdb/examples/ex_read_nanovdb_sphere/read_nanovdb_sphere.cc +27 -0
  504. tinyvdb-0.1.0/nanovdb/examples/ex_read_nanovdb_sphere_accessor/read_nanovdb_sphere_accessor.cc +25 -0
  505. tinyvdb-0.1.0/nanovdb/examples/ex_read_nanovdb_sphere_accessor_cuda/read_nanovdb_sphere_accessor_cuda.cc +40 -0
  506. tinyvdb-0.1.0/nanovdb/examples/ex_read_nanovdb_sphere_accessor_cuda/read_nanovdb_sphere_accessor_cuda.cu +36 -0
  507. tinyvdb-0.1.0/nanovdb/examples/ex_util/ComputePrimitives.h +189 -0
  508. tinyvdb-0.1.0/nanovdb/examples/ex_util/CpuTimer.h +52 -0
  509. tinyvdb-0.1.0/nanovdb/examples/ex_vox_to_nanovdb/VoxToNanoVDB.h +199 -0
  510. tinyvdb-0.1.0/nanovdb/examples/ex_vox_to_nanovdb/vox_to_nanovdb.cc +31 -0
  511. tinyvdb-0.1.0/nanovdb/examples/ex_write_nanovdb_grids/write_nanovdb_grids.cc +34 -0
  512. tinyvdb-0.1.0/nanovdb/unittest/CMakeLists.txt +51 -0
  513. tinyvdb-0.1.0/nanovdb/unittest/TestNanoVDB.cc +5434 -0
  514. tinyvdb-0.1.0/nanovdb/unittest/TestOpenVDB.cc +2540 -0
  515. tinyvdb-0.1.0/nanovdb/unittest/pnanovdb_validate_strides.h +191 -0
  516. tinyvdb-0.1.0/nanovdb/util/CSampleFromVoxels.h +327 -0
  517. tinyvdb-0.1.0/nanovdb/util/CudaDeviceBuffer.h +201 -0
  518. tinyvdb-0.1.0/nanovdb/util/DitherLUT.h +185 -0
  519. tinyvdb-0.1.0/nanovdb/util/ForEach.h +88 -0
  520. tinyvdb-0.1.0/nanovdb/util/GridBuilder.h +1744 -0
  521. tinyvdb-0.1.0/nanovdb/util/GridChecksum.h +281 -0
  522. tinyvdb-0.1.0/nanovdb/util/GridHandle.h +211 -0
  523. tinyvdb-0.1.0/nanovdb/util/GridStats.h +735 -0
  524. tinyvdb-0.1.0/nanovdb/util/GridValidator.h +172 -0
  525. tinyvdb-0.1.0/nanovdb/util/HDDA.h +510 -0
  526. tinyvdb-0.1.0/nanovdb/util/HostBuffer.h +516 -0
  527. tinyvdb-0.1.0/nanovdb/util/IO.h +750 -0
  528. tinyvdb-0.1.0/nanovdb/util/Invoke.h +87 -0
  529. tinyvdb-0.1.0/nanovdb/util/NanoToOpenVDB.h +242 -0
  530. tinyvdb-0.1.0/nanovdb/util/NodeManager.h +402 -0
  531. tinyvdb-0.1.0/nanovdb/util/OpenToNanoVDB.h +1436 -0
  532. tinyvdb-0.1.0/nanovdb/util/Primitives.h +1287 -0
  533. tinyvdb-0.1.0/nanovdb/util/Range.h +149 -0
  534. tinyvdb-0.1.0/nanovdb/util/Ray.h +557 -0
  535. tinyvdb-0.1.0/nanovdb/util/Reduce.h +101 -0
  536. tinyvdb-0.1.0/nanovdb/util/SampleFromVoxels.h +983 -0
  537. tinyvdb-0.1.0/nanovdb/util/Stencils.h +1028 -0
  538. tinyvdb-0.1.0/pyproject.toml +49 -0
  539. tinyvdb-0.1.0/python/CMakeLists.txt +23 -0
  540. tinyvdb-0.1.0/python/src/_tinyvdb.c +1634 -0
  541. tinyvdb-0.1.0/python/src/_tinyvdb_mesh_ops.cc +465 -0
  542. tinyvdb-0.1.0/python/tests/conftest.py +7 -0
  543. tinyvdb-0.1.0/python/tests/test_tinyvdb.py +186 -0
  544. tinyvdb-0.1.0/python/tinyvdb/__init__.py +105 -0
  545. tinyvdb-0.1.0/python/tinyvdb/py.typed +0 -0
  546. tinyvdb-0.1.0/scripts/bootstrap-aarch64-ios.sh +16 -0
  547. tinyvdb-0.1.0/scripts/bootstrap-android-cmake-linux.sh +29 -0
  548. tinyvdb-0.1.0/scripts/bootstrap-clang-cl-wsl-lte.sh +15 -0
  549. tinyvdb-0.1.0/scripts/bootstrap-clang-cl-wsl.sh +15 -0
  550. tinyvdb-0.1.0/scripts/bootstrap-cmake-linux.sh +12 -0
  551. tinyvdb-0.1.0/scripts/bootstrap-cmake-llvm-mingw-cross.sh +19 -0
  552. tinyvdb-0.1.0/scripts/bootstrap-cmake-mingw-gcc-cross.sh +17 -0
  553. tinyvdb-0.1.0/scripts/bootstrap-gcc-4.8.sh +13 -0
  554. tinyvdb-0.1.0/scripts/bootstrap-gcc-aarch64-cross.sh +14 -0
  555. tinyvdb-0.1.0/scripts/build-zstd-single-file.sh +67 -0
  556. tinyvdb-0.1.0/src/lz4.c +2829 -0
  557. tinyvdb-0.1.0/src/lz4.h +884 -0
  558. tinyvdb-0.1.0/src/miniz.c +7670 -0
  559. tinyvdb-0.1.0/src/miniz.h +1346 -0
  560. tinyvdb-0.1.0/src/tinyvdb_io.c +9 -0
  561. tinyvdb-0.1.0/src/tinyvdb_io.cc +7 -0
  562. tinyvdb-0.1.0/src/tinyvdb_io.h +4026 -0
  563. tinyvdb-0.1.0/src/tinyvdb_mesh.h +996 -0
  564. tinyvdb-0.1.0/src/tinyvdb_ops.h +1109 -0
  565. tinyvdb-0.1.0/tests/loader-test.cc +68 -0
  566. tinyvdb-0.1.0/third_party/c-blosc/.editorconfig +20 -0
  567. tinyvdb-0.1.0/third_party/c-blosc/.github/workflows/cmake.yml +161 -0
  568. tinyvdb-0.1.0/third_party/c-blosc/.gitignore +4 -0
  569. tinyvdb-0.1.0/third_party/c-blosc/.mailmap +4 -0
  570. tinyvdb-0.1.0/third_party/c-blosc/ANNOUNCE.rst +53 -0
  571. tinyvdb-0.1.0/third_party/c-blosc/CMakeLists.txt +362 -0
  572. tinyvdb-0.1.0/third_party/c-blosc/CODE_OF_CONDUCT.md +5 -0
  573. tinyvdb-0.1.0/third_party/c-blosc/CONTRIBUTING.md +32 -0
  574. tinyvdb-0.1.0/third_party/c-blosc/FUNDING.yml +2 -0
  575. tinyvdb-0.1.0/third_party/c-blosc/LICENSES/BITSHUFFLE.txt +21 -0
  576. tinyvdb-0.1.0/third_party/c-blosc/LICENSES/BLOSC.txt +31 -0
  577. tinyvdb-0.1.0/third_party/c-blosc/LICENSES/FASTLZ.txt +24 -0
  578. tinyvdb-0.1.0/third_party/c-blosc/LICENSES/LZ4.txt +32 -0
  579. tinyvdb-0.1.0/third_party/c-blosc/LICENSES/SNAPPY.txt +28 -0
  580. tinyvdb-0.1.0/third_party/c-blosc/LICENSES/STDINT.txt +29 -0
  581. tinyvdb-0.1.0/third_party/c-blosc/LICENSES/ZLIB.txt +22 -0
  582. tinyvdb-0.1.0/third_party/c-blosc/README.md +196 -0
  583. tinyvdb-0.1.0/third_party/c-blosc/README_HEADER.rst +65 -0
  584. tinyvdb-0.1.0/third_party/c-blosc/README_THREADED.rst +33 -0
  585. tinyvdb-0.1.0/third_party/c-blosc/RELEASE_NOTES.rst +1101 -0
  586. tinyvdb-0.1.0/third_party/c-blosc/RELEASING.rst +111 -0
  587. tinyvdb-0.1.0/third_party/c-blosc/THANKS.rst +35 -0
  588. tinyvdb-0.1.0/third_party/c-blosc/THOUGHTS_FOR_2.0.txt +19 -0
  589. tinyvdb-0.1.0/third_party/c-blosc/bench/CMakeLists.txt +115 -0
  590. tinyvdb-0.1.0/third_party/c-blosc/bench/Makefile +40 -0
  591. tinyvdb-0.1.0/third_party/c-blosc/bench/Makefile.mingw +45 -0
  592. tinyvdb-0.1.0/third_party/c-blosc/bench/bench.c +598 -0
  593. tinyvdb-0.1.0/third_party/c-blosc/bench/plot-speeds.py +226 -0
  594. tinyvdb-0.1.0/third_party/c-blosc/blosc/CMakeLists.txt +223 -0
  595. tinyvdb-0.1.0/third_party/c-blosc/blosc/bitshuffle-avx2.c +245 -0
  596. tinyvdb-0.1.0/third_party/c-blosc/blosc/bitshuffle-avx2.h +38 -0
  597. tinyvdb-0.1.0/third_party/c-blosc/blosc/bitshuffle-generic.c +220 -0
  598. tinyvdb-0.1.0/third_party/c-blosc/blosc/bitshuffle-generic.h +161 -0
  599. tinyvdb-0.1.0/third_party/c-blosc/blosc/bitshuffle-sse2.c +467 -0
  600. tinyvdb-0.1.0/third_party/c-blosc/blosc/bitshuffle-sse2.h +52 -0
  601. tinyvdb-0.1.0/third_party/c-blosc/blosc/blosc-common.h +77 -0
  602. tinyvdb-0.1.0/third_party/c-blosc/blosc/blosc-comp-features.h +21 -0
  603. tinyvdb-0.1.0/third_party/c-blosc/blosc/blosc-export.h +45 -0
  604. tinyvdb-0.1.0/third_party/c-blosc/blosc/blosc.c +2341 -0
  605. tinyvdb-0.1.0/third_party/c-blosc/blosc/blosc.h +571 -0
  606. tinyvdb-0.1.0/third_party/c-blosc/blosc/blosclz.c +612 -0
  607. tinyvdb-0.1.0/third_party/c-blosc/blosc/blosclz.h +71 -0
  608. tinyvdb-0.1.0/third_party/c-blosc/blosc/blosclz_impl.inc +126 -0
  609. tinyvdb-0.1.0/third_party/c-blosc/blosc/config.h.in +11 -0
  610. tinyvdb-0.1.0/third_party/c-blosc/blosc/fastcopy.c +637 -0
  611. tinyvdb-0.1.0/third_party/c-blosc/blosc/fastcopy.h +19 -0
  612. tinyvdb-0.1.0/third_party/c-blosc/blosc/shuffle-avx2.c +757 -0
  613. tinyvdb-0.1.0/third_party/c-blosc/blosc/shuffle-avx2.h +36 -0
  614. tinyvdb-0.1.0/third_party/c-blosc/blosc/shuffle-generic.c +25 -0
  615. tinyvdb-0.1.0/third_party/c-blosc/blosc/shuffle-generic.h +99 -0
  616. tinyvdb-0.1.0/third_party/c-blosc/blosc/shuffle-sse2.c +626 -0
  617. tinyvdb-0.1.0/third_party/c-blosc/blosc/shuffle-sse2.h +36 -0
  618. tinyvdb-0.1.0/third_party/c-blosc/blosc/shuffle.c +453 -0
  619. tinyvdb-0.1.0/third_party/c-blosc/blosc/shuffle.h +67 -0
  620. tinyvdb-0.1.0/third_party/c-blosc/blosc/win32/pthread.c +218 -0
  621. tinyvdb-0.1.0/third_party/c-blosc/blosc/win32/pthread.h +112 -0
  622. tinyvdb-0.1.0/third_party/c-blosc/blosc/win32/stdint-windows.h +259 -0
  623. tinyvdb-0.1.0/third_party/c-blosc/blosc.pc.in +14 -0
  624. tinyvdb-0.1.0/third_party/c-blosc/cmake/FindLZ4.cmake +10 -0
  625. tinyvdb-0.1.0/third_party/c-blosc/cmake/FindSnappy.cmake +10 -0
  626. tinyvdb-0.1.0/third_party/c-blosc/cmake/FindZstd.cmake +10 -0
  627. tinyvdb-0.1.0/third_party/c-blosc/cmake_uninstall.cmake.in +22 -0
  628. tinyvdb-0.1.0/third_party/c-blosc/compat/CMakeLists.txt +34 -0
  629. tinyvdb-0.1.0/third_party/c-blosc/compat/README.rst +4 -0
  630. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.11.1-blosclz.cdata +0 -0
  631. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.11.1-lz4.cdata +0 -0
  632. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.11.1-lz4hc.cdata +0 -0
  633. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.11.1-snappy.cdata +0 -0
  634. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.11.1-zlib.cdata +0 -0
  635. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.11.1-zstd.cdata +0 -0
  636. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.14.0-blosclz.cdata +0 -0
  637. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.14.0-lz4.cdata +0 -0
  638. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.14.0-lz4hc.cdata +0 -0
  639. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.14.0-snappy.cdata +0 -0
  640. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.14.0-zlib.cdata +0 -0
  641. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.14.0-zstd.cdata +0 -0
  642. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.18.0-blosclz-bitshuffle.cdata +0 -0
  643. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.18.0-blosclz.cdata +0 -0
  644. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.18.0-lz4-bitshuffle.cdata +0 -0
  645. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.18.0-lz4.cdata +0 -0
  646. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.18.0-lz4hc.cdata +0 -0
  647. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.18.0-zlib.cdata +0 -0
  648. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.18.0-zstd.cdata +0 -0
  649. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.3.0-blosclz.cdata +0 -0
  650. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.3.0-lz4.cdata +0 -0
  651. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.3.0-lz4hc.cdata +0 -0
  652. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.3.0-snappy.cdata +0 -0
  653. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.3.0-zlib.cdata +0 -0
  654. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.7.0-blosclz.cdata +0 -0
  655. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.7.0-lz4.cdata +0 -0
  656. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.7.0-lz4hc.cdata +0 -0
  657. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.7.0-snappy.cdata +0 -0
  658. tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.7.0-zlib.cdata +0 -0
  659. tinyvdb-0.1.0/third_party/c-blosc/compat/filegen.c +110 -0
  660. tinyvdb-0.1.0/third_party/c-blosc/examples/README.rst +12 -0
  661. tinyvdb-0.1.0/third_party/c-blosc/examples/many_compressors.c +117 -0
  662. tinyvdb-0.1.0/third_party/c-blosc/examples/multithread.c +100 -0
  663. tinyvdb-0.1.0/third_party/c-blosc/examples/noinit.c +87 -0
  664. tinyvdb-0.1.0/third_party/c-blosc/examples/simple.c +88 -0
  665. tinyvdb-0.1.0/third_party/c-blosc/examples/win-dynamic-linking.c +128 -0
  666. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/lz4-1.9.2/lz4.c +2398 -0
  667. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/lz4-1.9.2/lz4.h +764 -0
  668. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/lz4-1.9.2/lz4hc.c +1538 -0
  669. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/lz4-1.9.2/lz4hc.h +438 -0
  670. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/adler32.c +179 -0
  671. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/compress.c +80 -0
  672. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/crc32.c +425 -0
  673. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/crc32.h +441 -0
  674. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/deflate.c +1967 -0
  675. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/deflate.h +346 -0
  676. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/gzclose.c +25 -0
  677. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/gzguts.h +209 -0
  678. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/gzlib.c +634 -0
  679. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/gzread.c +594 -0
  680. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/gzwrite.c +577 -0
  681. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/infback.c +640 -0
  682. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/inffast.c +340 -0
  683. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/inffast.h +11 -0
  684. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/inffixed.h +94 -0
  685. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/inflate.c +1512 -0
  686. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/inflate.h +122 -0
  687. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/inftrees.c +306 -0
  688. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/inftrees.h +62 -0
  689. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/trees.c +1226 -0
  690. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/trees.h +128 -0
  691. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/uncompr.c +59 -0
  692. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/zconf.h +511 -0
  693. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/zlib.h +1768 -0
  694. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/zutil.c +324 -0
  695. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/zutil.h +253 -0
  696. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/BUCK +234 -0
  697. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/Makefile +289 -0
  698. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/README.md +159 -0
  699. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/bitstream.h +460 -0
  700. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/compiler.h +159 -0
  701. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/cpu.h +215 -0
  702. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/debug.c +44 -0
  703. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/debug.h +134 -0
  704. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/entropy_common.c +236 -0
  705. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/error_private.c +54 -0
  706. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/error_private.h +76 -0
  707. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/fse.h +708 -0
  708. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/fse_decompress.c +311 -0
  709. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/huf.h +358 -0
  710. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/mem.h +453 -0
  711. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/pool.c +344 -0
  712. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/pool.h +84 -0
  713. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/threading.c +120 -0
  714. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/threading.h +154 -0
  715. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/xxhash.c +882 -0
  716. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/xxhash.h +305 -0
  717. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/zstd_common.c +83 -0
  718. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/zstd_errors.h +93 -0
  719. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/zstd_internal.h +350 -0
  720. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/fse_compress.c +721 -0
  721. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/hist.c +203 -0
  722. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/hist.h +95 -0
  723. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/huf_compress.c +798 -0
  724. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_compress.c +4103 -0
  725. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_compress_internal.h +1003 -0
  726. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_compress_literals.c +154 -0
  727. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_compress_literals.h +29 -0
  728. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_compress_sequences.c +415 -0
  729. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_compress_sequences.h +47 -0
  730. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_cwksp.h +535 -0
  731. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_double_fast.c +518 -0
  732. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_double_fast.h +38 -0
  733. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_fast.c +484 -0
  734. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_fast.h +37 -0
  735. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_lazy.c +1115 -0
  736. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_lazy.h +67 -0
  737. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_ldm.c +597 -0
  738. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_ldm.h +105 -0
  739. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_opt.c +1246 -0
  740. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_opt.h +56 -0
  741. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstdmt_compress.c +2116 -0
  742. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstdmt_compress.h +192 -0
  743. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/decompress/huf_decompress.c +1234 -0
  744. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/decompress/zstd_ddict.c +240 -0
  745. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/decompress/zstd_ddict.h +44 -0
  746. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/decompress/zstd_decompress.c +1769 -0
  747. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/decompress/zstd_decompress_block.c +1323 -0
  748. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/decompress/zstd_decompress_block.h +59 -0
  749. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/decompress/zstd_decompress_internal.h +175 -0
  750. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/deprecated/zbuff.h +214 -0
  751. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/deprecated/zbuff_common.c +26 -0
  752. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/deprecated/zbuff_compress.c +147 -0
  753. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/deprecated/zbuff_decompress.c +75 -0
  754. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dictBuilder/cover.c +1236 -0
  755. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dictBuilder/cover.h +147 -0
  756. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dictBuilder/divsufsort.c +1913 -0
  757. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dictBuilder/divsufsort.h +67 -0
  758. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dictBuilder/fastcover.c +747 -0
  759. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dictBuilder/zdict.c +1111 -0
  760. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dictBuilder/zdict.h +282 -0
  761. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dll/example/Makefile +47 -0
  762. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dll/example/README.md +69 -0
  763. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dll/example/build_package.bat +20 -0
  764. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dll/example/fullbench-dll.sln +25 -0
  765. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dll/example/fullbench-dll.vcxproj +181 -0
  766. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_legacy.h +415 -0
  767. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v01.c +2152 -0
  768. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v01.h +94 -0
  769. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v02.c +3514 -0
  770. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v02.h +93 -0
  771. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v03.c +3156 -0
  772. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v03.h +93 -0
  773. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v04.c +3641 -0
  774. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v04.h +142 -0
  775. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v05.c +4046 -0
  776. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v05.h +162 -0
  777. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v06.c +4150 -0
  778. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v06.h +172 -0
  779. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v07.c +4533 -0
  780. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v07.h +187 -0
  781. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/libzstd.pc.in +15 -0
  782. tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/zstd.h +2049 -0
  783. tinyvdb-0.1.0/third_party/c-blosc/tests/.gitignore +1 -0
  784. tinyvdb-0.1.0/third_party/c-blosc/tests/CMakeLists.txt +127 -0
  785. tinyvdb-0.1.0/third_party/c-blosc/tests/Makefile +52 -0
  786. tinyvdb-0.1.0/third_party/c-blosc/tests/check_symbols.py +80 -0
  787. tinyvdb-0.1.0/third_party/c-blosc/tests/gcc-segfault-issue.c +80 -0
  788. tinyvdb-0.1.0/third_party/c-blosc/tests/print_versions.c +34 -0
  789. tinyvdb-0.1.0/third_party/c-blosc/tests/test_all.sh +14 -0
  790. tinyvdb-0.1.0/third_party/c-blosc/tests/test_api.c +173 -0
  791. tinyvdb-0.1.0/third_party/c-blosc/tests/test_bitshuffle_leftovers.c +140 -0
  792. tinyvdb-0.1.0/third_party/c-blosc/tests/test_common.h +152 -0
  793. tinyvdb-0.1.0/third_party/c-blosc/tests/test_compress_roundtrip.c +134 -0
  794. tinyvdb-0.1.0/third_party/c-blosc/tests/test_compress_roundtrip.csv +268 -0
  795. tinyvdb-0.1.0/third_party/c-blosc/tests/test_compressor.c +349 -0
  796. tinyvdb-0.1.0/third_party/c-blosc/tests/test_forksafe.c +106 -0
  797. tinyvdb-0.1.0/third_party/c-blosc/tests/test_getitem.c +130 -0
  798. tinyvdb-0.1.0/third_party/c-blosc/tests/test_getitem.csv +400 -0
  799. tinyvdb-0.1.0/third_party/c-blosc/tests/test_maxout.c +199 -0
  800. tinyvdb-0.1.0/third_party/c-blosc/tests/test_noinit.c +108 -0
  801. tinyvdb-0.1.0/third_party/c-blosc/tests/test_nolock.c +111 -0
  802. tinyvdb-0.1.0/third_party/c-blosc/tests/test_nthreads.c +123 -0
  803. tinyvdb-0.1.0/third_party/c-blosc/tests/test_shuffle_roundtrip_avx2.c +131 -0
  804. tinyvdb-0.1.0/third_party/c-blosc/tests/test_shuffle_roundtrip_avx2.csv +400 -0
  805. tinyvdb-0.1.0/third_party/c-blosc/tests/test_shuffle_roundtrip_generic.c +93 -0
  806. tinyvdb-0.1.0/third_party/c-blosc/tests/test_shuffle_roundtrip_generic.csv +134 -0
  807. tinyvdb-0.1.0/third_party/c-blosc/tests/test_shuffle_roundtrip_sse2.c +138 -0
  808. tinyvdb-0.1.0/third_party/c-blosc/tests/test_shuffle_roundtrip_sse2.csv +400 -0
  809. tinyvdb-0.1.0/third_party/tinyexr/.clang-format +7 -0
  810. tinyvdb-0.1.0/third_party/tinyexr/.drone.yml +7 -0
  811. tinyvdb-0.1.0/third_party/tinyexr/.github/FUNDING.yml +15 -0
  812. tinyvdb-0.1.0/third_party/tinyexr/.github/ISSUE_TEMPLATE/config.yml +1 -0
  813. tinyvdb-0.1.0/third_party/tinyexr/.github/ISSUE_TEMPLATE/issue-report.md +26 -0
  814. tinyvdb-0.1.0/third_party/tinyexr/.github/workflows/ci.yml +187 -0
  815. tinyvdb-0.1.0/third_party/tinyexr/.github/workflows/claude-code-review.yml +57 -0
  816. tinyvdb-0.1.0/third_party/tinyexr/.github/workflows/claude.yml +50 -0
  817. tinyvdb-0.1.0/third_party/tinyexr/.gitignore +8 -0
  818. tinyvdb-0.1.0/third_party/tinyexr/.gitmodules +3 -0
  819. tinyvdb-0.1.0/third_party/tinyexr/.lgtm.yml +12 -0
  820. tinyvdb-0.1.0/third_party/tinyexr/.travis.yml +124 -0
  821. tinyvdb-0.1.0/third_party/tinyexr/CMakeLists.txt +78 -0
  822. tinyvdb-0.1.0/third_party/tinyexr/LICENSE +29 -0
  823. tinyvdb-0.1.0/third_party/tinyexr/Makefile +101 -0
  824. tinyvdb-0.1.0/third_party/tinyexr/Makefile.gcc-mingw +18 -0
  825. tinyvdb-0.1.0/third_party/tinyexr/Makefile.gcc-mingw-msys +16 -0
  826. tinyvdb-0.1.0/third_party/tinyexr/Makefile.llvm-mingw +25 -0
  827. tinyvdb-0.1.0/third_party/tinyexr/README.md +716 -0
  828. tinyvdb-0.1.0/third_party/tinyexr/TINYEXR_SIMD_README.md +191 -0
  829. tinyvdb-0.1.0/third_party/tinyexr/TINYEXR_V2_README.md +310 -0
  830. tinyvdb-0.1.0/third_party/tinyexr/TINYEXR_V3_README.md +358 -0
  831. tinyvdb-0.1.0/third_party/tinyexr/appveyor.yml +13 -0
  832. tinyvdb-0.1.0/third_party/tinyexr/asakusa.exr +0 -0
  833. tinyvdb-0.1.0/third_party/tinyexr/asakusa.png +0 -0
  834. tinyvdb-0.1.0/third_party/tinyexr/cmake/sanitizers/FindASan.cmake +59 -0
  835. tinyvdb-0.1.0/third_party/tinyexr/cmake/sanitizers/FindMSan.cmake +57 -0
  836. tinyvdb-0.1.0/third_party/tinyexr/cmake/sanitizers/FindSanitizers.cmake +94 -0
  837. tinyvdb-0.1.0/third_party/tinyexr/cmake/sanitizers/FindTSan.cmake +65 -0
  838. tinyvdb-0.1.0/third_party/tinyexr/cmake/sanitizers/FindUBSan.cmake +46 -0
  839. tinyvdb-0.1.0/third_party/tinyexr/cmake/sanitizers/asan-wrapper +55 -0
  840. tinyvdb-0.1.0/third_party/tinyexr/cmake/sanitizers/sanitize-helpers.cmake +177 -0
  841. tinyvdb-0.1.0/third_party/tinyexr/config-msvc.py +78 -0
  842. tinyvdb-0.1.0/third_party/tinyexr/deepscanline.exr +0 -0
  843. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/.github/workflows/coverage.yml +49 -0
  844. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/.github/workflows/debug-linux.yml +28 -0
  845. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/.github/workflows/debug-macos.yml +28 -0
  846. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/.github/workflows/tests.yml +77 -0
  847. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/.gitignore +9 -0
  848. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/CHANGELOG.md +419 -0
  849. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/CITATION.cff +17 -0
  850. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/CMakeLists.txt +376 -0
  851. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/CONTRIBUTING.md +13 -0
  852. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/CTestConfig.cmake +16 -0
  853. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/Config +161 -0
  854. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/LICENSE +29 -0
  855. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/Makefile +40 -0
  856. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/NOTICE +21 -0
  857. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/README.md +116 -0
  858. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/SUPPORT.md +11 -0
  859. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/appveyor.sh +72 -0
  860. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/appveyor.yml +67 -0
  861. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/CMakeLists.txt +36 -0
  862. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/Makefile +25 -0
  863. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfp.cpp +868 -0
  864. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfparray1d.cpp +21 -0
  865. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfparray1f.cpp +21 -0
  866. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfparray2d.cpp +21 -0
  867. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfparray2f.cpp +21 -0
  868. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfparray3d.cpp +21 -0
  869. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfparray3f.cpp +21 -0
  870. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfparray4d.cpp +21 -0
  871. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfparray4f.cpp +21 -0
  872. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfpheader.cpp +21 -0
  873. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/template/cfparray.cpp +136 -0
  874. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/template/cfparray1.cpp +332 -0
  875. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/template/cfparray2.cpp +468 -0
  876. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/template/cfparray3.cpp +522 -0
  877. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/template/cfparray4.cpp +576 -0
  878. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/template/cfpheader.cpp +166 -0
  879. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cmake/appveyor.cmake +92 -0
  880. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/codecov.yml +8 -0
  881. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/Makefile +23 -0
  882. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/make.bat +36 -0
  883. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/algorithm.rst +155 -0
  884. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/arrays.rst +859 -0
  885. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/bit-stream.rst +303 -0
  886. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/caching.inc +38 -0
  887. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/cfp.rst +983 -0
  888. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/codec.inc +258 -0
  889. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/conf.py +178 -0
  890. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/contributors.rst +24 -0
  891. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/defs.rst +42 -0
  892. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/directions.rst +85 -0
  893. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/disclaimer.inc +9 -0
  894. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/examples.rst +205 -0
  895. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/execution.rst +310 -0
  896. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/faq.rst +1270 -0
  897. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/high-level-api.rst +1047 -0
  898. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/index.inc +157 -0
  899. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/index.rst +32 -0
  900. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/installation.rst +438 -0
  901. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/introduction.rst +213 -0
  902. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/issues.rst +414 -0
  903. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/iterators.inc +238 -0
  904. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/license.rst +59 -0
  905. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/limitations.rst +87 -0
  906. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/low-level-api.rst +437 -0
  907. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/modes.rst +261 -0
  908. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/pointers.inc +187 -0
  909. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/python.rst +155 -0
  910. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/references.inc +106 -0
  911. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/requirements.txt +3 -0
  912. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/serialization.inc +215 -0
  913. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/setup.py +3 -0
  914. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/testing.rst +18 -0
  915. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/tutorial.rst +620 -0
  916. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/versions.rst +432 -0
  917. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/view-indexing.pdf +0 -0
  918. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/views.inc +863 -0
  919. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/zforp.rst +884 -0
  920. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/zfp-rounding.pdf +0 -0
  921. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/zfpcmd.rst +259 -0
  922. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/CMakeLists.txt +55 -0
  923. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/Makefile +62 -0
  924. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/array.cpp +42 -0
  925. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/array2d.hpp +72 -0
  926. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/diffusion.cpp +478 -0
  927. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/diffusionC.c +303 -0
  928. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/inplace.c +156 -0
  929. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/iterator.cpp +74 -0
  930. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/iteratorC.c +97 -0
  931. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/pgm.c +112 -0
  932. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/ppm.c +390 -0
  933. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/simple.c +102 -0
  934. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/speed.c +136 -0
  935. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/fortran/CMakeLists.txt +31 -0
  936. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/fortran/Makefile +32 -0
  937. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/fortran/zfp.f90 +1134 -0
  938. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/array.h +32 -0
  939. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/array.hpp +95 -0
  940. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/array1.hpp +265 -0
  941. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/array2.hpp +301 -0
  942. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/array3.hpp +316 -0
  943. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/array4.hpp +331 -0
  944. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/bitstream.h +106 -0
  945. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/bitstream.inl +473 -0
  946. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/codec/gencodec.hpp +421 -0
  947. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/codec/zfpcodec.hpp +551 -0
  948. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/constarray1.hpp +265 -0
  949. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/constarray2.hpp +288 -0
  950. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/constarray3.hpp +300 -0
  951. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/constarray4.hpp +312 -0
  952. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/factory.hpp +119 -0
  953. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/index.hpp +537 -0
  954. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/cache.hpp +281 -0
  955. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/cache1.hpp +201 -0
  956. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/cache2.hpp +207 -0
  957. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/cache3.hpp +213 -0
  958. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/cache4.hpp +219 -0
  959. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/exception.hpp +18 -0
  960. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/handle1.hpp +38 -0
  961. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/handle2.hpp +38 -0
  962. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/handle3.hpp +38 -0
  963. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/handle4.hpp +38 -0
  964. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/header.hpp +41 -0
  965. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/iterator1.hpp +137 -0
  966. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/iterator2.hpp +230 -0
  967. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/iterator3.hpp +265 -0
  968. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/iterator4.hpp +300 -0
  969. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/memory.hpp +200 -0
  970. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/pointer1.hpp +118 -0
  971. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/pointer2.hpp +136 -0
  972. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/pointer3.hpp +145 -0
  973. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/pointer4.hpp +154 -0
  974. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/reference1.hpp +78 -0
  975. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/reference2.hpp +80 -0
  976. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/reference3.hpp +82 -0
  977. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/reference4.hpp +84 -0
  978. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/store.hpp +255 -0
  979. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/store1.hpp +140 -0
  980. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/store2.hpp +147 -0
  981. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/store3.hpp +154 -0
  982. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/store4.hpp +161 -0
  983. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/traits.hpp +30 -0
  984. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/view1.hpp +303 -0
  985. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/view2.hpp +498 -0
  986. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/view3.hpp +584 -0
  987. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/view4.hpp +679 -0
  988. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/array1d.h +141 -0
  989. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/array1f.h +141 -0
  990. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/array2d.h +144 -0
  991. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/array2f.h +144 -0
  992. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/array3d.h +146 -0
  993. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/array3f.h +146 -0
  994. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/array4d.h +148 -0
  995. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/array4f.h +148 -0
  996. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/header.h +8 -0
  997. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/codec/genheader.hpp +76 -0
  998. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/codec/zfpheader.hpp +129 -0
  999. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/zfp/inline.h +12 -0
  1000. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/zfp/macros.h +7 -0
  1001. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/zfp/system.h +47 -0
  1002. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/zfp/types.h +132 -0
  1003. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/version.h +52 -0
  1004. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp.h +795 -0
  1005. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp.hpp +289 -0
  1006. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/CMakeLists.txt +26 -0
  1007. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/requirements.txt +3 -0
  1008. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/scikit-build-cmake/FindCython.cmake +89 -0
  1009. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/scikit-build-cmake/FindNumPy.cmake +106 -0
  1010. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/scikit-build-cmake/FindPythonExtensions.cmake +576 -0
  1011. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/scikit-build-cmake/LICENSE +50 -0
  1012. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/scikit-build-cmake/UseCython.cmake +387 -0
  1013. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/scikit-build-cmake/targetLinkLibrariesWithDynamicLookup.cmake +581 -0
  1014. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/zfpy.pxd +79 -0
  1015. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/zfpy.pyx +423 -0
  1016. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/setup.py +15 -0
  1017. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/CMakeLists.txt +66 -0
  1018. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/Makefile +24 -0
  1019. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/bitstream.c +4 -0
  1020. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/block1.h +1 -0
  1021. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/block2.h +1 -0
  1022. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/block3.h +1 -0
  1023. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/block4.h +1 -0
  1024. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/CMakeLists.txt +24 -0
  1025. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/ErrorCheck.h +35 -0
  1026. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/constants.h +136 -0
  1027. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/cuZFP.cu +491 -0
  1028. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/cuZFP.h +15 -0
  1029. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/decode.cuh +292 -0
  1030. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/decode1.cuh +155 -0
  1031. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/decode2.cuh +178 -0
  1032. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/decode3.cuh +192 -0
  1033. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/encode.cuh +437 -0
  1034. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/encode1.cuh +174 -0
  1035. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/encode2.cuh +189 -0
  1036. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/encode3.cuh +201 -0
  1037. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/pointers.cuh +30 -0
  1038. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/shared.h +279 -0
  1039. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/type_info.cuh +105 -0
  1040. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode1d.c +18 -0
  1041. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode1f.c +18 -0
  1042. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode1i.c +15 -0
  1043. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode1l.c +15 -0
  1044. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode2d.c +18 -0
  1045. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode2f.c +18 -0
  1046. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode2i.c +15 -0
  1047. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode2l.c +15 -0
  1048. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode3d.c +18 -0
  1049. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode3f.c +18 -0
  1050. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode3i.c +15 -0
  1051. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode3l.c +15 -0
  1052. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode4d.c +18 -0
  1053. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode4f.c +18 -0
  1054. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode4i.c +15 -0
  1055. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode4l.c +15 -0
  1056. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode1d.c +18 -0
  1057. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode1f.c +18 -0
  1058. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode1i.c +15 -0
  1059. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode1l.c +15 -0
  1060. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode2d.c +18 -0
  1061. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode2f.c +18 -0
  1062. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode2i.c +15 -0
  1063. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode2l.c +15 -0
  1064. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode3d.c +18 -0
  1065. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode3f.c +18 -0
  1066. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode3i.c +15 -0
  1067. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode3l.c +15 -0
  1068. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode4d.c +18 -0
  1069. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode4f.c +18 -0
  1070. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode4i.c +15 -0
  1071. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode4l.c +15 -0
  1072. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/share/omp.c +31 -0
  1073. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/share/parallel.c +104 -0
  1074. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/codec.c +6 -0
  1075. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/codec.h +4 -0
  1076. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/codec1.c +4 -0
  1077. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/codec2.c +32 -0
  1078. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/codec3.c +90 -0
  1079. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/codec4.c +297 -0
  1080. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/codecf.c +32 -0
  1081. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/compress.c +109 -0
  1082. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/cudacompress.c +36 -0
  1083. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/cudadecompress.c +36 -0
  1084. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/decode.c +287 -0
  1085. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/decode1.c +53 -0
  1086. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/decode2.c +60 -0
  1087. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/decode3.c +68 -0
  1088. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/decode4.c +78 -0
  1089. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/decodef.c +44 -0
  1090. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/decodei.c +10 -0
  1091. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/decompress.c +109 -0
  1092. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/encode.c +280 -0
  1093. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/encode1.c +52 -0
  1094. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/encode2.c +62 -0
  1095. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/encode3.c +74 -0
  1096. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/encode4.c +89 -0
  1097. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/encodef.c +99 -0
  1098. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/encodei.c +15 -0
  1099. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/ompcompress.c +275 -0
  1100. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revcodecf.c +11 -0
  1101. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revdecode.c +52 -0
  1102. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revdecode1.c +9 -0
  1103. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revdecode2.c +14 -0
  1104. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revdecode3.c +20 -0
  1105. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revdecode4.c +28 -0
  1106. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revdecodef.c +59 -0
  1107. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revencode.c +76 -0
  1108. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revencode1.c +9 -0
  1109. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revencode2.c +14 -0
  1110. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revencode3.c +20 -0
  1111. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revencode4.c +28 -0
  1112. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revencodef.c +80 -0
  1113. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/template.h +12 -0
  1114. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/traitsd.h +14 -0
  1115. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/traitsf.h +20 -0
  1116. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/traitsi.h +7 -0
  1117. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/traitsl.h +7 -0
  1118. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/zfp.c +1249 -0
  1119. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/CMakeLists.txt +158 -0
  1120. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/CMakeLists.txt.in +16 -0
  1121. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/Makefile +20 -0
  1122. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/CMakeLists.txt +7 -0
  1123. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/CMakeLists.txt +74 -0
  1124. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1Base.cpp +194 -0
  1125. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1ItersBase.cpp +395 -0
  1126. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1RefsBase.cpp +37 -0
  1127. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1ViewsBase.cpp +192 -0
  1128. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1d.cpp +45 -0
  1129. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1dIters.cpp +10 -0
  1130. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1dPtrs.cpp +9 -0
  1131. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1dRefs.cpp +14 -0
  1132. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1dViewIters.cpp +17 -0
  1133. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1dViewPtrs.cpp +17 -0
  1134. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1dViews.cpp +18 -0
  1135. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1f.cpp +45 -0
  1136. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1fIters.cpp +10 -0
  1137. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1fPtrs.cpp +9 -0
  1138. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1fRefs.cpp +14 -0
  1139. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1fViewIters.cpp +17 -0
  1140. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1fViewPtrs.cpp +17 -0
  1141. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1fViews.cpp +18 -0
  1142. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2Base.cpp +422 -0
  1143. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2ItersBase.cpp +73 -0
  1144. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2PtrsBase.cpp +23 -0
  1145. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2RefsBase.cpp +55 -0
  1146. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2ViewsBase.cpp +398 -0
  1147. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2d.cpp +45 -0
  1148. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2dIters.cpp +10 -0
  1149. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2dPtrs.cpp +10 -0
  1150. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2dRefs.cpp +14 -0
  1151. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2dViewIters.cpp +17 -0
  1152. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2dViewPtrs.cpp +17 -0
  1153. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2dViews.cpp +18 -0
  1154. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2f.cpp +45 -0
  1155. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2fIters.cpp +10 -0
  1156. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2fPtrs.cpp +10 -0
  1157. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2fRefs.cpp +14 -0
  1158. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2fViewIters.cpp +17 -0
  1159. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2fViewPtrs.cpp +17 -0
  1160. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2fViews.cpp +18 -0
  1161. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3Base.cpp +571 -0
  1162. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3ItersBase.cpp +91 -0
  1163. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3PtrsBase.cpp +52 -0
  1164. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3RefsBase.cpp +58 -0
  1165. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3ViewsBase.cpp +489 -0
  1166. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3d.cpp +45 -0
  1167. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3dIters.cpp +10 -0
  1168. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3dPtrs.cpp +10 -0
  1169. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3dRefs.cpp +14 -0
  1170. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3dViewIters.cpp +17 -0
  1171. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3dViewPtrs.cpp +17 -0
  1172. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3dViews.cpp +18 -0
  1173. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3f.cpp +45 -0
  1174. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3fIters.cpp +10 -0
  1175. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3fPtrs.cpp +10 -0
  1176. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3fRefs.cpp +14 -0
  1177. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3fViewIters.cpp +17 -0
  1178. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3fViewPtrs.cpp +17 -0
  1179. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3fViews.cpp +18 -0
  1180. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4Base.cpp +741 -0
  1181. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4ItersBase.cpp +109 -0
  1182. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4PtrsBase.cpp +86 -0
  1183. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4RefsBase.cpp +61 -0
  1184. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4ViewsBase.cpp +639 -0
  1185. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4d.cpp +45 -0
  1186. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4dIters.cpp +10 -0
  1187. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4dPtrs.cpp +10 -0
  1188. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4dRefs.cpp +14 -0
  1189. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4dViewIters.cpp +17 -0
  1190. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4dViewPtrs.cpp +17 -0
  1191. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4dViews.cpp +18 -0
  1192. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4f.cpp +45 -0
  1193. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4fIters.cpp +10 -0
  1194. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4fPtrs.cpp +10 -0
  1195. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4fRefs.cpp +14 -0
  1196. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4fViewIters.cpp +17 -0
  1197. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4fViewPtrs.cpp +17 -0
  1198. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4fViews.cpp +18 -0
  1199. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArrayBase.cpp +911 -0
  1200. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArrayItersBase.cpp +205 -0
  1201. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArrayPtrsBase.cpp +388 -0
  1202. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArrayRefsBase.cpp +133 -0
  1203. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArrayViewItersBase.cpp +98 -0
  1204. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArrayViewPtrsBase.cpp +102 -0
  1205. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArrayViewsBase.cpp +598 -0
  1206. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testConstruct.cpp +140 -0
  1207. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/CMakeLists.txt +20 -0
  1208. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray1Base.cpp +1 -0
  1209. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray1d.cpp +46 -0
  1210. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray1f.cpp +46 -0
  1211. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray2Base.cpp +0 -0
  1212. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray2d.cpp +46 -0
  1213. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray2f.cpp +46 -0
  1214. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray3Base.cpp +0 -0
  1215. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray3d.cpp +46 -0
  1216. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray3f.cpp +46 -0
  1217. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray4Base.cpp +0 -0
  1218. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray4d.cpp +46 -0
  1219. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray4f.cpp +46 -0
  1220. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArrayBase.cpp +242 -0
  1221. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/CMakeLists.txt +28 -0
  1222. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecode1d.cpp +20 -0
  1223. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecode1f.cpp +20 -0
  1224. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecode2d.cpp +20 -0
  1225. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecode2f.cpp +20 -0
  1226. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecode3d.cpp +20 -0
  1227. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecode3f.cpp +20 -0
  1228. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecode4d.cpp +20 -0
  1229. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecode4f.cpp +20 -0
  1230. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecodeBase.cpp +558 -0
  1231. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/CMakeLists.txt +29 -0
  1232. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncode1d.cpp +17 -0
  1233. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncode1f.cpp +17 -0
  1234. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncode2d.cpp +17 -0
  1235. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncode2f.cpp +17 -0
  1236. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncode3d.cpp +17 -0
  1237. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncode3f.cpp +17 -0
  1238. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncode4d.cpp +17 -0
  1239. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncode4f.cpp +17 -0
  1240. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncodeBase.cpp +302 -0
  1241. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/commonMacros.h +6 -0
  1242. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtest1dTest.h +47 -0
  1243. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtest1fTest.h +47 -0
  1244. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtest2dTest.h +52 -0
  1245. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtest2fTest.h +52 -0
  1246. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtest3dTest.h +59 -0
  1247. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtest3fTest.h +59 -0
  1248. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtest4dTest.h +64 -0
  1249. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtest4fTest.h +64 -0
  1250. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtestBaseFixture.h +149 -0
  1251. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtestCApiTest.h +31 -0
  1252. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtestDoubleEnv.h +50 -0
  1253. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtestFloatEnv.h +50 -0
  1254. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtestSingleFixture.h +6 -0
  1255. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtestTestEnv.h +8 -0
  1256. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/predicates.h +59 -0
  1257. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/zfp/CMakeLists.txt +6 -0
  1258. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/zfp/testAlignedMemory.cpp +34 -0
  1259. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/CMakeLists.txt +22 -0
  1260. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray1_source.c +580 -0
  1261. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray1d.c +101 -0
  1262. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray1f.c +100 -0
  1263. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray2_source.c +634 -0
  1264. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray2d.c +101 -0
  1265. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray2f.c +101 -0
  1266. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray3_source.c +662 -0
  1267. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray3d.c +101 -0
  1268. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray3f.c +101 -0
  1269. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray4_source.c +692 -0
  1270. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray4d.c +98 -0
  1271. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray4f.c +98 -0
  1272. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray_source.c +643 -0
  1273. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpNamespace.c +27 -0
  1274. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/ci-utils/CMakeLists.txt +6 -0
  1275. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/1dDouble.h +4 -0
  1276. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/1dFloat.h +4 -0
  1277. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/1dInt32.h +4 -0
  1278. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/1dInt64.h +4 -0
  1279. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/2dDouble.h +4 -0
  1280. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/2dFloat.h +4 -0
  1281. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/2dInt32.h +4 -0
  1282. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/2dInt64.h +4 -0
  1283. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/3dDouble.h +4 -0
  1284. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/3dFloat.h +4 -0
  1285. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/3dInt32.h +4 -0
  1286. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/3dInt64.h +4 -0
  1287. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/4dDouble.h +4 -0
  1288. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/4dFloat.h +4 -0
  1289. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/4dInt32.h +4 -0
  1290. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/4dInt64.h +4 -0
  1291. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/1dDouble.h +37 -0
  1292. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/1dFloat.h +37 -0
  1293. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/1dInt32.h +21 -0
  1294. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/1dInt64.h +21 -0
  1295. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/2dDouble.h +37 -0
  1296. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/2dFloat.h +37 -0
  1297. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/2dInt32.h +21 -0
  1298. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/2dInt64.h +21 -0
  1299. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/3dDouble.h +37 -0
  1300. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/3dFloat.h +37 -0
  1301. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/3dInt32.h +21 -0
  1302. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/3dInt64.h +21 -0
  1303. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/4dDouble.h +37 -0
  1304. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/4dFloat.h +37 -0
  1305. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/4dInt32.h +21 -0
  1306. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/4dInt64.h +21 -0
  1307. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/doubleConsts.h +3 -0
  1308. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/floatConsts.h +3 -0
  1309. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/int32Consts.h +2 -0
  1310. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/int64Consts.h +2 -0
  1311. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/universalConsts.h +4 -0
  1312. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/fortran/CMakeLists.txt +18 -0
  1313. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/fortran/testFortran.f +103 -0
  1314. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/gitlab/corona-jobs.yml +17 -0
  1315. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/gitlab/corona-templates.yml +12 -0
  1316. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/gitlab/gitlab-ci.yml +143 -0
  1317. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/gitlab/pascal-jobs.yml +17 -0
  1318. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/gitlab/pascal-templates.yml +12 -0
  1319. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/gitlab/quartz-jobs.yml +64 -0
  1320. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/gitlab/quartz-templates.yml +12 -0
  1321. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/python/CMakeLists.txt +36 -0
  1322. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/python/test_numpy.py +238 -0
  1323. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/python/test_utils.pyx +535 -0
  1324. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/CMakeLists.txt +10 -0
  1325. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/CMakeLists.txt +49 -0
  1326. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock1dDouble.c +13 -0
  1327. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock1dFloat.c +13 -0
  1328. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock1dInt32.c +13 -0
  1329. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock1dInt64.c +13 -0
  1330. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock2dDouble.c +13 -0
  1331. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock2dFloat.c +13 -0
  1332. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock2dInt32.c +13 -0
  1333. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock2dInt64.c +13 -0
  1334. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock3dDouble.c +13 -0
  1335. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock3dFloat.c +13 -0
  1336. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock3dInt32.c +13 -0
  1337. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock3dInt64.c +13 -0
  1338. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock4dDouble.c +13 -0
  1339. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock4dFloat.c +13 -0
  1340. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock4dInt32.c +13 -0
  1341. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock4dInt64.c +13 -0
  1342. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided1dDouble.c +13 -0
  1343. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided1dFloat.c +13 -0
  1344. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided1dInt32.c +13 -0
  1345. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided1dInt64.c +13 -0
  1346. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided2dDouble.c +13 -0
  1347. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided2dFloat.c +13 -0
  1348. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided2dInt32.c +13 -0
  1349. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided2dInt64.c +13 -0
  1350. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided3dDouble.c +13 -0
  1351. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided3dFloat.c +13 -0
  1352. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided3dInt32.c +13 -0
  1353. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided3dInt64.c +13 -0
  1354. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided4dDouble.c +13 -0
  1355. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided4dFloat.c +13 -0
  1356. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided4dInt32.c +13 -0
  1357. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided4dInt64.c +13 -0
  1358. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testcases/block.c +13 -0
  1359. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testcases/blockStrided.c +18 -0
  1360. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/zfpDecodeBlockBase.c +278 -0
  1361. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/zfpDecodeBlockStridedBase.c +621 -0
  1362. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/CMakeLists.txt +49 -0
  1363. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock1dDouble.c +13 -0
  1364. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock1dFloat.c +13 -0
  1365. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock1dInt32.c +13 -0
  1366. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock1dInt64.c +13 -0
  1367. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock2dDouble.c +13 -0
  1368. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock2dFloat.c +13 -0
  1369. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock2dInt32.c +13 -0
  1370. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock2dInt64.c +13 -0
  1371. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock3dDouble.c +13 -0
  1372. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock3dFloat.c +13 -0
  1373. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock3dInt32.c +13 -0
  1374. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock3dInt64.c +13 -0
  1375. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock4dDouble.c +13 -0
  1376. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock4dFloat.c +13 -0
  1377. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock4dInt32.c +13 -0
  1378. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock4dInt64.c +13 -0
  1379. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided1dDouble.c +13 -0
  1380. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided1dFloat.c +13 -0
  1381. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided1dInt32.c +13 -0
  1382. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided1dInt64.c +13 -0
  1383. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided2dDouble.c +13 -0
  1384. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided2dFloat.c +13 -0
  1385. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided2dInt32.c +13 -0
  1386. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided2dInt64.c +13 -0
  1387. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided3dDouble.c +13 -0
  1388. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided3dFloat.c +13 -0
  1389. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided3dInt32.c +13 -0
  1390. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided3dInt64.c +13 -0
  1391. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided4dDouble.c +13 -0
  1392. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided4dFloat.c +13 -0
  1393. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided4dInt32.c +13 -0
  1394. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided4dInt64.c +13 -0
  1395. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testcases/block.c +11 -0
  1396. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testcases/blockStrided.c +18 -0
  1397. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/zfpEncodeBlockBase.c +266 -0
  1398. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/zfpEncodeBlockStridedBase.c +490 -0
  1399. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/CMakeLists.txt +70 -0
  1400. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/cudaExecBase.c +202 -0
  1401. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/ompExecBase.c +235 -0
  1402. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/serialExecBase.c +299 -0
  1403. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda1dDouble.c +13 -0
  1404. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda1dFloat.c +13 -0
  1405. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda1dInt32.c +13 -0
  1406. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda1dInt64.c +13 -0
  1407. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda2dDouble.c +13 -0
  1408. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda2dFloat.c +13 -0
  1409. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda2dInt32.c +13 -0
  1410. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda2dInt64.c +13 -0
  1411. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda3dDouble.c +13 -0
  1412. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda3dFloat.c +13 -0
  1413. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda3dInt32.c +13 -0
  1414. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda3dInt64.c +13 -0
  1415. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda4dDouble.c +13 -0
  1416. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda4dFloat.c +13 -0
  1417. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda4dInt32.c +13 -0
  1418. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda4dInt64.c +13 -0
  1419. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp1dDouble.c +13 -0
  1420. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp1dFloat.c +13 -0
  1421. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp1dInt32.c +13 -0
  1422. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp1dInt64.c +13 -0
  1423. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp2dDouble.c +13 -0
  1424. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp2dFloat.c +13 -0
  1425. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp2dInt32.c +13 -0
  1426. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp2dInt64.c +13 -0
  1427. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp3dDouble.c +13 -0
  1428. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp3dFloat.c +13 -0
  1429. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp3dInt32.c +13 -0
  1430. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp3dInt64.c +13 -0
  1431. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp4dDouble.c +13 -0
  1432. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp4dFloat.c +13 -0
  1433. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp4dInt32.c +13 -0
  1434. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp4dInt64.c +13 -0
  1435. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial1dDouble.c +13 -0
  1436. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial1dFloat.c +13 -0
  1437. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial1dInt32.c +13 -0
  1438. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial1dInt64.c +13 -0
  1439. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial2dDouble.c +13 -0
  1440. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial2dFloat.c +13 -0
  1441. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial2dInt32.c +13 -0
  1442. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial2dInt64.c +13 -0
  1443. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial3dDouble.c +13 -0
  1444. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial3dFloat.c +13 -0
  1445. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial3dInt32.c +13 -0
  1446. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial3dInt64.c +13 -0
  1447. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial4dDouble.c +13 -0
  1448. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial4dFloat.c +13 -0
  1449. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial4dInt32.c +13 -0
  1450. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial4dInt64.c +13 -0
  1451. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testcases/cuda.c +24 -0
  1452. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testcases/omp.c +20 -0
  1453. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testcases/serial.c +31 -0
  1454. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/zfpEndtoendBase.c +591 -0
  1455. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/execPolicy/CMakeLists.txt +19 -0
  1456. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/execPolicy/testCuda.c +95 -0
  1457. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/execPolicy/testOmp.c +213 -0
  1458. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/execPolicy/testOmpInternal.c +84 -0
  1459. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/inline/CMakeLists.txt +11 -0
  1460. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/inline/testBitstream.c +674 -0
  1461. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/inline/testBitstreamSmallWsize.c +119 -0
  1462. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/inline/testBitstreamStrided.c +95 -0
  1463. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/CMakeLists.txt +48 -0
  1464. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpField1d.c +24 -0
  1465. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpField1f.c +24 -0
  1466. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpField2d.c +28 -0
  1467. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpField2f.c +28 -0
  1468. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpField3d.c +32 -0
  1469. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpField3f.c +32 -0
  1470. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpField4d.c +36 -0
  1471. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpField4f.c +36 -0
  1472. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpHeader.c +497 -0
  1473. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpPromote.c +120 -0
  1474. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpStream.c +934 -0
  1475. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/zfpFieldBase.c +256 -0
  1476. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/testviews.cpp +241 -0
  1477. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/testzfp.cpp +1182 -0
  1478. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/CMakeLists.txt +43 -0
  1479. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/fixedpoint96.c +296 -0
  1480. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/fixedpoint96.h +33 -0
  1481. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/genChecksums.sh +51 -0
  1482. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/genSmoothRandNums.c +918 -0
  1483. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/genSmoothRandNums.h +33 -0
  1484. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/rand32.c +43 -0
  1485. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/rand32.h +22 -0
  1486. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/rand64.c +52 -0
  1487. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/rand64.h +26 -0
  1488. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/stridedOperations.c +133 -0
  1489. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/stridedOperations.h +37 -0
  1490. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/testMacros.h +39 -0
  1491. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/zfpChecksums.c +171 -0
  1492. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/zfpChecksums.h +35 -0
  1493. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/zfpCompressionParams.c +20 -0
  1494. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/zfpCompressionParams.h +15 -0
  1495. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/zfpHash.c +126 -0
  1496. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/zfpHash.h +26 -0
  1497. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/zfpTimer.c +56 -0
  1498. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/zfpTimer.h +24 -0
  1499. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/utils/CMakeLists.txt +16 -0
  1500. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/utils/Makefile +14 -0
  1501. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/utils/zfp.c +629 -0
  1502. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/zfp-config-version.cmake.in +17 -0
  1503. tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/zfp-config.cmake.in +44 -0
  1504. tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/ChangeLog.md +239 -0
  1505. tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/LICENSE +22 -0
  1506. tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/examples/example1.c +105 -0
  1507. tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/examples/example2.c +164 -0
  1508. tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/examples/example3.c +269 -0
  1509. tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/examples/example4.c +102 -0
  1510. tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/examples/example5.c +327 -0
  1511. tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/examples/example6.c +162 -0
  1512. tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/miniz.c +7854 -0
  1513. tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/miniz.h +1422 -0
  1514. tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/readme.md +46 -0
  1515. tinyvdb-0.1.0/third_party/tinyexr/deps/nanozlib/README.md +48 -0
  1516. tinyvdb-0.1.0/third_party/tinyexr/deps/nanozlib/nanozlib.h +471 -0
  1517. tinyvdb-0.1.0/third_party/tinyexr/deps/nanozlib/wuffs-v0.3.c +22438 -0
  1518. tinyvdb-0.1.0/third_party/tinyexr/example_v2_usage.cc +119 -0
  1519. tinyvdb-0.1.0/third_party/tinyexr/examples/common/cxxopts.hpp +1988 -0
  1520. tinyvdb-0.1.0/third_party/tinyexr/examples/common/stb_image.h +7462 -0
  1521. tinyvdb-0.1.0/third_party/tinyexr/examples/common/stb_image_resize.h +2585 -0
  1522. tinyvdb-0.1.0/third_party/tinyexr/examples/common/stb_image_write.h +1048 -0
  1523. tinyvdb-0.1.0/third_party/tinyexr/examples/cube2longlat/Makefile +28 -0
  1524. tinyvdb-0.1.0/third_party/tinyexr/examples/cube2longlat/README.md +46 -0
  1525. tinyvdb-0.1.0/third_party/tinyexr/examples/cube2longlat/cube2longlat.cc +470 -0
  1526. tinyvdb-0.1.0/third_party/tinyexr/examples/deepview/Makefile +2 -0
  1527. tinyvdb-0.1.0/third_party/tinyexr/examples/deepview/deepview_screencast.gif +0 -0
  1528. tinyvdb-0.1.0/third_party/tinyexr/examples/deepview/main.cc +277 -0
  1529. tinyvdb-0.1.0/third_party/tinyexr/examples/deepview/trackball.cc +324 -0
  1530. tinyvdb-0.1.0/third_party/tinyexr/examples/deepview/trackball.h +81 -0
  1531. tinyvdb-0.1.0/third_party/tinyexr/examples/exr2fptiff/Makefile +32 -0
  1532. tinyvdb-0.1.0/third_party/tinyexr/examples/exr2fptiff/README.md +7 -0
  1533. tinyvdb-0.1.0/third_party/tinyexr/examples/exr2fptiff/exr2fptiff.cc +199 -0
  1534. tinyvdb-0.1.0/third_party/tinyexr/examples/exr2fptiff/tiny_dng_writer.h +1356 -0
  1535. tinyvdb-0.1.0/third_party/tinyexr/examples/exr2ldr/Makefile +3 -0
  1536. tinyvdb-0.1.0/third_party/tinyexr/examples/exr2ldr/exr2ldr.cc +111 -0
  1537. tinyvdb-0.1.0/third_party/tinyexr/examples/exr2rgbe/Makefile +3 -0
  1538. tinyvdb-0.1.0/third_party/tinyexr/examples/exr2rgbe/exr2rgbe.cc +38 -0
  1539. tinyvdb-0.1.0/third_party/tinyexr/examples/exrfilter/Makefile +3 -0
  1540. tinyvdb-0.1.0/third_party/tinyexr/examples/exrfilter/README.md +5 -0
  1541. tinyvdb-0.1.0/third_party/tinyexr/examples/exrfilter/exrfilter.cc +151 -0
  1542. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/DroidSans.ttf +0 -0
  1543. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/CommonWindowInterface.h +130 -0
  1544. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/MacOpenGLWindow.h +118 -0
  1545. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/MacOpenGLWindow.mm +1169 -0
  1546. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/OpenGL2Include.h +59 -0
  1547. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/OpenGLInclude.h +66 -0
  1548. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/Win32InternalWindowData.h +68 -0
  1549. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/Win32OpenGLWindow.cpp +200 -0
  1550. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/Win32OpenGLWindow.h +64 -0
  1551. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/Win32Window.cpp +810 -0
  1552. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/Win32Window.h +86 -0
  1553. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/X11OpenGLWindow.cpp +1118 -0
  1554. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/X11OpenGLWindow.h +78 -0
  1555. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/README.md +56 -0
  1556. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/Glew/CustomGL/glew.h +19093 -0
  1557. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/Glew/CustomGL/glxew.h +1750 -0
  1558. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/Glew/CustomGL/wglew.h +1421 -0
  1559. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/Glew/glew.c +18897 -0
  1560. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/LICENSE +16 -0
  1561. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/README.md +137 -0
  1562. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/screens/open_cocoa.png +0 -0
  1563. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/screens/open_gtk3.png +0 -0
  1564. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/screens/open_win8.png +0 -0
  1565. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/src/SConstruct +99 -0
  1566. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/src/common.h +21 -0
  1567. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/src/include/nfd.h +69 -0
  1568. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/src/nfd_cocoa.m +235 -0
  1569. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/src/nfd_common.c +142 -0
  1570. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/src/nfd_common.h +37 -0
  1571. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/src/nfd_gtk.c +326 -0
  1572. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/src/nfd_win.cpp +619 -0
  1573. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/test/SConstruct +70 -0
  1574. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/test/test_opendialog.c +29 -0
  1575. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/test/test_opendialogmultiple.c +34 -0
  1576. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/test/test_savedialog.c +28 -0
  1577. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/exr-io.cc +60 -0
  1578. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/exr-io.h +16 -0
  1579. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/findOpenGLGlewGlut.lua +90 -0
  1580. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/main.cc +541 -0
  1581. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/nuklear.h +25417 -0
  1582. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/nuklear_btgui_gl2.h +386 -0
  1583. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/premake4.lua +87 -0
  1584. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/screenshots/exrview.png +0 -0
  1585. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/shader.frag +12 -0
  1586. tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/shader.vert +12 -0
  1587. tinyvdb-0.1.0/third_party/tinyexr/examples/ldr2exr/Makefile +3 -0
  1588. tinyvdb-0.1.0/third_party/tinyexr/examples/ldr2exr/ldr2exr.cc +85 -0
  1589. tinyvdb-0.1.0/third_party/tinyexr/examples/nornalmap/Makefile +3 -0
  1590. tinyvdb-0.1.0/third_party/tinyexr/examples/nornalmap/README.md +13 -0
  1591. tinyvdb-0.1.0/third_party/tinyexr/examples/nornalmap/main.cc +269 -0
  1592. tinyvdb-0.1.0/third_party/tinyexr/examples/resize/Makefile +3 -0
  1593. tinyvdb-0.1.0/third_party/tinyexr/examples/resize/resize.cc +46 -0
  1594. tinyvdb-0.1.0/third_party/tinyexr/examples/rgbe2exr/Makefile +3 -0
  1595. tinyvdb-0.1.0/third_party/tinyexr/examples/rgbe2exr/rgbe2exr.cc +81 -0
  1596. tinyvdb-0.1.0/third_party/tinyexr/examples/spectral/Makefile +37 -0
  1597. tinyvdb-0.1.0/third_party/tinyexr/examples/spectral/README.md +102 -0
  1598. tinyvdb-0.1.0/third_party/tinyexr/examples/spectral/spectral_example.cc +390 -0
  1599. tinyvdb-0.1.0/third_party/tinyexr/examples/testmapgen/Makefile +3 -0
  1600. tinyvdb-0.1.0/third_party/tinyexr/examples/testmapgen/README.md +15 -0
  1601. tinyvdb-0.1.0/third_party/tinyexr/examples/testmapgen/testmapgen.cc +86 -0
  1602. tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/.gitignore +16 -0
  1603. tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/Makefile +64 -0
  1604. tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/README.md +204 -0
  1605. tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/build.sh +152 -0
  1606. tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/html/index.html +70 -0
  1607. tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/html/style.css +238 -0
  1608. tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/js/benchmark-browser.js +327 -0
  1609. tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/js/benchmark.mjs +231 -0
  1610. tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/js/results-formatter.js +125 -0
  1611. tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/js/utils.js +112 -0
  1612. tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/src/v3_benchmark_bindings.cc +626 -0
  1613. tinyvdb-0.1.0/third_party/tinyexr/experimental/js/Makefile +2 -0
  1614. tinyvdb-0.1.0/third_party/tinyexr/experimental/js/README.md +38 -0
  1615. tinyvdb-0.1.0/third_party/tinyexr/experimental/js/binding.cc +79 -0
  1616. tinyvdb-0.1.0/third_party/tinyexr/experimental/js/compile_to_js.sh +15 -0
  1617. tinyvdb-0.1.0/third_party/tinyexr/experimental/js/index.html +41 -0
  1618. tinyvdb-0.1.0/third_party/tinyexr/experimental/js/test.js +17 -0
  1619. tinyvdb-0.1.0/third_party/tinyexr/experimental/js/tinyexr.js +1 -0
  1620. tinyvdb-0.1.0/third_party/tinyexr/exr_reader.hh +191 -0
  1621. tinyvdb-0.1.0/third_party/tinyexr/jni/Android.mk +12 -0
  1622. tinyvdb-0.1.0/third_party/tinyexr/jni/Application.mk +2 -0
  1623. tinyvdb-0.1.0/third_party/tinyexr/jni/Makefile +8 -0
  1624. tinyvdb-0.1.0/third_party/tinyexr/jni/README.md +4 -0
  1625. tinyvdb-0.1.0/third_party/tinyexr/kuroga.py +312 -0
  1626. tinyvdb-0.1.0/third_party/tinyexr/premake4.lua +55 -0
  1627. tinyvdb-0.1.0/third_party/tinyexr/streamreader.hh +171 -0
  1628. tinyvdb-0.1.0/third_party/tinyexr/streamwriter.hh +320 -0
  1629. tinyvdb-0.1.0/third_party/tinyexr/test/CMakeLists.txt +23 -0
  1630. tinyvdb-0.1.0/third_party/tinyexr/test/c-binding/Makefile +5 -0
  1631. tinyvdb-0.1.0/third_party/tinyexr/test/c-binding/test.c +19 -0
  1632. tinyvdb-0.1.0/third_party/tinyexr/test/exrcat/exrcat.cpp +127 -0
  1633. tinyvdb-0.1.0/third_party/tinyexr/test/exrwrite/exrwritetest.cpp +132 -0
  1634. tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/Makefile +14 -0
  1635. tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/README.md +17 -0
  1636. tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/fuzz.cc +29 -0
  1637. tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/issue-167-heap-buffer-overflow +0 -0
  1638. tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/issue-62-tinyexr_memcpy_heap-buffer-overflow +0 -0
  1639. tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/issue-63-tinyexr_signed-integer-overflow +0 -0
  1640. tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/issue-77-heap-buffer-overflow +0 -0
  1641. tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/issue176-heap-buffer-overflow +0 -0
  1642. tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/issue177-heap-buffer-overflow +0 -0
  1643. tinyvdb-0.1.0/third_party/tinyexr/test/issues/160/README.md +1 -0
  1644. tinyvdb-0.1.0/third_party/tinyexr/test/issues/160/main.py +57 -0
  1645. tinyvdb-0.1.0/third_party/tinyexr/test/issues/160/requirements.txt +3 -0
  1646. tinyvdb-0.1.0/third_party/tinyexr/test/unit/Makefile +35 -0
  1647. tinyvdb-0.1.0/third_party/tinyexr/test/unit/README.md +98 -0
  1648. tinyvdb-0.1.0/third_party/tinyexr/test/unit/catch.hpp +10445 -0
  1649. tinyvdb-0.1.0/third_party/tinyexr/test/unit/config-msvc.py +52 -0
  1650. tinyvdb-0.1.0/third_party/tinyexr/test/unit/config-posix.py +53 -0
  1651. tinyvdb-0.1.0/third_party/tinyexr/test/unit/kuroga.py +312 -0
  1652. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/000-issue194.exr +0 -0
  1653. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/2by2.exr +0 -0
  1654. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/flaga.exr +0 -0
  1655. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/issue-160-piz-decode.exr +0 -0
  1656. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/issue-238-double-free-multipart.exr +0 -0
  1657. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/issue-238-double-free.exr +0 -0
  1658. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/piz-bug-issue-100.exr +0 -0
  1659. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-1383755b301e5f505b2198dc0508918b537fdf48bbfc6deeffe268822e6f6cd6 +0 -0
  1660. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-24322747c47e87a10e4407528b779a1a763a48135384909b3d1010bbba1d4c28_min +0 -0
  1661. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-255456016cca60ddb5c5ed6898182e13739bf687b17d1411e97bb60ad95e7a84_min +0 -0
  1662. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-360c3b0555cb979ca108f2d178cf8a80959cfeabaa4ec1d310d062fa653a8c6b_min +0 -0
  1663. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-3f1f642c3356fd8e8d2a0787613ec09a56572b3a1e38c9629b6db9e8dead1117_min +0 -0
  1664. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-5ace655ef080932dcc7e4abc9eab1d4f82c845453464993dfa3eb6c5822a1621 +0 -0
  1665. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-5b66774a7498c635334ad386be0c3b359951738ac47f14878a3346d1c6ea0fe5_min +0 -0
  1666. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-d5c9c893e559277a3320c196523095b94db93985620ac338d037487e0e613047_min +0 -0
  1667. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-df76d1f27adb8927a1446a603028272140905c168a336128465a1162ec7af270.mini +0 -0
  1668. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-e7fa6404daa861369d2172fe68e08f9d38c0989f57da7bcfb510bab67e19ca9f +0 -0
  1669. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-eedff3a9e99eb1c0fd3a3b0989e7c44c0a69f04f10b23e5264f362a4773f4397_min +0 -0
  1670. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-efe9007bfdcbbe8a1569bf01fa9acadb8261ead49cb83f6e91fcdc4dae2e99a3_min +0 -0
  1671. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/tiled_half_1x1_alpha.exr +0 -0
  1672. tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression//346/227/245/346/234/254/350/252/236.exr +0 -0
  1673. tinyvdb-0.1.0/third_party/tinyexr/test/unit/tester-v2.cc +2455 -0
  1674. tinyvdb-0.1.0/third_party/tinyexr/test/unit/tester-v3-simd.cc +493 -0
  1675. tinyvdb-0.1.0/third_party/tinyexr/test/unit/tester-v3.cc +1733 -0
  1676. tinyvdb-0.1.0/third_party/tinyexr/test/unit/tester.cc +3355 -0
  1677. tinyvdb-0.1.0/third_party/tinyexr/test/unit/vcbuild.bat +4 -0
  1678. tinyvdb-0.1.0/third_party/tinyexr/test/unit/win32-filelist-utf16le.inc +0 -0
  1679. tinyvdb-0.1.0/third_party/tinyexr/test/unit/win32-filelist-utf8.inc +1 -0
  1680. tinyvdb-0.1.0/third_party/tinyexr/test_huffman.cc +564 -0
  1681. tinyvdb-0.1.0/third_party/tinyexr/test_simd.cc +555 -0
  1682. tinyvdb-0.1.0/third_party/tinyexr/test_tinyexr.cc +470 -0
  1683. tinyvdb-0.1.0/third_party/tinyexr/test_v2_api.cc +181 -0
  1684. tinyvdb-0.1.0/third_party/tinyexr/test_writer.cc +253 -0
  1685. tinyvdb-0.1.0/third_party/tinyexr/tinyexr.cc +8 -0
  1686. tinyvdb-0.1.0/third_party/tinyexr/tinyexr.h +11345 -0
  1687. tinyvdb-0.1.0/third_party/tinyexr/tinyexr_c.h +1081 -0
  1688. tinyvdb-0.1.0/third_party/tinyexr/tinyexr_c_impl.c +8269 -0
  1689. tinyvdb-0.1.0/third_party/tinyexr/tinyexr_huffman.hh +1695 -0
  1690. tinyvdb-0.1.0/third_party/tinyexr/tinyexr_piz.hh +1970 -0
  1691. tinyvdb-0.1.0/third_party/tinyexr/tinyexr_simd.hh +1796 -0
  1692. tinyvdb-0.1.0/third_party/tinyexr/tinyexr_simd_c.h +89 -0
  1693. tinyvdb-0.1.0/third_party/tinyexr/tinyexr_simd_wrapper.cc +83 -0
  1694. tinyvdb-0.1.0/third_party/tinyexr/tinyexr_v2.hh +1492 -0
  1695. tinyvdb-0.1.0/third_party/tinyexr/tinyexr_v2_impl.hh +7478 -0
  1696. tinyvdb-0.1.0/third_party/tinyexr/tinyexr_v3.hh +1069 -0
  1697. tinyvdb-0.1.0/third_party/tinyexr/vcbuild.bat +11 -0
  1698. tinyvdb-0.1.0/third_party/tinyexr/vcsetup2019.bat +4 -0
  1699. tinyvdb-0.1.0/vcsetup-2019.bat +4 -0
  1700. tinyvdb-0.1.0/web/CMakeLists.txt +61 -0
  1701. tinyvdb-0.1.0/web/build.sh +40 -0
  1702. tinyvdb-0.1.0/web/tinyvdb_embind.cc +528 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ BasedOnStyle: Google
3
+ IndentWidth: 2
4
+ TabWidth: 2
5
+ UseTab: Never
6
+ BreakBeforeBraces: Attach
7
+ Standard: Cpp11
@@ -0,0 +1,104 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: ['**']
6
+ pull_request:
7
+ branches: ['**']
8
+
9
+ jobs:
10
+
11
+ # ---------------------------------------------------------------------------
12
+ # Linux x64
13
+ # ---------------------------------------------------------------------------
14
+ linux-x64:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ with:
19
+ submodules: recursive
20
+ - name: Configure
21
+ run: cmake -B build -DCMAKE_BUILD_TYPE=Release
22
+ - name: Build
23
+ run: cmake --build build -j$(nproc)
24
+ - name: Verify binaries
25
+ run: |
26
+ ./build/vdbdump --help || true
27
+ ./build/vdbrender --help || true
28
+
29
+ # ---------------------------------------------------------------------------
30
+ # Linux arm64 (cross-compile)
31
+ # ---------------------------------------------------------------------------
32
+ linux-arm64:
33
+ runs-on: ubuntu-latest
34
+ steps:
35
+ - uses: actions/checkout@v4
36
+ with:
37
+ submodules: recursive
38
+ - name: Install cross toolchain
39
+ run: |
40
+ sudo apt-get update
41
+ sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
42
+ - name: Configure
43
+ run: |
44
+ cmake -B build -DCMAKE_BUILD_TYPE=Release \
45
+ -DCMAKE_C_COMPILER=aarch64-linux-gnu-gcc \
46
+ -DCMAKE_CXX_COMPILER=aarch64-linux-gnu-g++ \
47
+ -DCMAKE_SYSTEM_NAME=Linux \
48
+ -DCMAKE_SYSTEM_PROCESSOR=aarch64
49
+ - name: Build
50
+ run: cmake --build build -j$(nproc)
51
+ - name: Verify binaries exist
52
+ run: file build/vdbdump build/vdbrender
53
+
54
+ # ---------------------------------------------------------------------------
55
+ # macOS arm64
56
+ # ---------------------------------------------------------------------------
57
+ macos-arm64:
58
+ runs-on: macos-latest
59
+ steps:
60
+ - uses: actions/checkout@v4
61
+ with:
62
+ submodules: recursive
63
+ - name: Configure
64
+ run: cmake -B build -DCMAKE_BUILD_TYPE=Release
65
+ - name: Build
66
+ run: cmake --build build -j$(sysctl -n hw.ncpu)
67
+ - name: Verify binaries
68
+ run: |
69
+ ./build/vdbdump --help || true
70
+ ./build/vdbrender --help || true
71
+
72
+ # ---------------------------------------------------------------------------
73
+ # Windows x64 (MSVC)
74
+ # ---------------------------------------------------------------------------
75
+ windows-x64:
76
+ runs-on: windows-latest
77
+ steps:
78
+ - uses: actions/checkout@v4
79
+ with:
80
+ submodules: recursive
81
+ - name: Configure
82
+ run: cmake -B build -A x64
83
+ - name: Build
84
+ run: cmake --build build --config Release
85
+ - name: Verify binaries
86
+ run: |
87
+ dir build\Release\*.exe
88
+
89
+ # ---------------------------------------------------------------------------
90
+ # Windows arm64 (MSVC cross-compile)
91
+ # ---------------------------------------------------------------------------
92
+ windows-arm64:
93
+ runs-on: windows-latest
94
+ steps:
95
+ - uses: actions/checkout@v4
96
+ with:
97
+ submodules: recursive
98
+ - name: Configure
99
+ run: cmake -B build -A ARM64
100
+ - name: Build
101
+ run: cmake --build build --config Release
102
+ - name: Verify binaries
103
+ run: |
104
+ dir build\Release\*.exe
@@ -0,0 +1,97 @@
1
+ name: Build wheels
2
+
3
+ on:
4
+ push:
5
+ tags: ['v*']
6
+ workflow_dispatch:
7
+
8
+ jobs:
9
+
10
+ build-wheels:
11
+ name: Wheels (${{ matrix.os }})
12
+ runs-on: ${{ matrix.os }}
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ os: [ubuntu-latest, macos-latest, windows-latest]
17
+
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ with:
21
+ submodules: recursive
22
+
23
+ - name: Set up QEMU (Linux aarch64)
24
+ if: runner.os == 'Linux'
25
+ uses: docker/setup-qemu-action@v3
26
+ with:
27
+ platforms: arm64
28
+
29
+ - uses: actions/setup-python@v5
30
+ with:
31
+ python-version: '3.10'
32
+
33
+ - name: Install cibuildwheel
34
+ run: pip install cibuildwheel
35
+
36
+ - name: Build wheels
37
+ run: cibuildwheel --output-dir wheelhouse
38
+ env:
39
+ CIBW_BUILD: "cp311-*"
40
+ CIBW_SKIP: "*-musllinux_i686"
41
+ CIBW_ARCHS_LINUX: "x86_64 aarch64"
42
+ CIBW_ARCHS_MACOS: "x86_64 arm64"
43
+ CIBW_ARCHS_WINDOWS: "AMD64"
44
+ CIBW_TEST_REQUIRES: "pytest"
45
+ CIBW_TEST_COMMAND: "pytest {project}/python/tests -x"
46
+
47
+ - uses: actions/upload-artifact@v4
48
+ with:
49
+ name: wheels-${{ matrix.os }}
50
+ path: ./wheelhouse/*.whl
51
+
52
+ build-sdist:
53
+ name: Source distribution
54
+ runs-on: ubuntu-latest
55
+ steps:
56
+ - uses: actions/checkout@v4
57
+ with:
58
+ submodules: recursive
59
+
60
+ - uses: actions/setup-python@v5
61
+ with:
62
+ python-version: '3.10'
63
+
64
+ - name: Build sdist
65
+ run: pip install build && python -m build --sdist
66
+
67
+ - uses: actions/upload-artifact@v4
68
+ with:
69
+ name: sdist
70
+ path: dist/*.tar.gz
71
+
72
+ publish:
73
+ name: Publish to PyPI
74
+ needs: [build-wheels, build-sdist]
75
+ runs-on: ubuntu-latest
76
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
77
+ permissions:
78
+ id-token: write
79
+ attestations: write
80
+ contents: read
81
+ environment:
82
+ name: pypi
83
+ url: https://pypi.org/p/tinyvdb
84
+
85
+ steps:
86
+ - uses: actions/download-artifact@v4
87
+ with:
88
+ path: dist
89
+ merge-multiple: true
90
+
91
+ - name: Generate artifact attestations
92
+ uses: actions/attest-build-provenance@v2
93
+ with:
94
+ subject-path: 'dist/*'
95
+
96
+ - name: Publish to PyPI
97
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,36 @@
1
+ # Build artifacts
2
+ build*/
3
+ *.o
4
+ *.obj
5
+ *.a
6
+ *.lib
7
+
8
+ # Shared libraries
9
+ *.so
10
+ *.dylib
11
+ *.dll
12
+ *.pyd
13
+
14
+ # Python
15
+ __pycache__/
16
+ *.py[cod]
17
+ *.egg-info/
18
+ *.egg
19
+ dist/
20
+ wheelhouse/
21
+ .eggs/
22
+ *.whl
23
+
24
+ # Test data
25
+ *.vdb
26
+
27
+ # Profiling
28
+ gmon.out
29
+
30
+ # Editor / OS
31
+ .vscode/
32
+ .idea/
33
+ *.swp
34
+ *~
35
+ .DS_Store
36
+ Thumbs.db
@@ -0,0 +1,6 @@
1
+ [submodule "third_party/c-blosc"]
2
+ path = third_party/c-blosc
3
+ url = https://github.com/Blosc/c-blosc.git
4
+ [submodule "third_party/tinyexr"]
5
+ path = third_party/tinyexr
6
+ url = https://github.com/syoyo/tinyexr.git
@@ -0,0 +1,114 @@
1
+ cmake_minimum_required(VERSION 3.5)
2
+
3
+ project(tinyvdb C CXX)
4
+
5
+ # options
6
+ option(TINYVDB_USE_CCACHE "Use ccache for faster recompile." ON)
7
+ option(TINYVDB_BUILD_TESTS "Build tests" OFF)
8
+ option(TINYVDB_BUILD_EXAMPLES "Build examples" ON)
9
+ option(TINYVDB_USE_SYSTEM_ZLIB "Use system zlib instead of bundled miniz" OFF)
10
+ option(TINYVDB_USE_ZSTD "Enable ZSTD compression support in BLOSC frames" ON)
11
+ option(TINYVDB_USE_SYSTEM_ZSTD "Use system zstd instead of bundled deps/zstd" OFF)
12
+ option(TINYVDB_BUILD_VDBRENDER "Build vdbrender volume path tracer example" ON)
13
+ option(TINYVDB_BUILD_PYTHON "Build Python extension" OFF)
14
+
15
+ # cmake modules
16
+ list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
17
+ list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake/sanitizers)
18
+ find_package(Sanitizers QUIET)
19
+
20
+ # C11 for the library, C++11 for examples
21
+ set(CMAKE_C_STANDARD 11)
22
+ set(CMAKE_C_STANDARD_REQUIRED ON)
23
+ set(CMAKE_C_EXTENSIONS OFF)
24
+
25
+ set(CMAKE_CXX_STANDARD 11)
26
+ set(CMAKE_CXX_STANDARD_REQUIRED ON)
27
+ set(CMAKE_CXX_EXTENSIONS OFF)
28
+
29
+ # [ccache]
30
+ if(TINYVDB_USE_CCACHE)
31
+ if(NOT MSVC)
32
+ find_program(CCACHE_EXE ccache)
33
+ if(CCACHE_EXE)
34
+ message(STATUS "Using ccache: ${CCACHE_EXE}")
35
+ set(CMAKE_C_COMPILER_LAUNCHER "${CCACHE_EXE}")
36
+ set(CMAKE_CXX_COMPILER_LAUNCHER "${CCACHE_EXE}")
37
+ endif()
38
+ endif()
39
+ endif()
40
+
41
+ # tinyvdb static library (C11 implementation + miniz + lz4)
42
+ set(TINYVDB_C_SOURCES
43
+ ${PROJECT_SOURCE_DIR}/src/tinyvdb_io.c
44
+ ${PROJECT_SOURCE_DIR}/src/lz4.c)
45
+ if(NOT TINYVDB_USE_SYSTEM_ZLIB)
46
+ list(APPEND TINYVDB_C_SOURCES ${PROJECT_SOURCE_DIR}/src/miniz.c)
47
+ endif()
48
+
49
+ add_library(tinyvdb STATIC ${TINYVDB_C_SOURCES})
50
+ target_include_directories(tinyvdb PUBLIC ${PROJECT_SOURCE_DIR}/src)
51
+ target_compile_definitions(tinyvdb PRIVATE TINYVDB_IO_IMPLEMENTATION MINIZ_NO_STDIO)
52
+
53
+ # When building the Python extension, the static lib must be PIC
54
+ if(TINYVDB_BUILD_PYTHON)
55
+ set_target_properties(tinyvdb PROPERTIES POSITION_INDEPENDENT_CODE ON)
56
+ endif()
57
+
58
+ # Force system zlib for iOS
59
+ if(IOS)
60
+ set(TINYVDB_USE_SYSTEM_ZLIB ON CACHE INTERNAL "" FORCE)
61
+ endif()
62
+
63
+ if(TINYVDB_USE_SYSTEM_ZLIB)
64
+ find_package(ZLIB REQUIRED)
65
+ target_link_libraries(tinyvdb PUBLIC ZLIB::ZLIB)
66
+ target_compile_definitions(tinyvdb PUBLIC TVDB_USE_SYSTEM_ZLIB)
67
+ endif()
68
+
69
+ # ZSTD
70
+ if(TINYVDB_USE_ZSTD)
71
+ if(TINYVDB_USE_SYSTEM_ZSTD)
72
+ find_package(PkgConfig QUIET)
73
+ if(PkgConfig_FOUND)
74
+ pkg_check_modules(ZSTD IMPORTED_TARGET libzstd)
75
+ endif()
76
+ if(ZSTD_FOUND)
77
+ target_link_libraries(tinyvdb PUBLIC PkgConfig::ZSTD)
78
+ else()
79
+ find_library(ZSTD_LIBRARY NAMES zstd)
80
+ find_path(ZSTD_INCLUDE_DIR NAMES zstd.h)
81
+ if(ZSTD_LIBRARY AND ZSTD_INCLUDE_DIR)
82
+ target_link_libraries(tinyvdb PUBLIC ${ZSTD_LIBRARY})
83
+ target_include_directories(tinyvdb PUBLIC ${ZSTD_INCLUDE_DIR})
84
+ else()
85
+ message(FATAL_ERROR "System zstd not found. Install libzstd-dev or set TINYVDB_USE_SYSTEM_ZSTD=OFF")
86
+ endif()
87
+ endif()
88
+ else()
89
+ # Use bundled single-file zstd from deps/
90
+ target_sources(tinyvdb PRIVATE ${PROJECT_SOURCE_DIR}/deps/zstd.c)
91
+ target_include_directories(tinyvdb PUBLIC ${PROJECT_SOURCE_DIR}/deps)
92
+ endif()
93
+ target_compile_definitions(tinyvdb PUBLIC TVDB_USE_ZSTD)
94
+ endif()
95
+
96
+ # Examples
97
+ if(TINYVDB_BUILD_EXAMPLES)
98
+ add_subdirectory(examples/vdbdump)
99
+ endif()
100
+
101
+ # vdbrender (volume path tracer)
102
+ if(TINYVDB_BUILD_VDBRENDER)
103
+ add_subdirectory(examples/vdbrender)
104
+ endif()
105
+
106
+ # Python extension
107
+ if(TINYVDB_BUILD_PYTHON)
108
+ add_subdirectory(python)
109
+ endif()
110
+
111
+ # [VisualStudio]
112
+ if(WIN32)
113
+ set_property(DIRECTORY PROPERTY VS_STARTUP_PROJECT tinyvdb)
114
+ endif()
tinyvdb-0.1.0/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to the Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by the Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding any notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. Please also get an
186
+ "Whose License Is It Anyway?" determination for your project
187
+ if possible.
188
+
189
+ Copyright 2026 - Present Syoyo Fujita
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
tinyvdb-0.1.0/Makefile ADDED
@@ -0,0 +1,19 @@
1
+ # BLOSC master
2
+ BLOSC_INC=-I./third_party/c-blosc/blosc
3
+ BLOSC_LIB=./third_party/c-blosc/build/blosc/libblosc.a
4
+
5
+ # BLOSC v1.5
6
+ # BLOSC_INC=-I./third_party/c-blosc/blosc
7
+ # BLOSC_LIB=./third_party/c-blosc/build/blosc/libblosc.a -lz -llz4 -lsnappy
8
+
9
+
10
+ ## NODEP version
11
+ #all:
12
+ # clang -Wno-#pragma-messages -c -g -O2 miniz.c
13
+ # clang++ -o loader_test -fsanitize=address -O2 -g -Weverything -Werror -Wno-c++98-compat loader-test.cc miniz.o
14
+
15
+ # BLOSC(static lib) version
16
+
17
+ all:
18
+ clang -Wno-#pragma-messages -c -g -O1 src/miniz.c
19
+ clang++ -o loader_test -DTINYVDBIO_USE_BLOSC $(BLOSC_INC) -I./src -O3 -g -Weverything -Werror -Wno-c++98-compat tests/loader-test.cc miniz.o $(BLOSC_LIB) -pthread