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

Use profiling crate to support more profiler backends #5150

Merged
merged 33 commits into from
Dec 16, 2024
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
5d7060c
Convert custom profiling function and scope abstractions in epaint to…
teddemunnik Sep 22, 2024
7e38bb4
Convert custom profiling function and scope abstractions in egui to p…
teddemunnik Sep 22, 2024
96a64e6
Convert custom profiling function and scope abstractions in egui to p…
teddemunnik Sep 22, 2024
ba0fb95
Convert custom profiling function and scope abstractions in egui-glow…
teddemunnik Sep 22, 2024
65ed0d8
Convert custom profiling function and scope abstractions in egui-wgpu…
teddemunnik Sep 22, 2024
6f44f71
Convert custom profiling function and scope abstractions in egui-extr…
teddemunnik Sep 22, 2024
8c1fe36
Make egui_demo_app work with the new profiling crate macros
teddemunnik Sep 22, 2024
0775067
Convert custom profiling function and scope abstractions, and puffin …
teddemunnik Sep 22, 2024
a5dec2c
Update puffin_profiler sample to use enable puffin feature in the pro…
teddemunnik Sep 22, 2024
f327f85
Update docstring to reference the profiling crate instead of a specif…
teddemunnik Sep 22, 2024
f177a29
Add tracy feature to egui_demo_app to test out another profiling crat…
teddemunnik Sep 22, 2024
d21a5c7
Fix typo
teddemunnik Sep 22, 2024
b08c82b
Fix remaining usages of profile_function!()
teddemunnik Sep 22, 2024
5777057
Remove tracy feature as mutually exclusive features are not handled b…
teddemunnik Sep 22, 2024
c023e83
Fix compile error on wasm due to profiling dependency being native only
teddemunnik Sep 22, 2024
3cccf8a
Merge remote-tracking branch 'upstream/master' into pr/profiling-crate
teddemunnik Sep 23, 2024
c981259
Merge remote-tracking branch 'upstream/master' into pr/profiling-crate
teddemunnik Sep 23, 2024
ad4dc3b
Review feedback: alphabetical sorting of cargo dependencies
teddemunnik Sep 24, 2024
383dc6e
Add crate level docs about the usage of the profiling crate
teddemunnik Sep 25, 2024
b16593f
Merge branch 'master' into pr/profiling-crate
teddemunnik Oct 27, 2024
b1309d7
Update to profiling 1.0.16
teddemunnik Oct 27, 2024
e866c67
Replace usages of #[profiling::function] with profiling::function_sco…
teddemunnik Oct 27, 2024
23c15a7
Fix regressions caused by initial switch to procedural macros, and ma…
teddemunnik Oct 27, 2024
4e37c17
Disable default features for profiling crate, disabling it's procedur…
teddemunnik Oct 27, 2024
a6dc835
Ignore profiling dependency from cargo machete. It looks unused, as i…
teddemunnik Oct 27, 2024
b7dbd7a
Merge branch 'master' into pr/profiling-crate
teddemunnik Oct 27, 2024
c51b193
Fix compilation error after syncing with master by replacing a new us…
teddemunnik Oct 27, 2024
088161c
Replace more usages of built in profiling macro with profiling crate …
teddemunnik Oct 27, 2024
051b3ba
Mark TOML sample as TOML so that doc test does not attempt to run it …
teddemunnik Oct 27, 2024
13e2db6
Also mark egui inline toml as toml to not fail doc tests
teddemunnik Oct 27, 2024
ed3de69
Merge branch 'master' into pr/profiling-crate
teddemunnik Dec 14, 2024
2ff6c4b
Fix compilation issues after merge with master
teddemunnik Dec 14, 2024
dfd43aa
Convert new usages of crate::profile_scope! to profiling::scope!
teddemunnik Dec 15, 2024
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
Prev Previous commit
Next Next commit
Also mark egui inline toml as toml to not fail doc tests
  • Loading branch information
teddemunnik committed Oct 27, 2024
commit 13e2db6fa8a599ae24539d74ff536742d0695718
2 changes: 1 addition & 1 deletion crates/egui/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@
//! This crate supports using the [profiling](https://crates.io/crates/profiling) crate for instrumentation.
//! You can enable features on the profiling crates in your application to add instrumentation for all
//! crates that support it, including egui. See the profiling crate docs for more information.
//! ```
//! ```toml
//! [dependencies]
//! profiling = "1.0"
//! [features]
Expand Down