mirror of
https://github.com/encounter/objdiff.git
synced 2025-06-27 17:03:35 +00:00
14 lines
385 B
Rust
14 lines
385 B
Rust
use egui::{text::LayoutJob, Color32, FontId, TextFormat};
|
|
|
|
pub(crate) mod appearance;
|
|
pub(crate) mod config;
|
|
pub(crate) mod data_diff;
|
|
pub(crate) mod demangle;
|
|
pub(crate) mod function_diff;
|
|
pub(crate) mod jobs;
|
|
pub(crate) mod symbol_diff;
|
|
|
|
fn write_text(str: &str, color: Color32, job: &mut LayoutJob, font_id: FontId) {
|
|
job.append(str, 0.0, TextFormat::simple(font_id, color));
|
|
}
|