gled 2.14.0

gled is an application for creating animations and effects on artnet or dmx installations
1
2
3
4
5
6
7
8
9
use crate::ui::logo::icon;
use egui::ViewportBuilder;

pub fn default_viewport_builder() -> ViewportBuilder {
    ViewportBuilder::default()
        .with_app_id("de.photonenkollektiv.gled")
        .with_icon(icon())
        .with_decorations(false)
}