output: add presented flag to presentation event

This commit is contained in:
Kirill Primak 2021-10-14 22:40:12 +03:00 committed by Simon Ser
parent 1089b7b8d6
commit 2af8cc769a
6 changed files with 11 additions and 2 deletions

View file

@ -66,6 +66,7 @@ static bool output_commit(struct wlr_output *wlr_output) {
if (wlr_output->pending.committed & WLR_OUTPUT_STATE_BUFFER) {
struct wlr_output_event_present present_event = {
.commit_seq = wlr_output->commit_seq + 1,
.presented = true,
};
wlr_output_send_present(wlr_output, &present_event);
}