mirror of
https://github.com/emilk/egui.git
synced 2026-09-01 06:10:06 -04:00
@@ -144,9 +144,17 @@ impl Widget for &mut epaint::TessellationOptions {
|
||||
debug_paint_clip_rects,
|
||||
debug_paint_text_rects,
|
||||
debug_ignore_clip_rects,
|
||||
bezier_tolerence,
|
||||
epsilon: _,
|
||||
} = self;
|
||||
ui.checkbox(anti_alias, "Antialias")
|
||||
.on_hover_text("Turn off for small performance gain.");
|
||||
ui.add(
|
||||
crate::widgets::Slider::new(bezier_tolerence, 0.0001..=10.0)
|
||||
.logarithmic(true)
|
||||
.show_value(true)
|
||||
.text("Spline Tolerance"),
|
||||
);
|
||||
ui.collapsing("debug", |ui| {
|
||||
ui.checkbox(
|
||||
coarse_tessellation_culling,
|
||||
|
||||
Reference in New Issue
Block a user