Available on crate feature
wayland_frontend
only.Expand description
Utilities for handling the wp_presentation
protocol
§How to use it
§Initialization
To initialize this implementation, create PresentationState
, store it in your State
struct and
implement the required traits, as shown in this example:
use smithay::wayland::presentation::PresentationState;
use smithay::delegate_presentation;
// Create the presentation state:
let presentation_state = PresentationState::new::<State>(
&display.handle(), // the display
1 // the id of the clock
);
// implement Dispatch for the Presentation types
delegate_presentation!(State);
// You're now ready to go!
§Use the presentation state
Before sending the frame callbacks you should drain all committed presentation feedback callbacks. After the associated frame has been presented the callbacks can be marked presented as shown in the example.
The presentation state
is double-buffered and
can be accessed by using the with_states
function
use smithay::wayland::presentation::{PresentationFeedbackCachedState, Refresh};
use wayland_protocols::wp::presentation_time::server::wp_presentation_feedback;
// ... render frame ...
let presentation_feedbacks = with_states(&surface, |states| {
std::mem::take(&mut states.cached_state.get::<PresentationFeedbackCachedState>().current().callbacks)
});
// ... send frame callbacks and present frame
for feedback in presentation_feedbacks {
feedback.presented(&output, time, refresh, seq, wp_presentation_feedback::Kind::Vsync);
}
Structs§
- Presentation
Feedback Cached State - State of a single presentation feedback requested for a surface
- Presentation
Feedback Callback - Holds a single presentation feedback
- Presentation
Feedback State - State for a single presentation feedback callback
- Presentation
State - State of the wp_presentation global
Enums§
- Refresh
- Refresh of the output on which the surface was presented