use core::{cell::RefCell, time::Duration};
use alloc::rc::Rc;
use esp_hal::time::Instant;
use log::info;
use slint::{
PhysicalSize, WindowSize,
platform::software_renderer::{
RenderingRotation, RepaintBufferType, Rgb565Pixel, SoftwareRenderer,
},
};
use super::window_adapter::SoftwareWindowAdapter;
pub struct FramebufferPtr(pub *mut [Rgb565Pixel]);
unsafe impl Send for FramebufferPtr {}
pub struct SlintBackend {
pub window_size: [u32; 2],
pub window: RefCell