[−][src]Struct wlroots::output::Damage
Tracks damage for an output.
When a frame
event is emitted, make_current
should be
called. If necessary, the output should be repainted and
swap_buffers
should be called.
No rendering should happen outside a frame
event handler.
Methods
impl Damage
[src]
impl Damage
pub fn make_current<'a, T>(&mut self, damage: T) -> bool where
T: Into<Option<&'a mut PixmanRegion>>,
[src]
pub fn make_current<'a, T>(&mut self, damage: T) -> bool where
T: Into<Option<&'a mut PixmanRegion>>,
Makes the output rendering context current.
Returns true
if wlr_output_damage_swap_buffers
needs to be called.
The region of the output that needs to be repainted is added to damage
.
pub fn swap_buffers<'a, T, U>(&mut self, when: T, damage: U) -> bool where
T: Into<Option<Duration>>,
U: Into<Option<&'a mut PixmanRegion>>,
[src]
pub fn swap_buffers<'a, T, U>(&mut self, when: T, damage: U) -> bool where
T: Into<Option<Duration>>,
U: Into<Option<&'a mut PixmanRegion>>,
Swaps the output buffers.
If the time of the frame isn't known, set when
to None
.
Swapping buffers schedules a frame
event.
pub fn add(&mut self, damage: &mut PixmanRegion)
[src]
pub fn add(&mut self, damage: &mut PixmanRegion)
Accumulates damage and schedules a frame
event.
pub fn add_whole(&mut self)
[src]
pub fn add_whole(&mut self)
Damages the whole output and schedules a frame
event.
pub fn add_area(&mut self, area: Area)
[src]
pub fn add_area(&mut self, area: Area)
Accumulates damage from an Area
and schedules a frame
event.
Trait Implementations
Auto Trait Implementations
Blanket Implementations
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more