1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
use std::collections::HashMap;
use std::sync::{Arc, Mutex};
use std::time::Duration;
use smithay::backend::allocator::dmabuf::Dmabuf;
use smithay::backend::renderer::gles::GlesRenderer;
use smithay::output::Output;
use crate::input::CompositorMod;
use crate::Niri;
pub mod tty;
pub use tty::Tty;
pub mod winit;
pub use winit::Winit;
pub enum Backend {
Tty(Tty),
Winit(Winit),
}
#[derive(PartialEq, Eq)]
pub enum RenderResult {
/// The frame was submitted to the backend for presentation.
Submitted,
/// Rendering succeeded, but there was no damage.
NoDamage,
/// The frame was not rendered and submitted, due to an error or otherwise.
Skipped,
}
impl Backend {
pub fn init(&mut self, niri: &mut Niri) {
match self {
Backend::Tty(tty) => tty.init(niri),
Backend::Winit(winit) => winit.init(niri),
}
}
pub fn seat_name(&self) -> String {
match self {
Backend::Tty(tty) => tty.seat_name(),
Backend::Winit(winit) => winit.seat_name(),
}
}
pub fn with_primary_renderer<T>(
&mut self,
f: impl FnOnce(&mut GlesRenderer) -> T,
) -> Option<T> {
match self {
Backend::Tty(tty) => tty.with_primary_renderer(f),
Backend::Winit(winit) => winit.with_primary_renderer(f),
}
}
pub fn render(
&mut self,
niri: &mut Niri,
output: &Output,
target_presentation_time: Duration,
) -> RenderResult {
match self {
Backend::Tty(tty) => tty.render(niri, output, target_presentation_time),
Backend::Winit(winit) => winit.render(niri, output),
}
}
pub fn mod_key(&self) -> CompositorMod {
match self {
Backend::Tty(_) => CompositorMod::Super,
Backend::Winit(_) => CompositorMod::Alt,
}
}
pub fn change_vt(&mut self, vt: i32) {
match self {
Backend::Tty(tty) => tty.change_vt(vt),
Backend::Winit(_) => (),
}
}
pub fn suspend(&mut self) {
match self {
Backend::Tty(tty) => tty.suspend(),
Backend::Winit(_) => (),
}
}
pub fn toggle_debug_tint(&mut self) {
match self {
Backend::Tty(tty) => tty.toggle_debug_tint(),
Backend::Winit(winit) => winit.toggle_debug_tint(),
}
}
pub fn import_dmabuf(&mut self, dmabuf: &Dmabuf) -> Result<(), ()> {
match self {
Backend::Tty(tty) => tty.import_dmabuf(dmabuf),
Backend::Winit(winit) => winit.import_dmabuf(dmabuf),
}
}
#[cfg_attr(not(feature = "dbus"), allow(unused))]
pub fn connectors(&self) -> Arc<Mutex<HashMap<String, Output>>> {
match self {
Backend::Tty(tty) => tty.connectors(),
Backend::Winit(winit) => winit.connectors(),
}
}
#[cfg(feature = "xdp-gnome-screencast")]
pub fn gbm_device(
&self,
) -> Option<smithay::backend::allocator::gbm::GbmDevice<smithay::backend::drm::DrmDeviceFd>>
{
match self {
Backend::Tty(tty) => tty.gbm_device(),
Backend::Winit(_) => None,
}
}
pub fn set_monitors_active(&self, active: bool) {
match self {
Backend::Tty(tty) => tty.set_monitors_active(active),
Backend::Winit(_) => (),
}
}
pub fn tty(&mut self) -> &mut Tty {
if let Self::Tty(v) = self {
v
} else {
panic!("backend is not Tty");
}
}
pub fn winit(&mut self) -> &mut Winit {
if let Self::Winit(v) = self {
v
} else {
panic!("backend is not Winit")
}
}
}
|