mirror of
https://github.com/emilk/egui.git
synced 2026-08-31 22:00:03 -04:00
egui_glium: add support for transparent windows
Also support non-decorated windows (without border)
This commit is contained in:
@@ -54,6 +54,14 @@ impl epi::App for WrapApp {
|
||||
self.backend_panel.max_size_points_active
|
||||
}
|
||||
|
||||
// Let's show off that we support transparent windows (on native):
|
||||
fn transparent(&self) -> bool {
|
||||
true
|
||||
}
|
||||
fn clear_color(&self) -> egui::Rgba {
|
||||
egui::Rgba::TRANSPARENT // we set a `CentralPanel` fill color in `demo_windows.rs`
|
||||
}
|
||||
|
||||
fn warm_up_enabled(&self) -> bool {
|
||||
// The example windows use a lot of emojis. Pre-cache them by running one frame where everything is open
|
||||
#[cfg(debug_assertions)]
|
||||
|
||||
Reference in New Issue
Block a user