Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/deps/Imath
Submodule Imath updated 65 files
+203 −0 .github/workflows/ci_steps.yml
+106 −501 .github/workflows/ci_workflow.yml
+86 −0 .github/workflows/ci_workflow_old.yml
+91 −0 .github/workflows/codeql.yml
+5 −3 .github/workflows/release-sign.yml
+3 −3 .github/workflows/scorecard.yml
+2 −0 .gitignore
+9 −6 CMakeLists.txt
+22 −4 config/LibraryDefine.cmake
+45 −0 share/ci/install_manifest/install_manifest.macos.1.txt
+45 −0 share/ci/install_manifest/install_manifest.macos.2.txt
+42 −0 share/ci/install_manifest/install_manifest.macos.3.txt
+44 −0 share/ci/install_manifest/install_manifest.macos.4.txt
+45 −0 share/ci/install_manifest/install_manifest.macos.5.txt
+99 −0 share/ci/install_manifest/install_manifest.ubuntu.1.txt
+99 −0 share/ci/install_manifest/install_manifest.ubuntu.2.txt
+93 −0 share/ci/install_manifest/install_manifest.ubuntu.3.txt
+44 −0 share/ci/install_manifest/install_manifest.ubuntu.4.txt
+99 −0 share/ci/install_manifest/install_manifest.ubuntu.5.txt
+99 −0 share/ci/install_manifest/install_manifest.ubuntu.6.txt
+99 −0 share/ci/install_manifest/install_manifest.ubuntu.7.txt
+43 −0 share/ci/install_manifest/install_manifest.windows.1.txt
+43 −0 share/ci/install_manifest/install_manifest.windows.2.txt
+42 −0 share/ci/install_manifest/install_manifest.windows.3.txt
+42 −0 share/ci/install_manifest/install_manifest.windows.5.txt
+43 −0 share/ci/install_manifest/install_manifest.windows.6.txt
+145 −0 share/ci/scripts/validate_install.py
+11 −0 src/Imath/CMakeLists.txt
+56 −86 src/Imath/ImathBox.h
+4 −4 src/Imath/ImathColor.h
+10 −12 src/Imath/ImathEuler.h
+19 −15 src/Imath/ImathFrame.h
+6 −6 src/Imath/ImathMatrix.h
+6 −6 src/Imath/ImathMatrixAlgo.cpp
+8 −8 src/Imath/ImathMatrixAlgo.h
+3 −1 src/Imath/ImathPlatform.h
+14 −2 src/Imath/ImathShear.h
+187 −16 src/Imath/ImathVec.h
+7 −5 src/Imath/half.h
+4 −0 src/ImathTest/CMakeLists.txt
+17 −0 src/pybind11/CMakeLists.txt
+123 −0 src/pybind11/PyBindImath/CMakeLists.txt
+28 −0 src/pybind11/PyBindImath/PyBindImath.h
+17 −0 src/pybind11/PyBindImath/PyBindImath.pc.in
+7 −7 src/pybind11/PyBindImath/PyBindImathBox.cpp
+85 −0 src/pybind11/PyBindImath/PyBindImathEuler.cpp
+7 −7 src/pybind11/PyBindImath/PyBindImathExport.h
+59 −0 src/pybind11/PyBindImath/PyBindImathFrustum.cpp
+30 −0 src/pybind11/PyBindImath/PyBindImathLine.cpp
+53 −0 src/pybind11/PyBindImath/PyBindImathPlane.cpp
+9 −9 src/pybind11/PyBindImath/PyBindImathVec.cpp
+11 −6 src/pybind11/PyBindImath/pybindimathmodule.cpp
+4 −13 src/python/CMakeLists.txt
+0 −18 src/python/PyBindImath/CMakeLists.txt
+0 −25 src/python/PyBindImath/PyImath.h
+2 −2 src/python/PyImath/PyImath.h
+31 −31 src/python/PyImath/PyImathBufferProtocol.cpp
+24 −2 src/python/PyImath/PyImathFixedArray.h
+2 −2 src/python/PyImath/PyImathFixedVArray.cpp
+1 −1 src/python/PyImath/PyImathQuatOperators.h
+1 −1 src/python/PyImath/PyImathVec2Impl.h
+11 −11 src/python/PyImath/imathmodule.cpp
+1 −1 src/python/PyImathNumpy/imathnumpymodule.cpp
+530 −530 src/python/PyImathTest/main.cpp
+1 −1 website/requirements.txt
Loading