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-02-03 23:52:03 +05:30
commit fcab193c03
3 changed files with 15 additions and 1 deletions

View file

@ -303,6 +303,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 {