mirror of
https://github.com/encounter/objdiff.git
synced 2025-12-20 18:29:19 +00:00
Split into objdiff-core / objdiff-gui; update egui to 0.26.2
This commit is contained in:
17
objdiff-gui/src/views/mod.rs
Normal file
17
objdiff-gui/src/views/mod.rs
Normal file
@@ -0,0 +1,17 @@
|
||||
use egui::{text::LayoutJob, Color32, FontId, TextFormat};
|
||||
|
||||
pub(crate) mod appearance;
|
||||
pub(crate) mod config;
|
||||
pub(crate) mod data_diff;
|
||||
pub(crate) mod debug;
|
||||
pub(crate) mod demangle;
|
||||
pub(crate) mod file;
|
||||
pub(crate) mod frame_history;
|
||||
pub(crate) mod function_diff;
|
||||
pub(crate) mod jobs;
|
||||
pub(crate) mod symbol_diff;
|
||||
|
||||
#[inline]
|
||||
fn write_text(str: &str, color: Color32, job: &mut LayoutJob, font_id: FontId) {
|
||||
job.append(str, 0.0, TextFormat::simple(font_id, color));
|
||||
}
|
||||
Reference in New Issue
Block a user