capsules_extra/virtualizers/screen/mod.rs
1// Licensed under the Apache License, Version 2.0 or the MIT License.
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3// Copyright Tock Contributors 2025.
4
5//! Virtualizers for screens.
6//!
7//! Since screens are user-facing, they cannot be completely virtualized such
8//! that two users both have an abstraction that they completely own the
9//! screen. There may be multiple ways around this, and hence multiple
10//! virtualizers.
11
12pub mod virtual_screen_split;