Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

617 query pipeline memory #3

Closed
wants to merge 52 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
00f59d2
clippy: Fix `clippy::lazy_doc_continuation` lints (#689)
waywardmonkeys Jul 18, 2024
850aa31
clippy: Fix `clippy::field_reassign_with_default` lints (#690)
waywardmonkeys Jul 18, 2024
9abf6fb
Fix `rustdoc::broken_intra_doc_links` (#688)
waywardmonkeys Jul 18, 2024
801870b
Fix spelling in filename for `debug_excentric_boxes3` (#691)
waywardmonkeys Jul 18, 2024
0ff5541
More Debug derives. (#686)
Vrixyz Jul 19, 2024
55a7d8b
testbed: Remove use of missing log feature (#684)
waywardmonkeys Jul 19, 2024
cf74150
Release v0.22.0 (#695)
sebcrozet Jul 20, 2024
7374653
docs: Fix minor typos and tweaks (#696)
waywardmonkeys Jul 22, 2024
a36d75e
ci: Enable same features as docs.rs in cargo doc (#697)
waywardmonkeys Jul 22, 2024
ce17947
Fix intradoc link to fix CI. (#699)
waywardmonkeys Jul 23, 2024
b734786
ci: Add `typos` check (#698)
waywardmonkeys Jul 23, 2024
35ac662
Fix spelling of `below` and `orthogonalization`. (#700)
waywardmonkeys Jul 26, 2024
50b6c1b
forbid bellow (#703)
Vrixyz Jul 29, 2024
595b952
Update flags for testbed (#704)
JulianKnodt Jul 31, 2024
364b5b7
Color visualization for grounded character controller (#705)
Vrixyz Aug 2, 2024
617428e
Use workspace lints to control unexpected_cfgs. (#682)
waywardmonkeys Aug 2, 2024
7ff92b1
Fix CI (#707)
Vrixyz Aug 5, 2024
af3a26c
Improve distant object panics in broad phase (#128)
aristaeus Aug 5, 2024
510686a
`InteractionGroups` default memberships value is now `GROUP_1` (#706)
Aceeri Aug 5, 2024
5542bc5
character controller: Fix some cases of grounded not being detected (…
Vrixyz Aug 9, 2024
ed133e1
Fix more typos. (#712)
waywardmonkeys Aug 9, 2024
b66452b
Fix string serialization for broadphase multisap (regions) (#710)
Vrixyz Aug 9, 2024
3e058ae
Improve typos configuration (#714)
szepeviktor Aug 26, 2024
983f8a3
Fix pluralization in doc comment. (#725)
waywardmonkeys Aug 30, 2024
58785ce
chore: workspace lints now part of each crate. (#728)
Vrixyz Sep 3, 2024
98f9199
chore: add publish script for urdf and stl + unify all releases by de…
Vrixyz Sep 3, 2024
bedb12b
Release rapier3d-stl and rapier3d-urdf v0.3.0
sebcrozet Sep 3, 2024
04058a1
update testbeds to bevy 0.14 (#723)
Vrixyz Sep 6, 2024
c714ff8
ImpulseJointSet::get_mut option to wake up connected bodies (#716)
Vrixyz Sep 13, 2024
e7e196d
Improve capacity handling for `ColliderSet`, `RigidBodySet`. (#726)
waywardmonkeys Sep 16, 2024
76357e3
Fix CharacterController max/min slope handling (#701)
Vrixyz Sep 23, 2024
9e1113c
fix compilation for feature enhanced-determinism (#739)
Vrixyz Sep 23, 2024
0d791eb
Fixed some typos. (#757)
PieroV Nov 6, 2024
71f65fe
Use meshloader to support multiple file formats loading (#744)
Vrixyz Nov 12, 2024
513ab3d
Fixes default values for wasm32 for physics hooks (#740)
Ughuuu Nov 15, 2024
684f3a3
Fix character controller ground detection (#715)
Vrixyz Nov 19, 2024
ff79f4c
Urdf rs (#745)
Vrixyz Nov 19, 2024
510237c
Profiling support (#743)
Vrixyz Nov 19, 2024
bce7868
Fixed typo in link in CONTRIBUTING.md (#766)
legendofa Dec 3, 2024
93bd37d
fix clippy needless lifetimes (#769)
Vrixyz Dec 5, 2024
cf77b5b
Remove instant dependency in favor of web-time (#767)
Vrixyz Dec 6, 2024
dc4bd24
Update to Parry 0.18 (#770)
Vrixyz Jan 8, 2025
564f7b7
Fix Nans from RevoluteJoint::angle() (#736)
chrisdunelm Jan 8, 2025
2ed1934
Upgrade bevy 0.15 (#758)
Vrixyz Jan 8, 2025
552cfeb
Fix shape modification not updating graphics in testbed (#708)
agarret7 Jan 8, 2025
f2efccf
Release v0.23.0 (#782)
sebcrozet Jan 8, 2025
4867586
Fix year to 2025 in changelog (#786)
gak Jan 12, 2025
b0e72bb
Removed hardcoded values for DebugColor in various places (#774)
legendofa Jan 13, 2025
65f87d5
use hashset from parry (#716 follow up) (#788)
Vrixyz Jan 17, 2025
c4c549f
fix mesh to use 3d mesh in 3d testbed (#790)
Vrixyz Jan 20, 2025
9ff6c26
memory increase reproduction, outside of testbed
Vrixyz Jan 23, 2025
d61344b
run data, to discuss in PR.
Vrixyz Jan 23, 2025
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
26 changes: 23 additions & 3 deletions .github/workflows/rapier-ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Cargo doc
run: cargo doc -p rapier3d -p rapier2d -p rapier3d-stl -p rapier3d-urdf
run: cargo doc --features parallel,simd-stable,serde-serialize,debug-render -p rapier3d -p rapier2d -p rapier3d-meshloader -p rapier3d-urdf
build-native:
runs-on: ubuntu-latest
env:
Expand Down Expand Up @@ -59,6 +59,10 @@ jobs:
run: cd crates/rapier_testbed2d; cargo check --verbose --features parallel;
- name: Check rapier_testbed3d --features parallel
run: cd crates/rapier_testbed3d; cargo check --verbose --features parallel;
- name: Check rapier_testbed2d --features enhanced-determinism
run: cd crates/rapier2d; cargo check --verbose --features enhanced-determinism;
- name: Check rapier_testbed3d --features enhanced-determinism
run: cd crates/rapier3d; cargo check --verbose --features enhanced-determinism;
- name: Check rapier-examples-2d
run: cargo check -j 1 --verbose -p rapier-examples-2d;
- name: Check rapier-examples-3d
Expand All @@ -71,9 +75,9 @@ jobs:
- uses: actions/checkout@v4
- run: rustup target add wasm32-unknown-unknown
- name: build rapier2d
run: cd crates/rapier2d && cargo build --verbose --features wasm-bindgen --target wasm32-unknown-unknown;
run: cd crates/rapier2d && cargo build --verbose --target wasm32-unknown-unknown;
- name: build rapier3d
run: cd crates/rapier3d && cargo build --verbose --features wasm-bindgen --target wasm32-unknown-unknown;
run: cd crates/rapier3d && cargo build --verbose --target wasm32-unknown-unknown;
build-wasm-emscripten:
runs-on: ubuntu-latest
env:
Expand All @@ -89,3 +93,19 @@ jobs:
run: cd crates/rapier2d && cargo build --verbose --target wasm32-unknown-emscripten --features simd-stable;
- name: build rapier3d --features simd-stable
run: cd crates/rapier3d && cargo build --verbose --target wasm32-unknown-emscripten --features simd-stable;
# If this fails, consider changing your text or adding something to .typos.toml
# You can find typos here: https://crates.io/crates/typos'
typos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: check typos
uses: crate-ci/[email protected]
publish-dry-run:
runs-on: ubuntu-latest
env:
RUSTFLAGS: -D warnings
steps:
- uses: actions/checkout@v4
- name: publish dry-run
run: ./publish-all.sh
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ target
.DS_Store
package-lock.json
**/*.csv
.history
.history
.vscode/
25 changes: 25 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Corrections take the form of a key/value pair. The key is the incorrect word
# and the value is the correct word. If the key and value are the same, the
# word is treated as always correct. If the value is an empty string, the word
# is treated as always incorrect.

[files]
extend-exclude = [
".git/",
]
ignore-hidden = false

[default]
extend-ignore-re = [
"\\bPolygon::PN\\b",
]

# Case sensitive, matches entire word.
[default.extend-identifiers]
anc_color = "anc_color"
rady = "rady"

# Case insensitive, matches inside word.
[default.extend-words]
bellow = "below"
toi = "toi"
Loading
Loading