1 2 3 4 5 6 7
// SPDX-License-Identifier: GPL-3.0-only //! Display output: pixel surface plus an fbdev backend. pub mod surface; pub use surface::Surface; pub mod fbdev; pub use fbdev::FbDisplay;