Skip to content

Commit

Permalink
Bump third_party/JoltPhysics from dc07f34 to ff68622 (#5831)
Browse files Browse the repository at this point in the history
Bumps [third_party/JoltPhysics](https://github.com/jrouwe/JoltPhysics) from `dc07f34` to `ff68622`.
- [Release notes](https://github.com/jrouwe/JoltPhysics/releases)
- [Commits](jrouwe/JoltPhysics@dc07f34...ff68622)

---
updated-dependencies:
- dependency-name: third_party/JoltPhysics
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jan 20, 2025
1 parent 3c4763d commit 8be7436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/JoltPhysics
Submodule JoltPhysics updated 81 files
+1 −1 .github/workflows/build.yml
+12 −12 .github/workflows/determinism_check.yml
+1 −1 .github/workflows/sonar-cloud.yml
+1 −0 Docs/ProjectsUsingJolt.md
+4 −0 Docs/ReleaseNotes.md
+4 −4 Jolt/Core/Core.h
+325 −2 Jolt/Core/Profiler.cpp
+58 −6 Jolt/Core/Semaphore.cpp
+36 −19 Jolt/Core/Semaphore.h
+0 −1 Jolt/Geometry/GJKClosestPoint.h
+1 −1 Jolt/Geometry/RayAABox.h
+3 −3 Jolt/Geometry/RayTriangle.h
+3 −0 Jolt/Math/DVec3.h
+6 −1 Jolt/Math/DVec3.inl
+3 −0 Jolt/Math/Vec3.h
+6 −1 Jolt/Math/Vec3.inl
+3 −0 Jolt/Math/Vec4.h
+10 −5 Jolt/Math/Vec4.inl
+2 −2 Jolt/Physics/Body/Body.cpp
+4 −4 Jolt/Physics/Body/BodyManager.cpp
+2 −2 Jolt/Physics/Body/MotionProperties.inl
+1 −1 Jolt/Physics/Character/Character.cpp
+9 −9 Jolt/Physics/Character/CharacterVirtual.cpp
+1 −1 Jolt/Physics/Collision/BroadPhase/QuadTree.cpp
+3 −0 Jolt/Physics/Collision/CollisionCollector.h
+85 −0 Jolt/Physics/Collision/CollisionCollectorImpl.h
+10 −0 Jolt/Physics/Collision/InternalEdgeRemovingCollector.h
+26 −75 Jolt/Physics/Collision/NarrowPhaseQuery.cpp
+3 −3 Jolt/Physics/Collision/Shape/ConvexShape.cpp
+2 −2 Jolt/Physics/Collision/Shape/HeightFieldShape.h
+1 −1 Jolt/Physics/Collision/Shape/MeshShape.cpp
+3 −3 Jolt/Physics/Collision/Shape/MutableCompoundShape.cpp
+1 −1 Jolt/Physics/Collision/Shape/ScaleHelpers.h
+1 −1 Jolt/Physics/Collision/Shape/Shape.cpp
+1 −1 Jolt/Physics/Collision/Shape/SphereShape.cpp
+1 −1 Jolt/Physics/Collision/Shape/StaticCompoundShape.cpp
+1 −1 Jolt/Physics/Collision/Shape/TaperedCapsuleShape.cpp
+1 −1 Jolt/Physics/Collision/Shape/TriangleShape.cpp
+1 −1 Jolt/Physics/PhysicsScene.cpp
+7 −7 Jolt/Physics/PhysicsSystem.cpp
+1 −1 Jolt/Physics/SoftBody/SoftBodyMotionProperties.cpp
+2 −2 Jolt/Physics/Vehicle/VehicleCollisionTester.cpp
+0 −1 README.md
+40 −12 Samples/SamplesApp.cpp
+4 −3 Samples/SamplesApp.h
+2 −2 Samples/Tests/Character/CharacterBaseTest.cpp
+1 −1 Samples/Tests/Character/CharacterPlanetTest.cpp
+1 −1 Samples/Tests/Character/CharacterSpaceShipTest.cpp
+2 −2 Samples/Tests/Character/CharacterVirtualTest.cpp
+4 −4 Samples/Tests/Constraints/HingeConstraintTest.cpp
+4 −4 Samples/Tests/Constraints/SliderConstraintTest.cpp
+4 −4 Samples/Tests/ConvexCollision/CapsuleVsBoxTest.cpp
+4 −4 Samples/Tests/ConvexCollision/ConvexHullShrinkTest.cpp
+8 −8 Samples/Tests/ConvexCollision/RandomRayTest.cpp
+1 −1 Samples/Tests/General/ShapeFilterTest.cpp
+1 −1 Samples/Tests/Rig/BigWorldTest.cpp
+1 −1 Samples/Tests/ScaledShapes/DynamicScaledShape.cpp
+1 −1 Samples/Tests/Shapes/DeformedHeightFieldShapeTest.cpp
+2 −1 Samples/Tests/Shapes/MutableCompoundShapeTest.cpp
+1 −1 Samples/Tests/SoftBody/SoftBodyCustomUpdateTest.cpp
+1 −1 Samples/Tests/SoftBody/SoftBodyStressTest.cpp
+1 −1 Samples/Tests/Vehicle/MotorcycleTest.cpp
+1 −1 Samples/Tests/Vehicle/VehicleConstraintTest.cpp
+0 −1 TestFramework/Application/Application.cpp
+4 −4 UnitTests/Geometry/GJKTests.cpp
+1 −1 UnitTests/Geometry/RayAABoxTests.cpp
+1 −1 UnitTests/Math/EigenValueSymmetricTests.cpp
+0 −1 UnitTests/Math/HalfFloatTests.cpp
+4 −4 UnitTests/Math/Vec4Tests.cpp
+11 −11 UnitTests/Physics/ActiveEdgesTests.cpp
+1 −1 UnitTests/Physics/BroadPhaseTests.cpp
+116 −18 UnitTests/Physics/CastShapeTests.cpp
+20 −20 UnitTests/Physics/CollideShapeTests.cpp
+1 −1 UnitTests/Physics/ContactListenerTests.cpp
+6 −6 UnitTests/Physics/ConvexVsTrianglesTest.cpp
+40 −4 UnitTests/Physics/MutableCompoundShapeTests.cpp
+1 −1 UnitTests/Physics/PhysicsStepListenerTests.cpp
+18 −18 UnitTests/Physics/PhysicsTests.cpp
+3 −3 UnitTests/Physics/ShapeTests.cpp
+0 −36 WebIncludes/profile_chart.css
+0 −285 WebIncludes/profile_chart.js

0 comments on commit 8be7436

Please sign in to comment.