Skip to content
Snippets Groups Projects
Commit f7765ad6 authored by Lyude Paul's avatar Lyude Paul
Browse files

rust: drm/kms: Add RawCrtcState::active()


A binding for checking drm_crtc_state.active.

Signed-off-by: Lyude Paul's avatarLyude Paul <lyude@redhat.com>
parent 67cc6816
No related branches found
No related tags found
No related merge requests found
...@@ -496,6 +496,14 @@ pub trait RawCrtcState: AsRawCrtcState { ...@@ -496,6 +496,14 @@ pub trait RawCrtcState: AsRawCrtcState {
// state // state
unsafe { <Self::Crtc as AsRawCrtc>::from_raw((*self.as_raw()).crtc) } unsafe { <Self::Crtc as AsRawCrtc>::from_raw((*self.as_raw()).crtc) }
} }
/// Returns whether or not the CRTC is active in this atomic state.
fn active(&self) -> bool {
// SAFETY: `active` and the rest of its containing bitfield can only be modified from the
// atomic check context, and are invariant beyond that point - so our interface can ensure
// this access is serialized
unsafe { (*self.as_raw()).active }
}
} }
impl<T: AsRawCrtcState> RawCrtcState for T {} impl<T: AsRawCrtcState> RawCrtcState for T {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment