mirror of
https://github.com/pinnacle-comp/pinnacle.git
synced 2024-12-26 21:58:10 +01:00
Impl wlr-output-power-management
This commit is contained in:
parent
1f3a504387
commit
07917a82ef
10 changed files with 242 additions and 51 deletions
|
@ -1070,6 +1070,7 @@ impl output_service_server::OutputService for OutputService {
|
||||||
let Some(mode) = Some(request).and_then(|request| {
|
let Some(mode) = Some(request).and_then(|request| {
|
||||||
Some(smithay::output::Mode {
|
Some(smithay::output::Mode {
|
||||||
size: (request.pixel_width? as i32, request.pixel_height? as i32).into(),
|
size: (request.pixel_width? as i32, request.pixel_height? as i32).into(),
|
||||||
|
// FIXME: this is nullable, pick a mode with highest refresh if None
|
||||||
refresh: request.refresh_rate_millihz? as i32,
|
refresh: request.refresh_rate_millihz? as i32,
|
||||||
})
|
})
|
||||||
}) else {
|
}) else {
|
||||||
|
|
|
@ -11,9 +11,7 @@ use std::{
|
||||||
|
|
||||||
use anyhow::{anyhow, ensure, Context};
|
use anyhow::{anyhow, ensure, Context};
|
||||||
use drm::{set_crtc_active, util::create_drm_mode};
|
use drm::{set_crtc_active, util::create_drm_mode};
|
||||||
use pinnacle_api_defs::pinnacle::signal::v0alpha1::{
|
use pinnacle_api_defs::pinnacle::signal::v0alpha1::OutputConnectResponse;
|
||||||
OutputConnectResponse, OutputDisconnectResponse,
|
|
||||||
};
|
|
||||||
use smithay::{
|
use smithay::{
|
||||||
backend::{
|
backend::{
|
||||||
allocator::{
|
allocator::{
|
||||||
|
@ -51,10 +49,7 @@ use smithay::{
|
||||||
vulkan::{self, version::Version, PhysicalDevice},
|
vulkan::{self, version::Version, PhysicalDevice},
|
||||||
SwapBuffersError,
|
SwapBuffersError,
|
||||||
},
|
},
|
||||||
desktop::{
|
desktop::utils::{send_frames_surface_tree, OutputPresentationFeedback},
|
||||||
layer_map_for_output,
|
|
||||||
utils::{send_frames_surface_tree, OutputPresentationFeedback},
|
|
||||||
},
|
|
||||||
input::pointer::CursorImageStatus,
|
input::pointer::CursorImageStatus,
|
||||||
output::{Output, PhysicalProperties, Subpixel},
|
output::{Output, PhysicalProperties, Subpixel},
|
||||||
reexports::{
|
reexports::{
|
||||||
|
@ -1199,39 +1194,7 @@ impl Udev {
|
||||||
.cloned();
|
.cloned();
|
||||||
|
|
||||||
if let Some(output) = output {
|
if let Some(output) = output {
|
||||||
// Save this output's state. It will be restored if the monitor gets replugged.
|
pinnacle.remove_output(&output);
|
||||||
pinnacle.config.connector_saved_states.insert(
|
|
||||||
OutputName(output.name()),
|
|
||||||
ConnectorSavedState {
|
|
||||||
loc: output.current_location(),
|
|
||||||
tags: output.with_state(|state| state.tags.clone()),
|
|
||||||
scale: Some(output.current_scale()),
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
// TODO: extract into a `remove_output` function and unify with dummy backend
|
|
||||||
for layer in layer_map_for_output(&output).layers() {
|
|
||||||
layer.layer_surface().send_close();
|
|
||||||
}
|
|
||||||
|
|
||||||
pinnacle.space.unmap_output(&output);
|
|
||||||
pinnacle.gamma_control_manager_state.output_removed(&output);
|
|
||||||
|
|
||||||
pinnacle.signal_state.output_disconnect.signal(|buffer| {
|
|
||||||
buffer.push_back(OutputDisconnectResponse {
|
|
||||||
output_name: Some(output.name()),
|
|
||||||
})
|
|
||||||
});
|
|
||||||
|
|
||||||
pinnacle
|
|
||||||
.output_management_manager_state
|
|
||||||
.remove_head(&output);
|
|
||||||
pinnacle.output_management_manager_state.update::<State>();
|
|
||||||
|
|
||||||
if let Some(global) = pinnacle.outputs.remove(&output) {
|
|
||||||
// TODO: disable ahead of time
|
|
||||||
pinnacle.display_handle.remove_global::<State>(global);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -347,6 +347,7 @@ pub struct ConnectorSavedState {
|
||||||
pub tags: Vec<Tag>,
|
pub tags: Vec<Tag>,
|
||||||
/// The output's previous scale
|
/// The output's previous scale
|
||||||
pub scale: Option<smithay::output::Scale>,
|
pub scale: Option<smithay::output::Scale>,
|
||||||
|
// TODO: transform
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Parse a metaconfig file in `config_dir`, if any.
|
/// Parse a metaconfig file in `config_dir`, if any.
|
||||||
|
|
|
@ -74,7 +74,7 @@ use tracing::{debug, error, trace, warn};
|
||||||
use crate::{
|
use crate::{
|
||||||
backend::Backend,
|
backend::Backend,
|
||||||
delegate_foreign_toplevel, delegate_gamma_control, delegate_output_management,
|
delegate_foreign_toplevel, delegate_gamma_control, delegate_output_management,
|
||||||
delegate_screencopy,
|
delegate_output_power_management, delegate_screencopy,
|
||||||
focus::{keyboard::KeyboardFocusTarget, pointer::PointerFocusTarget},
|
focus::{keyboard::KeyboardFocusTarget, pointer::PointerFocusTarget},
|
||||||
handlers::xdg_shell::snapshot_pre_commit_hook,
|
handlers::xdg_shell::snapshot_pre_commit_hook,
|
||||||
protocol::{
|
protocol::{
|
||||||
|
@ -83,6 +83,7 @@ use crate::{
|
||||||
output_management::{
|
output_management::{
|
||||||
OutputConfiguration, OutputManagementHandler, OutputManagementManagerState,
|
OutputConfiguration, OutputManagementHandler, OutputManagementManagerState,
|
||||||
},
|
},
|
||||||
|
output_power_management::{OutputPowerManagementHandler, OutputPowerManagementState},
|
||||||
screencopy::{Screencopy, ScreencopyHandler},
|
screencopy::{Screencopy, ScreencopyHandler},
|
||||||
},
|
},
|
||||||
render::util::snapshot::capture_snapshots_on_output,
|
render::util::snapshot::capture_snapshots_on_output,
|
||||||
|
@ -1011,6 +1012,21 @@ impl OutputManagementHandler for State {
|
||||||
}
|
}
|
||||||
delegate_output_management!(State);
|
delegate_output_management!(State);
|
||||||
|
|
||||||
|
impl OutputPowerManagementHandler for State {
|
||||||
|
fn output_power_management_state(&mut self) -> &mut OutputPowerManagementState {
|
||||||
|
&mut self.pinnacle.output_power_management_state
|
||||||
|
}
|
||||||
|
|
||||||
|
fn set_mode(&mut self, output: &Output, powered: bool) {
|
||||||
|
self.backend.set_output_powered(output, powered);
|
||||||
|
|
||||||
|
if powered {
|
||||||
|
self.schedule_render(output);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
delegate_output_power_management!(State);
|
||||||
|
|
||||||
impl Pinnacle {
|
impl Pinnacle {
|
||||||
fn position_popup(&self, popup: &PopupSurface) {
|
fn position_popup(&self, popup: &PopupSurface) {
|
||||||
trace!("State::position_popup");
|
trace!("State::position_popup");
|
||||||
|
|
|
@ -258,10 +258,16 @@ impl Pinnacle {
|
||||||
}
|
}
|
||||||
self.unmapped_outputs.remove(output);
|
self.unmapped_outputs.remove(output);
|
||||||
|
|
||||||
|
for layer in layer_map_for_output(output).layers() {
|
||||||
|
layer.layer_surface().send_close();
|
||||||
|
}
|
||||||
|
|
||||||
self.space.unmap_output(output);
|
self.space.unmap_output(output);
|
||||||
|
|
||||||
self.gamma_control_manager_state.output_removed(output);
|
self.gamma_control_manager_state.output_removed(output);
|
||||||
|
|
||||||
|
self.output_power_management_state.output_removed(output);
|
||||||
|
|
||||||
self.output_management_manager_state.remove_head(output);
|
self.output_management_manager_state.remove_head(output);
|
||||||
self.output_management_manager_state.update::<State>();
|
self.output_management_manager_state.update::<State>();
|
||||||
|
|
||||||
|
@ -279,9 +285,5 @@ impl Pinnacle {
|
||||||
scale: Some(output.current_scale()),
|
scale: Some(output.current_scale()),
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
for layer in layer_map_for_output(output).layers() {
|
|
||||||
layer.layer_surface().send_close();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
pub mod foreign_toplevel;
|
pub mod foreign_toplevel;
|
||||||
pub mod gamma_control;
|
pub mod gamma_control;
|
||||||
pub mod output_management;
|
pub mod output_management;
|
||||||
|
pub mod output_power_management;
|
||||||
pub mod screencopy;
|
pub mod screencopy;
|
||||||
|
|
||||||
|
|
|
@ -150,7 +150,6 @@ pub trait GammaControlHandler {
|
||||||
fn gamma_control_destroyed(&mut self, output: &Output);
|
fn gamma_control_destroyed(&mut self, output: &Output);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(missing_docs)]
|
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! delegate_gamma_control {
|
macro_rules! delegate_gamma_control {
|
||||||
($(@<$( $lt:tt $( : $clt:tt $(+ $dlt:tt )* )? ),+>)? $ty: ty) => {
|
($(@<$( $lt:tt $( : $clt:tt $(+ $dlt:tt )* )? ),+>)? $ty: ty) => {
|
||||||
|
|
|
@ -590,8 +590,6 @@ where
|
||||||
let correct_serial = manager_data.serial == serial;
|
let correct_serial = manager_data.serial == serial;
|
||||||
|
|
||||||
if !correct_serial {
|
if !correct_serial {
|
||||||
tracing::info!(mgr_serial = manager_data.serial, cfg_serial = serial);
|
|
||||||
tracing::info!("cancelled, incorrect serial 527");
|
|
||||||
config.cancelled();
|
config.cancelled();
|
||||||
config
|
config
|
||||||
.data::<PendingOutputConfiguration>()
|
.data::<PendingOutputConfiguration>()
|
||||||
|
@ -736,7 +734,6 @@ where
|
||||||
manager_for_configuration(state, resource).map(|(_, data)| data.serial);
|
manager_for_configuration(state, resource).map(|(_, data)| data.serial);
|
||||||
|
|
||||||
if manager_serial != Some(pending_data.serial) {
|
if manager_serial != Some(pending_data.serial) {
|
||||||
tracing::info!("cancelled, incorrect serial 661");
|
|
||||||
resource.cancelled();
|
resource.cancelled();
|
||||||
data.cancelled = true;
|
data.cancelled = true;
|
||||||
return;
|
return;
|
||||||
|
@ -765,7 +762,6 @@ where
|
||||||
manager_for_configuration(state, resource).map(|(_, data)| data.serial);
|
manager_for_configuration(state, resource).map(|(_, data)| data.serial);
|
||||||
|
|
||||||
if manager_serial != Some(pending_data.serial) {
|
if manager_serial != Some(pending_data.serial) {
|
||||||
tracing::info!("cancelled, incorrect serial 689");
|
|
||||||
resource.cancelled();
|
resource.cancelled();
|
||||||
data.cancelled = true;
|
data.cancelled = true;
|
||||||
return;
|
return;
|
||||||
|
@ -795,7 +791,6 @@ where
|
||||||
manager_for_configuration(state, resource).map(|(_, data)| data.serial);
|
manager_for_configuration(state, resource).map(|(_, data)| data.serial);
|
||||||
|
|
||||||
if manager_serial != Some(pending_data.serial) {
|
if manager_serial != Some(pending_data.serial) {
|
||||||
tracing::info!("cancelled, incorrect serial 718");
|
|
||||||
resource.cancelled();
|
resource.cancelled();
|
||||||
data.cancelled = true;
|
data.cancelled = true;
|
||||||
return;
|
return;
|
||||||
|
|
206
src/protocol/output_power_management.rs
Normal file
206
src/protocol/output_power_management.rs
Normal file
|
@ -0,0 +1,206 @@
|
||||||
|
use std::collections::HashMap;
|
||||||
|
|
||||||
|
use smithay::{
|
||||||
|
output::Output,
|
||||||
|
reexports::{
|
||||||
|
wayland_protocols_wlr::output_power_management::v1::server::{
|
||||||
|
zwlr_output_power_manager_v1::{self, ZwlrOutputPowerManagerV1},
|
||||||
|
zwlr_output_power_v1::{self, ZwlrOutputPowerV1},
|
||||||
|
},
|
||||||
|
wayland_server::{
|
||||||
|
self, backend::ClientId, Client, DataInit, Dispatch, DisplayHandle, GlobalDispatch,
|
||||||
|
Resource, WEnum,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
use tracing::warn;
|
||||||
|
|
||||||
|
use crate::state::WithState;
|
||||||
|
|
||||||
|
const VERSION: u32 = 1;
|
||||||
|
|
||||||
|
pub struct OutputPowerManagementState {
|
||||||
|
clients: HashMap<Output, ZwlrOutputPowerV1>,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct OutputPowerManagementGlobalData {
|
||||||
|
filter: Box<dyn Fn(&Client) -> bool + Send + Sync + 'static>,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub trait OutputPowerManagementHandler {
|
||||||
|
fn output_power_management_state(&mut self) -> &mut OutputPowerManagementState;
|
||||||
|
fn set_mode(&mut self, output: &Output, powered: bool);
|
||||||
|
}
|
||||||
|
|
||||||
|
impl OutputPowerManagementState {
|
||||||
|
pub fn new<D, F>(display: &DisplayHandle, filter: F) -> Self
|
||||||
|
where
|
||||||
|
D: GlobalDispatch<ZwlrOutputPowerManagerV1, OutputPowerManagementGlobalData> + 'static,
|
||||||
|
F: Fn(&Client) -> bool + Send + Sync + 'static,
|
||||||
|
{
|
||||||
|
let data = OutputPowerManagementGlobalData {
|
||||||
|
filter: Box::new(filter),
|
||||||
|
};
|
||||||
|
|
||||||
|
display.create_global::<D, ZwlrOutputPowerManagerV1, _>(VERSION, data);
|
||||||
|
|
||||||
|
Self {
|
||||||
|
clients: HashMap::new(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn output_removed(&mut self, output: &Output) {
|
||||||
|
if let Some(power) = self.clients.remove(output) {
|
||||||
|
power.failed();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<D> GlobalDispatch<ZwlrOutputPowerManagerV1, OutputPowerManagementGlobalData, D>
|
||||||
|
for OutputPowerManagementState
|
||||||
|
where
|
||||||
|
D: Dispatch<ZwlrOutputPowerManagerV1, ()> + OutputPowerManagementHandler,
|
||||||
|
{
|
||||||
|
fn bind(
|
||||||
|
_state: &mut D,
|
||||||
|
_handle: &DisplayHandle,
|
||||||
|
_client: &Client,
|
||||||
|
resource: wayland_server::New<ZwlrOutputPowerManagerV1>,
|
||||||
|
_global_data: &OutputPowerManagementGlobalData,
|
||||||
|
data_init: &mut DataInit<'_, D>,
|
||||||
|
) {
|
||||||
|
data_init.init(resource, ());
|
||||||
|
}
|
||||||
|
|
||||||
|
fn can_view(client: Client, global_data: &OutputPowerManagementGlobalData) -> bool {
|
||||||
|
(global_data.filter)(&client)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<D> Dispatch<ZwlrOutputPowerManagerV1, (), D> for OutputPowerManagementState
|
||||||
|
where
|
||||||
|
D: Dispatch<ZwlrOutputPowerV1, ()> + OutputPowerManagementHandler,
|
||||||
|
{
|
||||||
|
fn request(
|
||||||
|
state: &mut D,
|
||||||
|
_client: &Client,
|
||||||
|
_resource: &ZwlrOutputPowerManagerV1,
|
||||||
|
request: <ZwlrOutputPowerManagerV1 as wayland_server::Resource>::Request,
|
||||||
|
_data: &(),
|
||||||
|
_dhandle: &DisplayHandle,
|
||||||
|
data_init: &mut DataInit<'_, D>,
|
||||||
|
) {
|
||||||
|
match request {
|
||||||
|
zwlr_output_power_manager_v1::Request::GetOutputPower { id, output } => {
|
||||||
|
let Some(output) = Output::from_resource(&output) else {
|
||||||
|
warn!("wlr-output-power-management: no output for wl_output {output:?}");
|
||||||
|
let power = data_init.init(id, ());
|
||||||
|
power.failed();
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
|
||||||
|
if state
|
||||||
|
.output_power_management_state()
|
||||||
|
.clients
|
||||||
|
.contains_key(&output)
|
||||||
|
{
|
||||||
|
warn!(
|
||||||
|
"wlr-output-power-management: {} already has an active power manager",
|
||||||
|
output.name()
|
||||||
|
);
|
||||||
|
let power = data_init.init(id, ());
|
||||||
|
power.failed();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let power = data_init.init(id, ());
|
||||||
|
let is_powered = output.with_state(|state| state.powered);
|
||||||
|
power.mode(match is_powered {
|
||||||
|
true => zwlr_output_power_v1::Mode::On,
|
||||||
|
false => zwlr_output_power_v1::Mode::Off,
|
||||||
|
});
|
||||||
|
|
||||||
|
state
|
||||||
|
.output_power_management_state()
|
||||||
|
.clients
|
||||||
|
.insert(output, power);
|
||||||
|
}
|
||||||
|
zwlr_output_power_manager_v1::Request::Destroy => (),
|
||||||
|
_ => unreachable!(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<D> Dispatch<ZwlrOutputPowerV1, (), D> for OutputPowerManagementState
|
||||||
|
where
|
||||||
|
D: Dispatch<ZwlrOutputPowerV1, ()> + OutputPowerManagementHandler,
|
||||||
|
{
|
||||||
|
fn request(
|
||||||
|
state: &mut D,
|
||||||
|
_client: &Client,
|
||||||
|
resource: &ZwlrOutputPowerV1,
|
||||||
|
request: <ZwlrOutputPowerV1 as wayland_server::Resource>::Request,
|
||||||
|
_data: &(),
|
||||||
|
_dhandle: &DisplayHandle,
|
||||||
|
_data_init: &mut DataInit<'_, D>,
|
||||||
|
) {
|
||||||
|
match request {
|
||||||
|
zwlr_output_power_v1::Request::SetMode { mode } => {
|
||||||
|
let Some(output) = state
|
||||||
|
.output_power_management_state()
|
||||||
|
.clients
|
||||||
|
.iter()
|
||||||
|
.find_map(|(output, power)| (power == resource).then_some(output.clone()))
|
||||||
|
else {
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
|
||||||
|
state.set_mode(
|
||||||
|
&output,
|
||||||
|
match mode {
|
||||||
|
WEnum::Value(zwlr_output_power_v1::Mode::On) => true,
|
||||||
|
WEnum::Value(zwlr_output_power_v1::Mode::Off) => false,
|
||||||
|
mode => {
|
||||||
|
resource.post_error(
|
||||||
|
zwlr_output_power_v1::Error::InvalidMode,
|
||||||
|
format!("invalid mode {mode:?}"),
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
zwlr_output_power_v1::Request::Destroy => {
|
||||||
|
state
|
||||||
|
.output_power_management_state()
|
||||||
|
.clients
|
||||||
|
.retain(|_, power| power == resource);
|
||||||
|
}
|
||||||
|
_ => todo!(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn destroyed(state: &mut D, _client: ClientId, resource: &ZwlrOutputPowerV1, _data: &()) {
|
||||||
|
state
|
||||||
|
.output_power_management_state()
|
||||||
|
.clients
|
||||||
|
.retain(|_, power| power == resource);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[macro_export]
|
||||||
|
macro_rules! delegate_output_power_management {
|
||||||
|
($(@<$( $lt:tt $( : $clt:tt $(+ $dlt:tt )* )? ),+>)? $ty: ty) => {
|
||||||
|
smithay::reexports::wayland_server::delegate_global_dispatch!($(@< $( $lt $( : $clt $(+ $dlt )* )? ),+ >)? $ty: [
|
||||||
|
smithay::reexports::wayland_protocols_wlr::output_power_management::v1::server::zwlr_output_power_manager_v1::ZwlrOutputPowerManagerV1: $crate::protocol::output_power_management::OutputPowerManagementGlobalData
|
||||||
|
] => $crate::protocol::output_power_management::OutputPowerManagementState);
|
||||||
|
|
||||||
|
smithay::reexports::wayland_server::delegate_dispatch!($(@< $( $lt $( : $clt $(+ $dlt )* )? ),+ >)? $ty: [
|
||||||
|
smithay::reexports::wayland_protocols_wlr::output_power_management::v1::server::zwlr_output_power_manager_v1::ZwlrOutputPowerManagerV1: ()
|
||||||
|
] => $crate::protocol::output_power_management::OutputPowerManagementState);
|
||||||
|
|
||||||
|
smithay::reexports::wayland_server::delegate_dispatch!($(@< $( $lt $( : $clt $(+ $dlt )* )? ),+ >)? $ty: [
|
||||||
|
smithay::reexports::wayland_protocols_wlr::output_power_management::v1::server::zwlr_output_power_v1::ZwlrOutputPowerV1: ()
|
||||||
|
] => $crate::protocol::output_power_management::OutputPowerManagementState);
|
||||||
|
};
|
||||||
|
}
|
|
@ -13,6 +13,7 @@ use crate::{
|
||||||
foreign_toplevel::{self, ForeignToplevelManagerState},
|
foreign_toplevel::{self, ForeignToplevelManagerState},
|
||||||
gamma_control::GammaControlManagerState,
|
gamma_control::GammaControlManagerState,
|
||||||
output_management::OutputManagementManagerState,
|
output_management::OutputManagementManagerState,
|
||||||
|
output_power_management::OutputPowerManagementState,
|
||||||
screencopy::ScreencopyManagerState,
|
screencopy::ScreencopyManagerState,
|
||||||
},
|
},
|
||||||
window::WindowElement,
|
window::WindowElement,
|
||||||
|
@ -109,6 +110,7 @@ pub struct Pinnacle {
|
||||||
pub xwayland_shell_state: XWaylandShellState,
|
pub xwayland_shell_state: XWaylandShellState,
|
||||||
pub idle_notifier_state: IdleNotifierState<State>,
|
pub idle_notifier_state: IdleNotifierState<State>,
|
||||||
pub output_management_manager_state: OutputManagementManagerState,
|
pub output_management_manager_state: OutputManagementManagerState,
|
||||||
|
pub output_power_management_state: OutputPowerManagementState,
|
||||||
|
|
||||||
pub lock_state: LockState,
|
pub lock_state: LockState,
|
||||||
|
|
||||||
|
@ -309,6 +311,10 @@ impl Pinnacle {
|
||||||
&display_handle,
|
&display_handle,
|
||||||
filter_restricted_client,
|
filter_restricted_client,
|
||||||
),
|
),
|
||||||
|
output_power_management_state: OutputPowerManagementState::new::<State, _>(
|
||||||
|
&display_handle,
|
||||||
|
filter_restricted_client,
|
||||||
|
),
|
||||||
|
|
||||||
lock_state: LockState::default(),
|
lock_state: LockState::default(),
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue