cosmic-comp/src/backend/kms/mod.rs

17 lines
376 B
Rust
Raw Normal View History

2022-01-20 19:51:46 +01:00
// SPDX-License-Identifier: GPL-3.0-only
use crate::state::State;
use anyhow::Result;
use smithay::reexports::calloop::EventLoop;
pub struct KmsState {}
pub fn init_backend(event_loop: &mut EventLoop<State>, state: &mut State) -> Result<()> {
unimplemented!()
}
impl KmsState {
pub fn schedule_render(&mut self, output: &Output) {
unimplemented!();
}
}