notan 0.14.0

A simple portable multimedia layer to create apps or games easily
Documentation
use notan::egui::{self, *};
use notan::prelude::*;

#[derive(AppState)]
struct State {
    sized_texture: egui::SizedTexture,
}

impl State {
    fn new(gfx: &mut Graphics) -> State {
        let texture = gfx
            .create_texture()
            .from_image(include_bytes!("assets/rust-logo-256x256.png"))
            .with_premultiplied_alpha()
            .build()
            .unwrap();

        let sized_texture = gfx.egui_register_texture(&texture);

        Self { sized_texture }
    }
}

#[notan_main]
fn main() -> Result<(), String> {
    let win = WindowConfig::default()
        .set_lazy_loop(true)
        .set_vsync(true)
        .set_high_dpi(true);

    notan::init_with(State::new)
        .add_config(win)
        .add_config(EguiConfig)
        .draw(draw)
        .build()
}

fn draw(gfx: &mut Graphics, plugins: &mut Plugins, state: &mut State) {
    let mut output = plugins.egui(|ctx| {
        egui::Window::new("Notan Texture").show(ctx, |ui| {
            ui.image(state.sized_texture);
        });
    });

    output.clear_color(Color::BLACK);
    gfx.render(&output);
}