-
Notifications
You must be signed in to change notification settings - Fork 403
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
Primary caching 6: TextLogs & TimeSeries #4698
Changes from all commits
7f89b8b
bdd2f07
0930cf6
10d4c48
569cefa
f23f605
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,9 @@ pub struct AppOptions { | |
/// Toggle primary caching for the 2D & 3D point cloud space views. | ||
pub experimental_primary_caching_point_clouds: bool, | ||
|
||
/// Toggle primary caching for the time series & text logs space views. | ||
pub experimental_primary_caching_series: bool, | ||
|
||
/// Displays an overlay for debugging picking. | ||
pub show_picking_debug_overlay: bool, | ||
|
||
|
@@ -61,6 +64,10 @@ impl Default for AppOptions { | |
// merged in. | ||
experimental_primary_caching_point_clouds: false, | ||
|
||
// TODO(cmc): default to true for debug/rerun-workspace once minimal features have been | ||
// merged in. | ||
Comment on lines
+67
to
+68
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will be defaulted to |
||
experimental_primary_caching_series: false, | ||
|
||
show_picking_debug_overlay: false, | ||
|
||
show_blueprint_in_timeline: false, | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.