Emil Ernerfeldt

Results 813 comments of Emil Ernerfeldt

Very related to: * https://github.com/rerun-io/rerun/issues/7056

To clarify: This should only affect pre-releases where the version number is the same, so this is low priority.

We should link to https://github.com/rerun-io/rerun/issues/4423 too

I know there was some decision to punt on this (and it was moved to Triage), so I'm moving this down in urgency. It would be nice with a short...

And the message is the panic is: > OutOfSpec("The children must have an equal number of values. However, the values at index 1 have a length of 0, which is...

Fix coming in egui 0.26.2: https://github.com/emilk/egui/pull/4037 In the meantime try `cargo install --locked puffin_viewer`

eframe 0.26.2 released - please verify `cargo install puffin_viewer` now works on Windows @Wumpf

This should be fixed now. New puffin release coming shortly.

You can use [re_memory](https://crates.io/crates/re_memory) to profile the memory use. `cargo add re_memory` ``` #[global_allocator] static GLOBAL: AccountingAllocator = AccountingAllocator::new(std::alloc::System); ``` `re_memory::accounting_allocator::set_tracking_callstacks(true);` let it run for a while and then call...