//! Runs the rlvgl simulator in a desktop window.
userlvgl::platform::{InputEvent, PixelsDisplay};fnmain(){PixelsDisplay::new(64,64).run(|frame|{for pixel in frame.chunks_exact_mut(4){
pixel.copy_from_slice(&[0x00,0x00,0x00,0xff]);}},|_evt: InputEvent|{},);}