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

Panic due to Rect shape feathering #5664

Closed
PPakalns opened this issue Jan 31, 2025 · 2 comments · Fixed by #5692
Closed

Panic due to Rect shape feathering #5664

PPakalns opened this issue Jan 31, 2025 · 2 comments · Fixed by #5692
Labels
bug Something is broken crash crash, panic, segfault, freeze, … epaint

Comments

@PPakalns
Copy link
Contributor

PPakalns commented Jan 31, 2025

Describe the bug

When scaling UI if rendered Rect gets too small it may cause panic due to Rect being too small in some dimension and feathering was applied incorrectly (Not taking into account assert in inner function)

To Reproduce
Render small Rect under feathering threshold with texture_id set to non default value.

Expected behavior
If Rect can not be feathered, do not try to feather it.

Additional context
Egui version: 0.30

Stacktrace:

thread 'main' panicked at /home/pakalns/.cargo/git/checkouts/egui-f290029b5e1afa28/942690e/crates/epaint/src/mesh.rs:151:9:
assertion failed: self.texture_id == TextureId::default()
stack backtrace:
   0: rust_begin_unwind
             at /rustc/a730edcd67c7cb29d4458e170d4eb290387c27c3/library/std/src/panicking.rs:695:5
   1: core::panicking::panic_fmt
             at /rustc/a730edcd67c7cb29d4458e170d4eb290387c27c3/library/core/src/panicking.rs:75:14
   2: core::panicking::panic
             at /rustc/a730edcd67c7cb29d4458e170d4eb290387c27c3/library/core/src/panicking.rs:145:5
   3: colored_vertex
             at /home/pakalns/.cargo/git/checkouts/egui-f290029b5e1afa28/942690e/crates/epaint/src/mesh.rs:151:9
   4: stroke_path
   5: stroke_open
             at /home/pakalns/.cargo/git/checkouts/egui-f290029b5e1afa28/942690e/crates/epaint/src/tessellator.rs:482:9
   6: tessellate_line<epaint::stroke::Stroke>
             at /home/pakalns/.cargo/git/checkouts/egui-f290029b5e1afa28/942690e/crates/epaint/src/tessellator.rs:1587:9
   7: tessellate_rect
             at /home/pakalns/.cargo/git/checkouts/egui-f290029b5e1afa28/942690e/crates/epaint/src/tessellator.rs:1705:17
   8: tessellate_shape
             at /home/pakalns/.cargo/git/checkouts/egui-f290029b5e1afa28/942690e/crates/epaint/src/tessellator.rs:1394:17
   9: tessellate_clipped_shape
             at /home/pakalns/.cargo/git/checkouts/egui-f290029b5e1afa28/942690e/crates/epaint/src/tessellator.rs:1346:13
  10: tessellate_shapes
             at /home/pakalns/.cargo/git/checkouts/egui-f290029b5e1afa28/942690e/crates/epaint/src/tessellator.rs:2013:17
  11: {closure#0}
             at /home/pakalns/.cargo/git/checkouts/egui-f290029b5e1afa28/942690e/crates/egui/src/context.rs:2554:17
  12: write<alloc::vec::Vec<epaint::ClippedPrimitive, alloc::alloc::Global>, egui::context::{impl#18}::tessellate::{closure_env#0}>
             at /home/pakalns/.cargo/git/checkouts/egui-f290029b5e1afa28/942690e/crates/egui/src/context.rs:775:9
  13: egui::context::Context::tessellate
             at /home/pakalns/.cargo/git/checkouts/egui-f290029b5e1afa28/942690e/crates/egui/src/context.rs:2532:9
  14: process_output_system
@PPakalns PPakalns added the bug Something is broken label Jan 31, 2025
@emilk emilk added epaint crash crash, panic, segfault, freeze, … labels Feb 5, 2025
@PPakalns
Copy link
Contributor Author

PPakalns commented Feb 6, 2025

Upgraded to egui 0.31 . Panic is still triggered.

thread 'main' panicked at /home/home/.cargo/git/checkouts/egui-f290029b5e1afa28/1ecf239/crates/epaint/src/mesh.rs:158:9:
assertion failed: self.texture_id == TextureId::default()
stack backtrace:
   0: rust_begin_unwind
             at /rustc/a9730c3b5f84a001c052c60c97ed0765e9ceac04/library/std/src/panicking.rs:695:5
   1: core::panicking::panic_fmt
             at /rustc/a9730c3b5f84a001c052c60c97ed0765e9ceac04/library/core/src/panicking.rs:75:14
   2: core::panicking::panic
             at /rustc/a9730c3b5f84a001c052c60c97ed0765e9ceac04/library/core/src/panicking.rs:145:5
   3: colored_vertex
             at /home/home/.cargo/git/checkouts/egui-f290029b5e1afa28/1ecf239/crates/epaint/src/mesh.rs:158:9
   4: stroke_and_fill_path
   5: stroke_path
             at /home/home/.cargo/git/checkouts/egui-f290029b5e1afa28/1ecf239/crates/epaint/src/tessellator.rs:915:5
   6: stroke_open
             at /home/home/.cargo/git/checkouts/egui-f290029b5e1afa28/1ecf239/crates/epaint/src/tessellator.rs:494:9
   7: tessellate_line_segment<(f32, ecolor::color32::Color32)>
             at /home/home/.cargo/git/checkouts/egui-f290029b5e1afa28/1ecf239/crates/epaint/src/tessellator.rs:1697:9
   8: tessellate_rect
   9: tessellate_shape
             at /home/home/.cargo/git/checkouts/egui-f290029b5e1afa28/1ecf239/crates/epaint/src/tessellator.rs:1462:17
  10: tessellate_clipped_shape
             at /home/home/.cargo/git/checkouts/egui-f290029b5e1afa28/1ecf239/crates/epaint/src/tessellator.rs:1412:13
  11: tessellate_shapes
             at /home/home/.cargo/git/checkouts/egui-f290029b5e1afa28/1ecf239/crates/epaint/src/tessellator.rs:2287:17
  12: {closure#0}
             at /home/home/.cargo/git/checkouts/egui-f290029b5e1afa28/1ecf239/crates/egui/src/context.rs:2532:17
  13: write<alloc::vec::Vec<epaint::ClippedPrimitive, alloc::alloc::Global>, egui::context::{impl#18}::tessellate::{closure_env#0}>
             at /home/home/.cargo/git/checkouts/egui-f290029b5e1afa28/1ecf239/crates/egui/src/context.rs:775:9
  14: egui::context::Context::tessellate
             at /home/home/.cargo/git/checkouts/egui-f290029b5e1afa28/1ecf239/crates/egui/src/context.rs:2510:9
  15: process_output_system
             at /home/home/.cargo/git/checkouts/bevy_egui-73cc6f59dad4b33b/36379e4/src/output.rs:46:26


@PPakalns
Copy link
Contributor Author

PPakalns commented Feb 6, 2025

Maybe it is sufficient enough to check if default texture is used here:
https://github.com/emilk/egui/blob/master/crates/epaint/src/tessellator.rs#L1813

emilk pushed a commit that referenced this issue Feb 6, 2025
* Closes #5664
* [x] I have followed the instructions in the PR template
lucasmerlin pushed a commit that referenced this issue Mar 3, 2025
* Closes #5664
* [x] I have followed the instructions in the PR template

(cherry picked from commit 54d00d7)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something is broken crash crash, panic, segfault, freeze, … epaint
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants