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.
- tinyvdb-0.1.0/.clang-format +7 -0
- tinyvdb-0.1.0/.github/workflows/ci.yml +104 -0
- tinyvdb-0.1.0/.github/workflows/wheels.yml +97 -0
- tinyvdb-0.1.0/.gitignore +36 -0
- tinyvdb-0.1.0/.gitmodules +6 -0
- tinyvdb-0.1.0/CMakeLists.txt +114 -0
- tinyvdb-0.1.0/LICENSE +201 -0
- tinyvdb-0.1.0/Makefile +19 -0
- tinyvdb-0.1.0/PKG-INFO +296 -0
- tinyvdb-0.1.0/README.md +281 -0
- tinyvdb-0.1.0/cmake/ClangClCMakeCompileRules.cmake +9 -0
- tinyvdb-0.1.0/cmake/aarch64-linux-gnu.toolchain +14 -0
- tinyvdb-0.1.0/cmake/clang-cl-msvc-windows.cmake +329 -0
- tinyvdb-0.1.0/cmake/clang-cl-msvc-wsl.cmake +331 -0
- tinyvdb-0.1.0/cmake/ios.toolchain.cmake +105 -0
- tinyvdb-0.1.0/cmake/llvm-mingw-cross.cmake +24 -0
- tinyvdb-0.1.0/cmake/llvm-mingw-win64.cmake +20 -0
- tinyvdb-0.1.0/cmake/mingw64-cross.cmake +20 -0
- tinyvdb-0.1.0/cmake/sanitizers/FindASan.cmake +59 -0
- tinyvdb-0.1.0/cmake/sanitizers/FindMSan.cmake +57 -0
- tinyvdb-0.1.0/cmake/sanitizers/FindSanitizers.cmake +94 -0
- tinyvdb-0.1.0/cmake/sanitizers/FindTSan.cmake +65 -0
- tinyvdb-0.1.0/cmake/sanitizers/FindUBSan.cmake +46 -0
- tinyvdb-0.1.0/cmake/sanitizers/asan-wrapper +55 -0
- tinyvdb-0.1.0/cmake/sanitizers/sanitize-helpers.cmake +177 -0
- tinyvdb-0.1.0/deps/zstd.c +49058 -0
- tinyvdb-0.1.0/deps/zstd.h +3198 -0
- tinyvdb-0.1.0/deps/zstd_errors.h +107 -0
- tinyvdb-0.1.0/doc/NOTE.md +89 -0
- tinyvdb-0.1.0/doc/fileformat.md +59 -0
- tinyvdb-0.1.0/examples/common/LICENSE.clipp +20 -0
- tinyvdb-0.1.0/examples/common/clipp.h +7024 -0
- tinyvdb-0.1.0/examples/common/cmake/FindASan.cmake +59 -0
- tinyvdb-0.1.0/examples/common/cmake/FindGLFW.cmake +258 -0
- tinyvdb-0.1.0/examples/common/cmake/FindMSan.cmake +57 -0
- tinyvdb-0.1.0/examples/common/cmake/FindSanitizers.cmake +87 -0
- tinyvdb-0.1.0/examples/common/cmake/FindTSan.cmake +64 -0
- tinyvdb-0.1.0/examples/common/cmake/FindUBSan.cmake +46 -0
- tinyvdb-0.1.0/examples/common/cmake/FindWayland.cmake +66 -0
- tinyvdb-0.1.0/examples/common/cmake/FindXCB.cmake +51 -0
- tinyvdb-0.1.0/examples/common/cmake/asan-wrapper +55 -0
- tinyvdb-0.1.0/examples/common/cmake/cotire.cmake +4190 -0
- tinyvdb-0.1.0/examples/common/cmake/mingw64-cross.cmake +13 -0
- tinyvdb-0.1.0/examples/common/cmake/sanitize-helpers.cmake +170 -0
- tinyvdb-0.1.0/examples/common/glad/include/KHR/khrplatform.h +290 -0
- tinyvdb-0.1.0/examples/common/glad/include/glad/glad.h +17175 -0
- tinyvdb-0.1.0/examples/common/glad/src/glad.c +9975 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/GenerateMappings.cmake +33 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/MacOSXBundleInfo.plist.in +38 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/i686-w64-mingw32-clang.cmake +13 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/i686-w64-mingw32.cmake +13 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/modules/FindEpollShim.cmake +17 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/modules/FindOSMesa.cmake +18 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/modules/FindWaylandProtocols.cmake +26 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/modules/FindXKBCommon.cmake +34 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/x86_64-w64-mingw32-clang.cmake +13 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMake/x86_64-w64-mingw32.cmake +13 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/CMakeLists.txt +374 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/LICENSE.md +23 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/README.md +364 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/cmake_uninstall.cmake.in +29 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/getopt.c +230 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/getopt.h +57 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/glad/gl.h +3840 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/glad/khrplatform.h +282 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/glad/vk_platform.h +92 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/glad/vulkan.h +3480 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/glad_gl.c +1791 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/glad_vulkan.c +593 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/linmath.h +574 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/mingw/_mingw_dxhelper.h +117 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/mingw/dinput.h +2467 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/mingw/xinput.h +239 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/nuklear.h +25539 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/nuklear_glfw_gl2.h +381 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/stb_image_write.h +1048 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/tinycthread.c +594 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/tinycthread.h +443 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/deps/vs2008/stdint.h +247 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/CMakeLists.txt +32 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/CODEOWNERS +10 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/CONTRIBUTING.md +391 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/Doxyfile.in +1848 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/DoxygenLayout.xml +71 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/SUPPORT.md +14 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/build.dox +386 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/compat.dox +285 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/compile.dox +290 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/context.dox +346 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/extra.css +1 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/extra.less +414 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/footer.html +7 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/header.html +33 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/bc_s.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/bdwn.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/bug.html +78 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/build_8dox.html +73 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/build_guide.html +205 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/closed.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/compat_8dox.html +73 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/compat_guide.html +144 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/compile_8dox.html +73 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/compile_guide.html +197 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/context_8dox.html +73 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/context_guide.html +250 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/deprecated.html +80 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/dir_5dcdc111a8cc46b7ba079b758fca78dc.html +77 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/dir_8e024bada8281d1e35d4f557736ec981.html +87 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/dir_c41baed9597671ff1a15b37f0402add0.html +83 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/dir_cadcc4232541fc0fdfafe7052b4d94e2.html +85 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/doc.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/doxygen.css +1766 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/doxygen.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/dynsections.js +120 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/extra.css +1 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/files.html +79 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/folderclosed.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/folderopen.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/glfw3_8h.html +1602 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/glfw3_8h_source.html +1206 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/glfw3native_8h.html +159 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/glfw3native_8h_source.html +272 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__buttons.html +274 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__context.html +294 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__errors.html +296 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__gamepad__axes.html +194 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__gamepad__buttons.html +402 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__hat__state.html +226 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__init.html +541 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__input.html +2226 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__joysticks.html +354 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__keys.html +2042 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__mods.html +190 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__monitor.html +840 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__native.html +770 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__shapes.html +190 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__vulkan.html +353 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/group__window.html +3424 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/index.html +91 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/input_8dox.html +73 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/input_guide.html +558 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/internal_8dox.html +73 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/internals_guide.html +124 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/intro_8dox.html +73 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/intro_guide.html +328 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/jquery.js +35 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/main_8dox.html +73 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/menu.js +50 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/menudata.js +28 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/modules.html +93 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/monitor_8dox.html +73 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/monitor_guide.html +221 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/moving_8dox.html +73 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/moving_guide.html +366 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/nav_f.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/nav_g.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/nav_h.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/news.html +601 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/news_8dox.html +73 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/open.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/pages.html +92 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/quick_8dox.html +73 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/quick_guide.html +386 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_0.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_0.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_1.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_1.js +9 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_10.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_10.js +6 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_11.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_11.js +7 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_2.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_2.js +9 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_3.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_3.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_4.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_4.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_5.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_5.js +476 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_6.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_6.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_7.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_7.js +11 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_8.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_8.js +5 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_9.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_9.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_a.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_a.js +11 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_b.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_b.js +6 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_c.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_c.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_d.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_d.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_e.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_e.js +7 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_f.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/all_f.js +6 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/classes_0.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/classes_0.js +7 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/close.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/defines_0.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/defines_0.js +31 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_0.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_0.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_1.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_1.js +6 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_2.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_2.js +5 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_3.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_3.js +6 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_4.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_4.js +6 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_5.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_5.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_6.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_6.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_7.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_7.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_8.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/files_8.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/functions_0.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/functions_0.js +146 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_0.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_0.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_1.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_1.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_2.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_2.js +5 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_3.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_3.js +5 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_4.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_4.js +5 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_5.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_5.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_6.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_6.js +6 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_7.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_7.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_8.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_8.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_9.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_9.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_a.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/groups_a.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/mag_sel.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/nomatches.html +12 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_0.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_0.js +5 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_1.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_1.js +5 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_2.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_2.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_3.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_3.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_4.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_4.js +6 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_5.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_5.js +5 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_6.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_6.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_7.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_7.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_8.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_8.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_9.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_9.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_a.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/pages_a.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/search.css +271 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/search.js +814 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/search_l.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/search_m.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/search_r.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/searchdata.js +39 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/typedefs_0.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/typedefs_0.js +32 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_0.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_0.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_1.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_1.js +6 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_2.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_2.js +5 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_3.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_3.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_4.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_4.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_5.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_5.js +6 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_6.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_6.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_7.html +30 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/search/variables_7.js +4 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/spaces.svg +877 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/splitbar.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/structGLFWgamepadstate.html +126 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/structGLFWgammaramp.html +162 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/structGLFWimage.html +143 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/structGLFWvidmode.html +196 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/sync_off.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/sync_on.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/tab_a.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/tab_b.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/tab_h.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/tab_s.png +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/tabs.css +1 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/vulkan_8dox.html +73 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/vulkan_guide.html +186 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/window_8dox.html +73 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/html/window_guide.html +751 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/input.dox +945 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/internal.dox +115 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/intro.dox +454 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/main.dox +46 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/monitor.dox +268 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/moving.dox +513 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/news.dox +856 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/quick.dox +362 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/spaces.svg +877 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/vulkan.dox +230 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/docs/window.dox +1434 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/CMakeLists.txt +88 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/boing.c +679 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/gears.c +360 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/glfw.icns +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/glfw.ico +0 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/glfw.rc +3 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/heightmap.c +512 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/offscreen.c +176 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/particles.c +1073 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/sharing.c +234 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/simple.c +166 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/splitview.c +546 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/examples/wave.c +462 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/include/GLFW/glfw3.h +5873 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/include/GLFW/glfw3native.h +525 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/CMakeLists.txt +184 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/cocoa_init.m +595 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/cocoa_joystick.h +50 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/cocoa_joystick.m +487 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/cocoa_monitor.m +612 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/cocoa_platform.h +199 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/cocoa_time.c +62 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/cocoa_window.m +1783 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/context.c +760 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/egl_context.c +789 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/egl_context.h +215 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/glfw3.pc.in +13 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/glfw3Config.cmake.in +1 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/glfw_config.h.in +60 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/glx_context.c +698 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/glx_context.h +181 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/init.c +340 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/input.c +1356 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/internal.h +776 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/linux_joystick.c +433 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/linux_joystick.h +62 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/mappings.h +476 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/mappings.h.in +73 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/monitor.c +544 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/nsgl_context.h +66 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/nsgl_context.m +376 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/null_init.c +52 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/null_joystick.c +44 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/null_joystick.h +31 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/null_monitor.c +77 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/null_platform.h +62 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/null_window.c +332 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/osmesa_context.c +372 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/osmesa_context.h +94 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/posix_thread.c +105 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/posix_thread.h +51 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/posix_time.c +87 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/posix_time.h +44 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/vulkan.c +328 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/wgl_context.c +796 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/wgl_context.h +164 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/win32_init.c +631 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/win32_joystick.c +755 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/win32_joystick.h +56 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/win32_monitor.c +535 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/win32_platform.h +458 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/win32_thread.c +99 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/win32_time.c +76 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/win32_window.c +2249 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/window.c +1101 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/wl_init.c +1324 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/wl_monitor.c +225 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/wl_platform.h +359 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/wl_window.c +1894 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/x11_init.c +1106 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/x11_monitor.c +604 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/x11_platform.h +450 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/x11_window.c +3164 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/xkb_unicode.c +942 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/src/xkb_unicode.h +28 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/CMakeLists.txt +94 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/clipboard.c +145 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/cursor.c +493 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/empty.c +132 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/events.c +650 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/gamma.c +179 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/glfwinfo.c +920 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/icon.c +149 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/iconify.c +297 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/inputlag.c +308 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/joysticks.c +344 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/monitors.c +260 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/msaa.c +220 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/opacity.c +108 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/reopen.c +240 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/tearing.c +250 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/threads.c +152 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/timeout.c +98 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/title.c +72 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/triangle-vulkan.c +2229 -0
- tinyvdb-0.1.0/examples/common/glfw-3.3.1/tests/windows.c +174 -0
- tinyvdb-0.1.0/examples/common/imgui/IconsIonicons.h +742 -0
- tinyvdb-0.1.0/examples/common/imgui/LICENSE.roboto_mono_embed.md +3 -0
- tinyvdb-0.1.0/examples/common/imgui/imconfig.h +93 -0
- tinyvdb-0.1.0/examples/common/imgui/imgui.cpp +15253 -0
- tinyvdb-0.1.0/examples/common/imgui/imgui.h +2454 -0
- tinyvdb-0.1.0/examples/common/imgui/imgui_draw.cpp +3400 -0
- tinyvdb-0.1.0/examples/common/imgui/imgui_impl_glfw.cpp +804 -0
- tinyvdb-0.1.0/examples/common/imgui/imgui_impl_glfw.h +34 -0
- tinyvdb-0.1.0/examples/common/imgui/imgui_impl_opengl2.cpp +283 -0
- tinyvdb-0.1.0/examples/common/imgui/imgui_impl_opengl2.h +31 -0
- tinyvdb-0.1.0/examples/common/imgui/imgui_impl_opengl3.cpp +707 -0
- tinyvdb-0.1.0/examples/common/imgui/imgui_impl_opengl3.h +65 -0
- tinyvdb-0.1.0/examples/common/imgui/imgui_internal.h +2061 -0
- tinyvdb-0.1.0/examples/common/imgui/imgui_widgets.cpp +7740 -0
- tinyvdb-0.1.0/examples/common/imgui/imstb_rectpack.h +639 -0
- tinyvdb-0.1.0/examples/common/imgui/imstb_textedit.h +1417 -0
- tinyvdb-0.1.0/examples/common/imgui/imstb_truetype.h +4903 -0
- tinyvdb-0.1.0/examples/common/imgui/ionic_icons_license.mit.txt +21 -0
- tinyvdb-0.1.0/examples/common/imgui/ionicons_embed.inc.h +3111 -0
- tinyvdb-0.1.0/examples/common/imgui/roboto_mono_embed.inc.h +1676 -0
- tinyvdb-0.1.0/examples/common/trackball.cc +292 -0
- tinyvdb-0.1.0/examples/common/trackball.h +75 -0
- tinyvdb-0.1.0/examples/openvdb2nanovdb/CMakeLists.txt +98 -0
- tinyvdb-0.1.0/examples/openvdb2nanovdb/openvdb2nanovdb.cc +7 -0
- tinyvdb-0.1.0/examples/openvkl/README.md +3 -0
- tinyvdb-0.1.0/examples/vdb2vtk/LICENSE.SimpleVTK +21 -0
- tinyvdb-0.1.0/examples/vdb2vtk/Makefile +26 -0
- tinyvdb-0.1.0/examples/vdb2vtk/README.md +9 -0
- tinyvdb-0.1.0/examples/vdb2vtk/simple_vtk.hpp +1086 -0
- tinyvdb-0.1.0/examples/vdb2vtk/vdb2vtk.cc +89 -0
- tinyvdb-0.1.0/examples/vdbdump/CMakeLists.txt +8 -0
- tinyvdb-0.1.0/examples/vdbdump/vdbdump.cc +285 -0
- tinyvdb-0.1.0/examples/vdbrender/CMakeLists.txt +18 -0
- tinyvdb-0.1.0/examples/vdbrender/vdbrender.cc +679 -0
- tinyvdb-0.1.0/examples/viewer/CMakeLists.txt +127 -0
- tinyvdb-0.1.0/examples/viewer/README.md +26 -0
- tinyvdb-0.1.0/examples/viewer/main.cc +23 -0
- tinyvdb-0.1.0/examples/viewer/scripts/bootstrap-linux.sh +16 -0
- tinyvdb-0.1.0/lgtm.yaml +4 -0
- tinyvdb-0.1.0/nanovdb/CMakeLists.txt +273 -0
- tinyvdb-0.1.0/nanovdb/CNanoVDB.h +715 -0
- tinyvdb-0.1.0/nanovdb/NanoVDB.h +4781 -0
- tinyvdb-0.1.0/nanovdb/PNanoVDB.h +2502 -0
- tinyvdb-0.1.0/nanovdb/Readme.md +15 -0
- tinyvdb-0.1.0/nanovdb/cmd/CMakeLists.txt +48 -0
- tinyvdb-0.1.0/nanovdb/cmd/convert/nanovdb_convert.cc +311 -0
- tinyvdb-0.1.0/nanovdb/cmd/print/nanovdb_print.cc +324 -0
- tinyvdb-0.1.0/nanovdb/cmd/validate/nanovdb_validate.cc +156 -0
- tinyvdb-0.1.0/nanovdb/docs/CMakeLists.txt +33 -0
- tinyvdb-0.1.0/nanovdb/docs/codingstyle.txt +305 -0
- tinyvdb-0.1.0/nanovdb/docs/doxygen-config +2354 -0
- tinyvdb-0.1.0/nanovdb/examples/CMakeLists.txt +115 -0
- tinyvdb-0.1.0/nanovdb/examples/benchmark/BenchKernels_dense.cu +108 -0
- tinyvdb-0.1.0/nanovdb/examples/benchmark/BenchKernels_nano.cu +112 -0
- tinyvdb-0.1.0/nanovdb/examples/benchmark/Benchmark.cc +721 -0
- tinyvdb-0.1.0/nanovdb/examples/benchmark/Benchmark_dense.cc +127 -0
- tinyvdb-0.1.0/nanovdb/examples/benchmark/Benchmark_nano.cc +134 -0
- tinyvdb-0.1.0/nanovdb/examples/benchmark/CMakeLists.txt +74 -0
- tinyvdb-0.1.0/nanovdb/examples/benchmark/Camera.h +72 -0
- tinyvdb-0.1.0/nanovdb/examples/benchmark/DenseGrid.h +487 -0
- tinyvdb-0.1.0/nanovdb/examples/benchmark/Image.h +159 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_bump_pool_buffer/bump_pool_buffer.cc +131 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_collide_level_set/common.h +26 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_collide_level_set/main.cc +54 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_collide_level_set/nanovdb.cu +156 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_collide_level_set/openvdb.cc +39 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_make_custom_nanovdb/make_custom_nanovdb.cc +33 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_make_funny_nanovdb/make_funny_nanovdb.cc +35 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_make_nanovdb_sphere/make_nanovdb_sphere.cc +27 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_make_typed_grids/make_typed_grids.cc +94 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_map_pool_buffer/map_pool_buffer.cc +186 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_modify_nanovdb_thrust/modify_nanovdb_thrust.cu +59 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_openvdb_to_nanovdb/openvdb_to_nanovdb.cc +33 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_openvdb_to_nanovdb_accessor/openvdb_to_nanovdb_accessor.cc +41 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_openvdb_to_nanovdb_cuda/openvdb_to_nanovdb_cuda.cc +41 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_openvdb_to_nanovdb_cuda/openvdb_to_nanovdb_cuda.cu +27 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_raytrace_fog_volume/common.h +144 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_raytrace_fog_volume/main.cc +52 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_raytrace_fog_volume/nanovdb.cu +109 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_raytrace_fog_volume/openvdb.cc +95 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_raytrace_level_set/common.h +144 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_raytrace_level_set/main.cc +52 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_raytrace_level_set/nanovdb.cu +109 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_raytrace_level_set/openvdb.cc +98 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_read_nanovdb_sphere/read_nanovdb_sphere.cc +27 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_read_nanovdb_sphere_accessor/read_nanovdb_sphere_accessor.cc +25 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_read_nanovdb_sphere_accessor_cuda/read_nanovdb_sphere_accessor_cuda.cc +40 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_read_nanovdb_sphere_accessor_cuda/read_nanovdb_sphere_accessor_cuda.cu +36 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_util/ComputePrimitives.h +189 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_util/CpuTimer.h +52 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_vox_to_nanovdb/VoxToNanoVDB.h +199 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_vox_to_nanovdb/vox_to_nanovdb.cc +31 -0
- tinyvdb-0.1.0/nanovdb/examples/ex_write_nanovdb_grids/write_nanovdb_grids.cc +34 -0
- tinyvdb-0.1.0/nanovdb/unittest/CMakeLists.txt +51 -0
- tinyvdb-0.1.0/nanovdb/unittest/TestNanoVDB.cc +5434 -0
- tinyvdb-0.1.0/nanovdb/unittest/TestOpenVDB.cc +2540 -0
- tinyvdb-0.1.0/nanovdb/unittest/pnanovdb_validate_strides.h +191 -0
- tinyvdb-0.1.0/nanovdb/util/CSampleFromVoxels.h +327 -0
- tinyvdb-0.1.0/nanovdb/util/CudaDeviceBuffer.h +201 -0
- tinyvdb-0.1.0/nanovdb/util/DitherLUT.h +185 -0
- tinyvdb-0.1.0/nanovdb/util/ForEach.h +88 -0
- tinyvdb-0.1.0/nanovdb/util/GridBuilder.h +1744 -0
- tinyvdb-0.1.0/nanovdb/util/GridChecksum.h +281 -0
- tinyvdb-0.1.0/nanovdb/util/GridHandle.h +211 -0
- tinyvdb-0.1.0/nanovdb/util/GridStats.h +735 -0
- tinyvdb-0.1.0/nanovdb/util/GridValidator.h +172 -0
- tinyvdb-0.1.0/nanovdb/util/HDDA.h +510 -0
- tinyvdb-0.1.0/nanovdb/util/HostBuffer.h +516 -0
- tinyvdb-0.1.0/nanovdb/util/IO.h +750 -0
- tinyvdb-0.1.0/nanovdb/util/Invoke.h +87 -0
- tinyvdb-0.1.0/nanovdb/util/NanoToOpenVDB.h +242 -0
- tinyvdb-0.1.0/nanovdb/util/NodeManager.h +402 -0
- tinyvdb-0.1.0/nanovdb/util/OpenToNanoVDB.h +1436 -0
- tinyvdb-0.1.0/nanovdb/util/Primitives.h +1287 -0
- tinyvdb-0.1.0/nanovdb/util/Range.h +149 -0
- tinyvdb-0.1.0/nanovdb/util/Ray.h +557 -0
- tinyvdb-0.1.0/nanovdb/util/Reduce.h +101 -0
- tinyvdb-0.1.0/nanovdb/util/SampleFromVoxels.h +983 -0
- tinyvdb-0.1.0/nanovdb/util/Stencils.h +1028 -0
- tinyvdb-0.1.0/pyproject.toml +49 -0
- tinyvdb-0.1.0/python/CMakeLists.txt +23 -0
- tinyvdb-0.1.0/python/src/_tinyvdb.c +1634 -0
- tinyvdb-0.1.0/python/src/_tinyvdb_mesh_ops.cc +465 -0
- tinyvdb-0.1.0/python/tests/conftest.py +7 -0
- tinyvdb-0.1.0/python/tests/test_tinyvdb.py +186 -0
- tinyvdb-0.1.0/python/tinyvdb/__init__.py +105 -0
- tinyvdb-0.1.0/python/tinyvdb/py.typed +0 -0
- tinyvdb-0.1.0/scripts/bootstrap-aarch64-ios.sh +16 -0
- tinyvdb-0.1.0/scripts/bootstrap-android-cmake-linux.sh +29 -0
- tinyvdb-0.1.0/scripts/bootstrap-clang-cl-wsl-lte.sh +15 -0
- tinyvdb-0.1.0/scripts/bootstrap-clang-cl-wsl.sh +15 -0
- tinyvdb-0.1.0/scripts/bootstrap-cmake-linux.sh +12 -0
- tinyvdb-0.1.0/scripts/bootstrap-cmake-llvm-mingw-cross.sh +19 -0
- tinyvdb-0.1.0/scripts/bootstrap-cmake-mingw-gcc-cross.sh +17 -0
- tinyvdb-0.1.0/scripts/bootstrap-gcc-4.8.sh +13 -0
- tinyvdb-0.1.0/scripts/bootstrap-gcc-aarch64-cross.sh +14 -0
- tinyvdb-0.1.0/scripts/build-zstd-single-file.sh +67 -0
- tinyvdb-0.1.0/src/lz4.c +2829 -0
- tinyvdb-0.1.0/src/lz4.h +884 -0
- tinyvdb-0.1.0/src/miniz.c +7670 -0
- tinyvdb-0.1.0/src/miniz.h +1346 -0
- tinyvdb-0.1.0/src/tinyvdb_io.c +9 -0
- tinyvdb-0.1.0/src/tinyvdb_io.cc +7 -0
- tinyvdb-0.1.0/src/tinyvdb_io.h +4026 -0
- tinyvdb-0.1.0/src/tinyvdb_mesh.h +996 -0
- tinyvdb-0.1.0/src/tinyvdb_ops.h +1109 -0
- tinyvdb-0.1.0/tests/loader-test.cc +68 -0
- tinyvdb-0.1.0/third_party/c-blosc/.editorconfig +20 -0
- tinyvdb-0.1.0/third_party/c-blosc/.github/workflows/cmake.yml +161 -0
- tinyvdb-0.1.0/third_party/c-blosc/.gitignore +4 -0
- tinyvdb-0.1.0/third_party/c-blosc/.mailmap +4 -0
- tinyvdb-0.1.0/third_party/c-blosc/ANNOUNCE.rst +53 -0
- tinyvdb-0.1.0/third_party/c-blosc/CMakeLists.txt +362 -0
- tinyvdb-0.1.0/third_party/c-blosc/CODE_OF_CONDUCT.md +5 -0
- tinyvdb-0.1.0/third_party/c-blosc/CONTRIBUTING.md +32 -0
- tinyvdb-0.1.0/third_party/c-blosc/FUNDING.yml +2 -0
- tinyvdb-0.1.0/third_party/c-blosc/LICENSES/BITSHUFFLE.txt +21 -0
- tinyvdb-0.1.0/third_party/c-blosc/LICENSES/BLOSC.txt +31 -0
- tinyvdb-0.1.0/third_party/c-blosc/LICENSES/FASTLZ.txt +24 -0
- tinyvdb-0.1.0/third_party/c-blosc/LICENSES/LZ4.txt +32 -0
- tinyvdb-0.1.0/third_party/c-blosc/LICENSES/SNAPPY.txt +28 -0
- tinyvdb-0.1.0/third_party/c-blosc/LICENSES/STDINT.txt +29 -0
- tinyvdb-0.1.0/third_party/c-blosc/LICENSES/ZLIB.txt +22 -0
- tinyvdb-0.1.0/third_party/c-blosc/README.md +196 -0
- tinyvdb-0.1.0/third_party/c-blosc/README_HEADER.rst +65 -0
- tinyvdb-0.1.0/third_party/c-blosc/README_THREADED.rst +33 -0
- tinyvdb-0.1.0/third_party/c-blosc/RELEASE_NOTES.rst +1101 -0
- tinyvdb-0.1.0/third_party/c-blosc/RELEASING.rst +111 -0
- tinyvdb-0.1.0/third_party/c-blosc/THANKS.rst +35 -0
- tinyvdb-0.1.0/third_party/c-blosc/THOUGHTS_FOR_2.0.txt +19 -0
- tinyvdb-0.1.0/third_party/c-blosc/bench/CMakeLists.txt +115 -0
- tinyvdb-0.1.0/third_party/c-blosc/bench/Makefile +40 -0
- tinyvdb-0.1.0/third_party/c-blosc/bench/Makefile.mingw +45 -0
- tinyvdb-0.1.0/third_party/c-blosc/bench/bench.c +598 -0
- tinyvdb-0.1.0/third_party/c-blosc/bench/plot-speeds.py +226 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/CMakeLists.txt +223 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/bitshuffle-avx2.c +245 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/bitshuffle-avx2.h +38 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/bitshuffle-generic.c +220 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/bitshuffle-generic.h +161 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/bitshuffle-sse2.c +467 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/bitshuffle-sse2.h +52 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/blosc-common.h +77 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/blosc-comp-features.h +21 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/blosc-export.h +45 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/blosc.c +2341 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/blosc.h +571 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/blosclz.c +612 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/blosclz.h +71 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/blosclz_impl.inc +126 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/config.h.in +11 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/fastcopy.c +637 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/fastcopy.h +19 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/shuffle-avx2.c +757 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/shuffle-avx2.h +36 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/shuffle-generic.c +25 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/shuffle-generic.h +99 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/shuffle-sse2.c +626 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/shuffle-sse2.h +36 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/shuffle.c +453 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/shuffle.h +67 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/win32/pthread.c +218 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/win32/pthread.h +112 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc/win32/stdint-windows.h +259 -0
- tinyvdb-0.1.0/third_party/c-blosc/blosc.pc.in +14 -0
- tinyvdb-0.1.0/third_party/c-blosc/cmake/FindLZ4.cmake +10 -0
- tinyvdb-0.1.0/third_party/c-blosc/cmake/FindSnappy.cmake +10 -0
- tinyvdb-0.1.0/third_party/c-blosc/cmake/FindZstd.cmake +10 -0
- tinyvdb-0.1.0/third_party/c-blosc/cmake_uninstall.cmake.in +22 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/CMakeLists.txt +34 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/README.rst +4 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.11.1-blosclz.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.11.1-lz4.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.11.1-lz4hc.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.11.1-snappy.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.11.1-zlib.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.11.1-zstd.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.14.0-blosclz.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.14.0-lz4.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.14.0-lz4hc.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.14.0-snappy.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.14.0-zlib.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.14.0-zstd.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.18.0-blosclz-bitshuffle.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.18.0-blosclz.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.18.0-lz4-bitshuffle.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.18.0-lz4.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.18.0-lz4hc.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.18.0-zlib.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.18.0-zstd.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.3.0-blosclz.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.3.0-lz4.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.3.0-lz4hc.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.3.0-snappy.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.3.0-zlib.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.7.0-blosclz.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.7.0-lz4.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.7.0-lz4hc.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.7.0-snappy.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/blosc-1.7.0-zlib.cdata +0 -0
- tinyvdb-0.1.0/third_party/c-blosc/compat/filegen.c +110 -0
- tinyvdb-0.1.0/third_party/c-blosc/examples/README.rst +12 -0
- tinyvdb-0.1.0/third_party/c-blosc/examples/many_compressors.c +117 -0
- tinyvdb-0.1.0/third_party/c-blosc/examples/multithread.c +100 -0
- tinyvdb-0.1.0/third_party/c-blosc/examples/noinit.c +87 -0
- tinyvdb-0.1.0/third_party/c-blosc/examples/simple.c +88 -0
- tinyvdb-0.1.0/third_party/c-blosc/examples/win-dynamic-linking.c +128 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/lz4-1.9.2/lz4.c +2398 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/lz4-1.9.2/lz4.h +764 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/lz4-1.9.2/lz4hc.c +1538 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/lz4-1.9.2/lz4hc.h +438 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/adler32.c +179 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/compress.c +80 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/crc32.c +425 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/crc32.h +441 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/deflate.c +1967 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/deflate.h +346 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/gzclose.c +25 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/gzguts.h +209 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/gzlib.c +634 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/gzread.c +594 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/gzwrite.c +577 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/infback.c +640 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/inffast.c +340 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/inffast.h +11 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/inffixed.h +94 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/inflate.c +1512 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/inflate.h +122 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/inftrees.c +306 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/inftrees.h +62 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/trees.c +1226 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/trees.h +128 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/uncompr.c +59 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/zconf.h +511 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/zlib.h +1768 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/zutil.c +324 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zlib-1.2.8/zutil.h +253 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/BUCK +234 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/Makefile +289 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/README.md +159 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/bitstream.h +460 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/compiler.h +159 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/cpu.h +215 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/debug.c +44 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/debug.h +134 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/entropy_common.c +236 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/error_private.c +54 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/error_private.h +76 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/fse.h +708 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/fse_decompress.c +311 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/huf.h +358 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/mem.h +453 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/pool.c +344 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/pool.h +84 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/threading.c +120 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/threading.h +154 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/xxhash.c +882 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/xxhash.h +305 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/zstd_common.c +83 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/zstd_errors.h +93 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/common/zstd_internal.h +350 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/fse_compress.c +721 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/hist.c +203 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/hist.h +95 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/huf_compress.c +798 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_compress.c +4103 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_compress_internal.h +1003 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_compress_literals.c +154 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_compress_literals.h +29 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_compress_sequences.c +415 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_compress_sequences.h +47 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_cwksp.h +535 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_double_fast.c +518 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_double_fast.h +38 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_fast.c +484 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_fast.h +37 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_lazy.c +1115 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_lazy.h +67 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_ldm.c +597 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_ldm.h +105 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_opt.c +1246 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstd_opt.h +56 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstdmt_compress.c +2116 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/compress/zstdmt_compress.h +192 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/decompress/huf_decompress.c +1234 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/decompress/zstd_ddict.c +240 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/decompress/zstd_ddict.h +44 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/decompress/zstd_decompress.c +1769 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/decompress/zstd_decompress_block.c +1323 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/decompress/zstd_decompress_block.h +59 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/decompress/zstd_decompress_internal.h +175 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/deprecated/zbuff.h +214 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/deprecated/zbuff_common.c +26 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/deprecated/zbuff_compress.c +147 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/deprecated/zbuff_decompress.c +75 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dictBuilder/cover.c +1236 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dictBuilder/cover.h +147 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dictBuilder/divsufsort.c +1913 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dictBuilder/divsufsort.h +67 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dictBuilder/fastcover.c +747 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dictBuilder/zdict.c +1111 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dictBuilder/zdict.h +282 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dll/example/Makefile +47 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dll/example/README.md +69 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dll/example/build_package.bat +20 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dll/example/fullbench-dll.sln +25 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/dll/example/fullbench-dll.vcxproj +181 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_legacy.h +415 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v01.c +2152 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v01.h +94 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v02.c +3514 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v02.h +93 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v03.c +3156 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v03.h +93 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v04.c +3641 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v04.h +142 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v05.c +4046 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v05.h +162 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v06.c +4150 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v06.h +172 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v07.c +4533 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/legacy/zstd_v07.h +187 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/libzstd.pc.in +15 -0
- tinyvdb-0.1.0/third_party/c-blosc/internal-complibs/zstd-1.4.4/zstd.h +2049 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/.gitignore +1 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/CMakeLists.txt +127 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/Makefile +52 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/check_symbols.py +80 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/gcc-segfault-issue.c +80 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/print_versions.c +34 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_all.sh +14 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_api.c +173 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_bitshuffle_leftovers.c +140 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_common.h +152 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_compress_roundtrip.c +134 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_compress_roundtrip.csv +268 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_compressor.c +349 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_forksafe.c +106 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_getitem.c +130 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_getitem.csv +400 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_maxout.c +199 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_noinit.c +108 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_nolock.c +111 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_nthreads.c +123 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_shuffle_roundtrip_avx2.c +131 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_shuffle_roundtrip_avx2.csv +400 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_shuffle_roundtrip_generic.c +93 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_shuffle_roundtrip_generic.csv +134 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_shuffle_roundtrip_sse2.c +138 -0
- tinyvdb-0.1.0/third_party/c-blosc/tests/test_shuffle_roundtrip_sse2.csv +400 -0
- tinyvdb-0.1.0/third_party/tinyexr/.clang-format +7 -0
- tinyvdb-0.1.0/third_party/tinyexr/.drone.yml +7 -0
- tinyvdb-0.1.0/third_party/tinyexr/.github/FUNDING.yml +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/.github/ISSUE_TEMPLATE/config.yml +1 -0
- tinyvdb-0.1.0/third_party/tinyexr/.github/ISSUE_TEMPLATE/issue-report.md +26 -0
- tinyvdb-0.1.0/third_party/tinyexr/.github/workflows/ci.yml +187 -0
- tinyvdb-0.1.0/third_party/tinyexr/.github/workflows/claude-code-review.yml +57 -0
- tinyvdb-0.1.0/third_party/tinyexr/.github/workflows/claude.yml +50 -0
- tinyvdb-0.1.0/third_party/tinyexr/.gitignore +8 -0
- tinyvdb-0.1.0/third_party/tinyexr/.gitmodules +3 -0
- tinyvdb-0.1.0/third_party/tinyexr/.lgtm.yml +12 -0
- tinyvdb-0.1.0/third_party/tinyexr/.travis.yml +124 -0
- tinyvdb-0.1.0/third_party/tinyexr/CMakeLists.txt +78 -0
- tinyvdb-0.1.0/third_party/tinyexr/LICENSE +29 -0
- tinyvdb-0.1.0/third_party/tinyexr/Makefile +101 -0
- tinyvdb-0.1.0/third_party/tinyexr/Makefile.gcc-mingw +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/Makefile.gcc-mingw-msys +16 -0
- tinyvdb-0.1.0/third_party/tinyexr/Makefile.llvm-mingw +25 -0
- tinyvdb-0.1.0/third_party/tinyexr/README.md +716 -0
- tinyvdb-0.1.0/third_party/tinyexr/TINYEXR_SIMD_README.md +191 -0
- tinyvdb-0.1.0/third_party/tinyexr/TINYEXR_V2_README.md +310 -0
- tinyvdb-0.1.0/third_party/tinyexr/TINYEXR_V3_README.md +358 -0
- tinyvdb-0.1.0/third_party/tinyexr/appveyor.yml +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/asakusa.exr +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/asakusa.png +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/cmake/sanitizers/FindASan.cmake +59 -0
- tinyvdb-0.1.0/third_party/tinyexr/cmake/sanitizers/FindMSan.cmake +57 -0
- tinyvdb-0.1.0/third_party/tinyexr/cmake/sanitizers/FindSanitizers.cmake +94 -0
- tinyvdb-0.1.0/third_party/tinyexr/cmake/sanitizers/FindTSan.cmake +65 -0
- tinyvdb-0.1.0/third_party/tinyexr/cmake/sanitizers/FindUBSan.cmake +46 -0
- tinyvdb-0.1.0/third_party/tinyexr/cmake/sanitizers/asan-wrapper +55 -0
- tinyvdb-0.1.0/third_party/tinyexr/cmake/sanitizers/sanitize-helpers.cmake +177 -0
- tinyvdb-0.1.0/third_party/tinyexr/config-msvc.py +78 -0
- tinyvdb-0.1.0/third_party/tinyexr/deepscanline.exr +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/.github/workflows/coverage.yml +49 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/.github/workflows/debug-linux.yml +28 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/.github/workflows/debug-macos.yml +28 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/.github/workflows/tests.yml +77 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/.gitignore +9 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/CHANGELOG.md +419 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/CITATION.cff +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/CMakeLists.txt +376 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/CONTRIBUTING.md +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/CTestConfig.cmake +16 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/Config +161 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/LICENSE +29 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/Makefile +40 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/NOTICE +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/README.md +116 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/SUPPORT.md +11 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/appveyor.sh +72 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/appveyor.yml +67 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/CMakeLists.txt +36 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/Makefile +25 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfp.cpp +868 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfparray1d.cpp +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfparray1f.cpp +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfparray2d.cpp +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfparray2f.cpp +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfparray3d.cpp +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfparray3f.cpp +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfparray4d.cpp +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfparray4f.cpp +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/cfpheader.cpp +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/template/cfparray.cpp +136 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/template/cfparray1.cpp +332 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/template/cfparray2.cpp +468 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/template/cfparray3.cpp +522 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/template/cfparray4.cpp +576 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cfp/template/cfpheader.cpp +166 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/cmake/appveyor.cmake +92 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/codecov.yml +8 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/Makefile +23 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/make.bat +36 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/algorithm.rst +155 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/arrays.rst +859 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/bit-stream.rst +303 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/caching.inc +38 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/cfp.rst +983 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/codec.inc +258 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/conf.py +178 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/contributors.rst +24 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/defs.rst +42 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/directions.rst +85 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/disclaimer.inc +9 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/examples.rst +205 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/execution.rst +310 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/faq.rst +1270 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/high-level-api.rst +1047 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/index.inc +157 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/index.rst +32 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/installation.rst +438 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/introduction.rst +213 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/issues.rst +414 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/iterators.inc +238 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/license.rst +59 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/limitations.rst +87 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/low-level-api.rst +437 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/modes.rst +261 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/pointers.inc +187 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/python.rst +155 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/references.inc +106 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/requirements.txt +3 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/serialization.inc +215 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/setup.py +3 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/testing.rst +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/tutorial.rst +620 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/versions.rst +432 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/view-indexing.pdf +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/views.inc +863 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/zforp.rst +884 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/zfp-rounding.pdf +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/docs/source/zfpcmd.rst +259 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/CMakeLists.txt +55 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/Makefile +62 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/array.cpp +42 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/array2d.hpp +72 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/diffusion.cpp +478 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/diffusionC.c +303 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/inplace.c +156 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/iterator.cpp +74 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/iteratorC.c +97 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/pgm.c +112 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/ppm.c +390 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/simple.c +102 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/examples/speed.c +136 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/fortran/CMakeLists.txt +31 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/fortran/Makefile +32 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/fortran/zfp.f90 +1134 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/array.h +32 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/array.hpp +95 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/array1.hpp +265 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/array2.hpp +301 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/array3.hpp +316 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/array4.hpp +331 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/bitstream.h +106 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/bitstream.inl +473 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/codec/gencodec.hpp +421 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/codec/zfpcodec.hpp +551 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/constarray1.hpp +265 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/constarray2.hpp +288 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/constarray3.hpp +300 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/constarray4.hpp +312 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/factory.hpp +119 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/index.hpp +537 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/cache.hpp +281 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/cache1.hpp +201 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/cache2.hpp +207 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/cache3.hpp +213 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/cache4.hpp +219 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/exception.hpp +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/handle1.hpp +38 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/handle2.hpp +38 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/handle3.hpp +38 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/handle4.hpp +38 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/header.hpp +41 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/iterator1.hpp +137 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/iterator2.hpp +230 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/iterator3.hpp +265 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/iterator4.hpp +300 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/memory.hpp +200 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/pointer1.hpp +118 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/pointer2.hpp +136 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/pointer3.hpp +145 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/pointer4.hpp +154 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/reference1.hpp +78 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/reference2.hpp +80 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/reference3.hpp +82 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/reference4.hpp +84 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/store.hpp +255 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/store1.hpp +140 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/store2.hpp +147 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/store3.hpp +154 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/store4.hpp +161 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/traits.hpp +30 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/view1.hpp +303 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/view2.hpp +498 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/view3.hpp +584 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/array/view4.hpp +679 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/array1d.h +141 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/array1f.h +141 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/array2d.h +144 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/array2f.h +144 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/array3d.h +146 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/array3f.h +146 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/array4d.h +148 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/array4f.h +148 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/cfp/header.h +8 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/codec/genheader.hpp +76 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/codec/zfpheader.hpp +129 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/zfp/inline.h +12 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/zfp/macros.h +7 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/zfp/system.h +47 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/internal/zfp/types.h +132 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp/version.h +52 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp.h +795 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/include/zfp.hpp +289 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/CMakeLists.txt +26 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/requirements.txt +3 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/scikit-build-cmake/FindCython.cmake +89 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/scikit-build-cmake/FindNumPy.cmake +106 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/scikit-build-cmake/FindPythonExtensions.cmake +576 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/scikit-build-cmake/LICENSE +50 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/scikit-build-cmake/UseCython.cmake +387 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/scikit-build-cmake/targetLinkLibrariesWithDynamicLookup.cmake +581 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/zfpy.pxd +79 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/python/zfpy.pyx +423 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/setup.py +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/CMakeLists.txt +66 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/Makefile +24 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/bitstream.c +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/block1.h +1 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/block2.h +1 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/block3.h +1 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/block4.h +1 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/CMakeLists.txt +24 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/ErrorCheck.h +35 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/constants.h +136 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/cuZFP.cu +491 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/cuZFP.h +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/decode.cuh +292 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/decode1.cuh +155 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/decode2.cuh +178 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/decode3.cuh +192 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/encode.cuh +437 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/encode1.cuh +174 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/encode2.cuh +189 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/encode3.cuh +201 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/pointers.cuh +30 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/shared.h +279 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/cuda_zfp/type_info.cuh +105 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode1d.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode1f.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode1i.c +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode1l.c +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode2d.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode2f.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode2i.c +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode2l.c +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode3d.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode3f.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode3i.c +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode3l.c +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode4d.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode4f.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode4i.c +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/decode4l.c +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode1d.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode1f.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode1i.c +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode1l.c +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode2d.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode2f.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode2i.c +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode2l.c +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode3d.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode3f.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode3i.c +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode3l.c +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode4d.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode4f.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode4i.c +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/encode4l.c +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/share/omp.c +31 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/share/parallel.c +104 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/codec.c +6 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/codec.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/codec1.c +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/codec2.c +32 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/codec3.c +90 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/codec4.c +297 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/codecf.c +32 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/compress.c +109 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/cudacompress.c +36 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/cudadecompress.c +36 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/decode.c +287 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/decode1.c +53 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/decode2.c +60 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/decode3.c +68 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/decode4.c +78 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/decodef.c +44 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/decodei.c +10 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/decompress.c +109 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/encode.c +280 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/encode1.c +52 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/encode2.c +62 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/encode3.c +74 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/encode4.c +89 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/encodef.c +99 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/encodei.c +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/ompcompress.c +275 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revcodecf.c +11 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revdecode.c +52 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revdecode1.c +9 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revdecode2.c +14 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revdecode3.c +20 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revdecode4.c +28 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revdecodef.c +59 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revencode.c +76 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revencode1.c +9 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revencode2.c +14 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revencode3.c +20 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revencode4.c +28 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/revencodef.c +80 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/template/template.h +12 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/traitsd.h +14 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/traitsf.h +20 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/traitsi.h +7 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/traitsl.h +7 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/src/zfp.c +1249 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/CMakeLists.txt +158 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/CMakeLists.txt.in +16 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/Makefile +20 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/CMakeLists.txt +7 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/CMakeLists.txt +74 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1Base.cpp +194 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1ItersBase.cpp +395 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1RefsBase.cpp +37 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1ViewsBase.cpp +192 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1d.cpp +45 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1dIters.cpp +10 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1dPtrs.cpp +9 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1dRefs.cpp +14 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1dViewIters.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1dViewPtrs.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1dViews.cpp +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1f.cpp +45 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1fIters.cpp +10 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1fPtrs.cpp +9 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1fRefs.cpp +14 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1fViewIters.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1fViewPtrs.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray1fViews.cpp +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2Base.cpp +422 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2ItersBase.cpp +73 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2PtrsBase.cpp +23 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2RefsBase.cpp +55 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2ViewsBase.cpp +398 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2d.cpp +45 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2dIters.cpp +10 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2dPtrs.cpp +10 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2dRefs.cpp +14 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2dViewIters.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2dViewPtrs.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2dViews.cpp +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2f.cpp +45 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2fIters.cpp +10 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2fPtrs.cpp +10 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2fRefs.cpp +14 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2fViewIters.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2fViewPtrs.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray2fViews.cpp +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3Base.cpp +571 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3ItersBase.cpp +91 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3PtrsBase.cpp +52 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3RefsBase.cpp +58 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3ViewsBase.cpp +489 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3d.cpp +45 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3dIters.cpp +10 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3dPtrs.cpp +10 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3dRefs.cpp +14 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3dViewIters.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3dViewPtrs.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3dViews.cpp +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3f.cpp +45 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3fIters.cpp +10 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3fPtrs.cpp +10 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3fRefs.cpp +14 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3fViewIters.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3fViewPtrs.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray3fViews.cpp +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4Base.cpp +741 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4ItersBase.cpp +109 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4PtrsBase.cpp +86 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4RefsBase.cpp +61 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4ViewsBase.cpp +639 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4d.cpp +45 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4dIters.cpp +10 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4dPtrs.cpp +10 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4dRefs.cpp +14 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4dViewIters.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4dViewPtrs.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4dViews.cpp +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4f.cpp +45 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4fIters.cpp +10 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4fPtrs.cpp +10 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4fRefs.cpp +14 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4fViewIters.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4fViewPtrs.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArray4fViews.cpp +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArrayBase.cpp +911 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArrayItersBase.cpp +205 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArrayPtrsBase.cpp +388 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArrayRefsBase.cpp +133 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArrayViewItersBase.cpp +98 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArrayViewPtrsBase.cpp +102 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testArrayViewsBase.cpp +598 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/array/testConstruct.cpp +140 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/CMakeLists.txt +20 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray1Base.cpp +1 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray1d.cpp +46 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray1f.cpp +46 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray2Base.cpp +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray2d.cpp +46 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray2f.cpp +46 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray3Base.cpp +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray3d.cpp +46 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray3f.cpp +46 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray4Base.cpp +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray4d.cpp +46 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArray4f.cpp +46 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/constArray/testConstArrayBase.cpp +242 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/CMakeLists.txt +28 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecode1d.cpp +20 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecode1f.cpp +20 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecode2d.cpp +20 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecode2f.cpp +20 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecode3d.cpp +20 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecode3f.cpp +20 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecode4d.cpp +20 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecode4f.cpp +20 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/decode/testTemplatedDecodeBase.cpp +558 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/CMakeLists.txt +29 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncode1d.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncode1f.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncode2d.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncode2f.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncode3d.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncode3f.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncode4d.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncode4f.cpp +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/encode/testTemplatedEncodeBase.cpp +302 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/commonMacros.h +6 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtest1dTest.h +47 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtest1fTest.h +47 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtest2dTest.h +52 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtest2fTest.h +52 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtest3dTest.h +59 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtest3fTest.h +59 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtest4dTest.h +64 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtest4fTest.h +64 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtestBaseFixture.h +149 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtestCApiTest.h +31 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtestDoubleEnv.h +50 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtestFloatEnv.h +50 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtestSingleFixture.h +6 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/gtestTestEnv.h +8 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/utils/predicates.h +59 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/zfp/CMakeLists.txt +6 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/array/zfp/testAlignedMemory.cpp +34 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/CMakeLists.txt +22 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray1_source.c +580 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray1d.c +101 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray1f.c +100 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray2_source.c +634 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray2d.c +101 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray2f.c +101 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray3_source.c +662 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray3d.c +101 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray3f.c +101 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray4_source.c +692 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray4d.c +98 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray4f.c +98 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpArray_source.c +643 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/cfp/testCfpNamespace.c +27 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/ci-utils/CMakeLists.txt +6 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/1dDouble.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/1dFloat.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/1dInt32.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/1dInt64.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/2dDouble.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/2dFloat.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/2dInt32.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/2dInt64.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/3dDouble.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/3dFloat.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/3dInt32.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/3dInt64.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/4dDouble.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/4dFloat.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/4dInt32.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/4dInt64.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/1dDouble.h +37 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/1dFloat.h +37 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/1dInt32.h +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/1dInt64.h +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/2dDouble.h +37 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/2dFloat.h +37 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/2dInt32.h +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/2dInt64.h +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/3dDouble.h +37 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/3dFloat.h +37 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/3dInt32.h +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/3dInt64.h +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/4dDouble.h +37 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/4dFloat.h +37 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/4dInt32.h +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/checksums/4dInt64.h +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/doubleConsts.h +3 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/floatConsts.h +3 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/int32Consts.h +2 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/int64Consts.h +2 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/constants/universalConsts.h +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/fortran/CMakeLists.txt +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/fortran/testFortran.f +103 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/gitlab/corona-jobs.yml +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/gitlab/corona-templates.yml +12 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/gitlab/gitlab-ci.yml +143 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/gitlab/pascal-jobs.yml +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/gitlab/pascal-templates.yml +12 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/gitlab/quartz-jobs.yml +64 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/gitlab/quartz-templates.yml +12 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/python/CMakeLists.txt +36 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/python/test_numpy.py +238 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/python/test_utils.pyx +535 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/CMakeLists.txt +10 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/CMakeLists.txt +49 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock1dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock1dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock1dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock1dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock2dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock2dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock2dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock2dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock3dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock3dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock3dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock3dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock4dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock4dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock4dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlock4dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided1dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided1dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided1dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided1dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided2dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided2dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided2dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided2dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided3dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided3dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided3dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided3dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided4dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided4dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided4dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testZfpDecodeBlockStrided4dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testcases/block.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/testcases/blockStrided.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/zfpDecodeBlockBase.c +278 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/decode/zfpDecodeBlockStridedBase.c +621 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/CMakeLists.txt +49 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock1dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock1dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock1dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock1dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock2dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock2dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock2dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock2dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock3dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock3dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock3dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock3dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock4dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock4dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock4dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlock4dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided1dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided1dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided1dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided1dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided2dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided2dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided2dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided2dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided3dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided3dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided3dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided3dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided4dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided4dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided4dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testZfpEncodeBlockStrided4dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testcases/block.c +11 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/testcases/blockStrided.c +18 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/zfpEncodeBlockBase.c +266 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/encode/zfpEncodeBlockStridedBase.c +490 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/CMakeLists.txt +70 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/cudaExecBase.c +202 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/ompExecBase.c +235 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/serialExecBase.c +299 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda1dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda1dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda1dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda1dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda2dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda2dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda2dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda2dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda3dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda3dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda3dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda3dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda4dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda4dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda4dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpCuda4dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp1dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp1dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp1dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp1dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp2dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp2dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp2dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp2dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp3dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp3dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp3dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp3dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp4dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp4dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp4dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpOmp4dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial1dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial1dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial1dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial1dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial2dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial2dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial2dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial2dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial3dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial3dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial3dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial3dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial4dDouble.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial4dFloat.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial4dInt32.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testZfpSerial4dInt64.c +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testcases/cuda.c +24 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testcases/omp.c +20 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/testcases/serial.c +31 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/endtoend/zfpEndtoendBase.c +591 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/execPolicy/CMakeLists.txt +19 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/execPolicy/testCuda.c +95 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/execPolicy/testOmp.c +213 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/execPolicy/testOmpInternal.c +84 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/inline/CMakeLists.txt +11 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/inline/testBitstream.c +674 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/inline/testBitstreamSmallWsize.c +119 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/inline/testBitstreamStrided.c +95 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/CMakeLists.txt +48 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpField1d.c +24 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpField1f.c +24 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpField2d.c +28 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpField2f.c +28 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpField3d.c +32 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpField3f.c +32 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpField4d.c +36 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpField4f.c +36 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpHeader.c +497 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpPromote.c +120 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/testZfpStream.c +934 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/src/misc/zfpFieldBase.c +256 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/testviews.cpp +241 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/testzfp.cpp +1182 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/CMakeLists.txt +43 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/fixedpoint96.c +296 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/fixedpoint96.h +33 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/genChecksums.sh +51 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/genSmoothRandNums.c +918 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/genSmoothRandNums.h +33 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/rand32.c +43 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/rand32.h +22 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/rand64.c +52 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/rand64.h +26 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/stridedOperations.c +133 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/stridedOperations.h +37 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/testMacros.h +39 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/zfpChecksums.c +171 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/zfpChecksums.h +35 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/zfpCompressionParams.c +20 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/zfpCompressionParams.h +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/zfpHash.c +126 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/zfpHash.h +26 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/zfpTimer.c +56 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/tests/utils/zfpTimer.h +24 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/utils/CMakeLists.txt +16 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/utils/Makefile +14 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/utils/zfp.c +629 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/zfp-config-version.cmake.in +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/ZFP/zfp-config.cmake.in +44 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/ChangeLog.md +239 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/LICENSE +22 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/examples/example1.c +105 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/examples/example2.c +164 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/examples/example3.c +269 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/examples/example4.c +102 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/examples/example5.c +327 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/examples/example6.c +162 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/miniz.c +7854 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/miniz.h +1422 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/miniz/readme.md +46 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/nanozlib/README.md +48 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/nanozlib/nanozlib.h +471 -0
- tinyvdb-0.1.0/third_party/tinyexr/deps/nanozlib/wuffs-v0.3.c +22438 -0
- tinyvdb-0.1.0/third_party/tinyexr/example_v2_usage.cc +119 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/common/cxxopts.hpp +1988 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/common/stb_image.h +7462 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/common/stb_image_resize.h +2585 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/common/stb_image_write.h +1048 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/cube2longlat/Makefile +28 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/cube2longlat/README.md +46 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/cube2longlat/cube2longlat.cc +470 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/deepview/Makefile +2 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/deepview/deepview_screencast.gif +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/deepview/main.cc +277 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/deepview/trackball.cc +324 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/deepview/trackball.h +81 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exr2fptiff/Makefile +32 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exr2fptiff/README.md +7 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exr2fptiff/exr2fptiff.cc +199 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exr2fptiff/tiny_dng_writer.h +1356 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exr2ldr/Makefile +3 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exr2ldr/exr2ldr.cc +111 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exr2rgbe/Makefile +3 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exr2rgbe/exr2rgbe.cc +38 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrfilter/Makefile +3 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrfilter/README.md +5 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrfilter/exrfilter.cc +151 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/DroidSans.ttf +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/CommonWindowInterface.h +130 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/MacOpenGLWindow.h +118 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/MacOpenGLWindow.mm +1169 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/OpenGL2Include.h +59 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/OpenGLInclude.h +66 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/Win32InternalWindowData.h +68 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/Win32OpenGLWindow.cpp +200 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/Win32OpenGLWindow.h +64 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/Win32Window.cpp +810 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/Win32Window.h +86 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/X11OpenGLWindow.cpp +1118 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/OpenGLWindow/X11OpenGLWindow.h +78 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/README.md +56 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/Glew/CustomGL/glew.h +19093 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/Glew/CustomGL/glxew.h +1750 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/Glew/CustomGL/wglew.h +1421 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/Glew/glew.c +18897 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/LICENSE +16 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/README.md +137 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/screens/open_cocoa.png +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/screens/open_gtk3.png +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/screens/open_win8.png +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/src/SConstruct +99 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/src/common.h +21 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/src/include/nfd.h +69 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/src/nfd_cocoa.m +235 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/src/nfd_common.c +142 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/src/nfd_common.h +37 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/src/nfd_gtk.c +326 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/src/nfd_win.cpp +619 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/test/SConstruct +70 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/test/test_opendialog.c +29 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/test/test_opendialogmultiple.c +34 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/ThirdPartyLibs/nativefiledialog/test/test_savedialog.c +28 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/exr-io.cc +60 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/exr-io.h +16 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/findOpenGLGlewGlut.lua +90 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/main.cc +541 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/nuklear.h +25417 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/nuklear_btgui_gl2.h +386 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/premake4.lua +87 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/screenshots/exrview.png +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/shader.frag +12 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/exrview/shader.vert +12 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/ldr2exr/Makefile +3 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/ldr2exr/ldr2exr.cc +85 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/nornalmap/Makefile +3 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/nornalmap/README.md +13 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/nornalmap/main.cc +269 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/resize/Makefile +3 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/resize/resize.cc +46 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/rgbe2exr/Makefile +3 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/rgbe2exr/rgbe2exr.cc +81 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/spectral/Makefile +37 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/spectral/README.md +102 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/spectral/spectral_example.cc +390 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/testmapgen/Makefile +3 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/testmapgen/README.md +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/testmapgen/testmapgen.cc +86 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/.gitignore +16 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/Makefile +64 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/README.md +204 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/build.sh +152 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/html/index.html +70 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/html/style.css +238 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/js/benchmark-browser.js +327 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/js/benchmark.mjs +231 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/js/results-formatter.js +125 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/js/utils.js +112 -0
- tinyvdb-0.1.0/third_party/tinyexr/examples/wasm-benchmark/src/v3_benchmark_bindings.cc +626 -0
- tinyvdb-0.1.0/third_party/tinyexr/experimental/js/Makefile +2 -0
- tinyvdb-0.1.0/third_party/tinyexr/experimental/js/README.md +38 -0
- tinyvdb-0.1.0/third_party/tinyexr/experimental/js/binding.cc +79 -0
- tinyvdb-0.1.0/third_party/tinyexr/experimental/js/compile_to_js.sh +15 -0
- tinyvdb-0.1.0/third_party/tinyexr/experimental/js/index.html +41 -0
- tinyvdb-0.1.0/third_party/tinyexr/experimental/js/test.js +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/experimental/js/tinyexr.js +1 -0
- tinyvdb-0.1.0/third_party/tinyexr/exr_reader.hh +191 -0
- tinyvdb-0.1.0/third_party/tinyexr/jni/Android.mk +12 -0
- tinyvdb-0.1.0/third_party/tinyexr/jni/Application.mk +2 -0
- tinyvdb-0.1.0/third_party/tinyexr/jni/Makefile +8 -0
- tinyvdb-0.1.0/third_party/tinyexr/jni/README.md +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/kuroga.py +312 -0
- tinyvdb-0.1.0/third_party/tinyexr/premake4.lua +55 -0
- tinyvdb-0.1.0/third_party/tinyexr/streamreader.hh +171 -0
- tinyvdb-0.1.0/third_party/tinyexr/streamwriter.hh +320 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/CMakeLists.txt +23 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/c-binding/Makefile +5 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/c-binding/test.c +19 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/exrcat/exrcat.cpp +127 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/exrwrite/exrwritetest.cpp +132 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/Makefile +14 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/README.md +17 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/fuzz.cc +29 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/issue-167-heap-buffer-overflow +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/issue-62-tinyexr_memcpy_heap-buffer-overflow +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/issue-63-tinyexr_signed-integer-overflow +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/issue-77-heap-buffer-overflow +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/issue176-heap-buffer-overflow +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/fuzzer/issue177-heap-buffer-overflow +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/issues/160/README.md +1 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/issues/160/main.py +57 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/issues/160/requirements.txt +3 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/Makefile +35 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/README.md +98 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/catch.hpp +10445 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/config-msvc.py +52 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/config-posix.py +53 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/kuroga.py +312 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/000-issue194.exr +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/2by2.exr +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/flaga.exr +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/issue-160-piz-decode.exr +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/issue-238-double-free-multipart.exr +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/issue-238-double-free.exr +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/piz-bug-issue-100.exr +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-1383755b301e5f505b2198dc0508918b537fdf48bbfc6deeffe268822e6f6cd6 +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-24322747c47e87a10e4407528b779a1a763a48135384909b3d1010bbba1d4c28_min +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-255456016cca60ddb5c5ed6898182e13739bf687b17d1411e97bb60ad95e7a84_min +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-360c3b0555cb979ca108f2d178cf8a80959cfeabaa4ec1d310d062fa653a8c6b_min +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-3f1f642c3356fd8e8d2a0787613ec09a56572b3a1e38c9629b6db9e8dead1117_min +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-5ace655ef080932dcc7e4abc9eab1d4f82c845453464993dfa3eb6c5822a1621 +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-5b66774a7498c635334ad386be0c3b359951738ac47f14878a3346d1c6ea0fe5_min +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-d5c9c893e559277a3320c196523095b94db93985620ac338d037487e0e613047_min +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-df76d1f27adb8927a1446a603028272140905c168a336128465a1162ec7af270.mini +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-e7fa6404daa861369d2172fe68e08f9d38c0989f57da7bcfb510bab67e19ca9f +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-eedff3a9e99eb1c0fd3a3b0989e7c44c0a69f04f10b23e5264f362a4773f4397_min +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/poc-efe9007bfdcbbe8a1569bf01fa9acadb8261ead49cb83f6e91fcdc4dae2e99a3_min +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression/tiled_half_1x1_alpha.exr +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/regression//346/227/245/346/234/254/350/252/236.exr +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/tester-v2.cc +2455 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/tester-v3-simd.cc +493 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/tester-v3.cc +1733 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/tester.cc +3355 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/vcbuild.bat +4 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/win32-filelist-utf16le.inc +0 -0
- tinyvdb-0.1.0/third_party/tinyexr/test/unit/win32-filelist-utf8.inc +1 -0
- tinyvdb-0.1.0/third_party/tinyexr/test_huffman.cc +564 -0
- tinyvdb-0.1.0/third_party/tinyexr/test_simd.cc +555 -0
- tinyvdb-0.1.0/third_party/tinyexr/test_tinyexr.cc +470 -0
- tinyvdb-0.1.0/third_party/tinyexr/test_v2_api.cc +181 -0
- tinyvdb-0.1.0/third_party/tinyexr/test_writer.cc +253 -0
- tinyvdb-0.1.0/third_party/tinyexr/tinyexr.cc +8 -0
- tinyvdb-0.1.0/third_party/tinyexr/tinyexr.h +11345 -0
- tinyvdb-0.1.0/third_party/tinyexr/tinyexr_c.h +1081 -0
- tinyvdb-0.1.0/third_party/tinyexr/tinyexr_c_impl.c +8269 -0
- tinyvdb-0.1.0/third_party/tinyexr/tinyexr_huffman.hh +1695 -0
- tinyvdb-0.1.0/third_party/tinyexr/tinyexr_piz.hh +1970 -0
- tinyvdb-0.1.0/third_party/tinyexr/tinyexr_simd.hh +1796 -0
- tinyvdb-0.1.0/third_party/tinyexr/tinyexr_simd_c.h +89 -0
- tinyvdb-0.1.0/third_party/tinyexr/tinyexr_simd_wrapper.cc +83 -0
- tinyvdb-0.1.0/third_party/tinyexr/tinyexr_v2.hh +1492 -0
- tinyvdb-0.1.0/third_party/tinyexr/tinyexr_v2_impl.hh +7478 -0
- tinyvdb-0.1.0/third_party/tinyexr/tinyexr_v3.hh +1069 -0
- tinyvdb-0.1.0/third_party/tinyexr/vcbuild.bat +11 -0
- tinyvdb-0.1.0/third_party/tinyexr/vcsetup2019.bat +4 -0
- tinyvdb-0.1.0/vcsetup-2019.bat +4 -0
- tinyvdb-0.1.0/web/CMakeLists.txt +61 -0
- tinyvdb-0.1.0/web/build.sh +40 -0
- tinyvdb-0.1.0/web/tinyvdb_embind.cc +528 -0
|
@@ -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
|
tinyvdb-0.1.0/.gitignore
ADDED
|
@@ -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,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
|