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!()
|
|
|
|
|
}
|
2022-01-28 18:54:25 +01:00
|
|
|
|
|
|
|
|
impl KmsState {
|
|
|
|
|
pub fn schedule_render(&mut self, output: &Output) {
|
|
|
|
|
unimplemented!();
|
|
|
|
|
}
|
|
|
|
|
}
|