Merge branch 'present-v3' into 'master'

presentation-time: implement support for presentation-time v3

See merge request wlroots/wlroots!5207
This commit is contained in:
llyyr 2026-05-26 14:35:59 +05:30
commit 8a9ff881b7
3 changed files with 15 additions and 1 deletions

View file

@ -310,6 +310,10 @@ enum wlr_output_present_flag {
WLR_OUTPUT_PRESENT_HW_COMPLETION = 0x4,
// The presentation of this update was done zero-copy.
WLR_OUTPUT_PRESENT_ZERO_COPY = 0x8,
// The display hardware is operating at a fixed refresh rate.
WLR_OUTPUT_PRESENT_FIXED_RATE = 0x10,
// The display hardware is operating at a variable refresh rate.
WLR_OUTPUT_PRESENT_VARIABLE_RATE = 0x20,
};
struct wlr_output_event_present {