diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-10-04 22:18:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-04 22:18:19 +0200 |
commit | 24a48d4858a9d5eda0be86e20cbf0d378895063a (patch) | |
tree | 6fbd71fd0fe6f06183a7ee94b03727f69341328b /include/wlr/interfaces | |
parent | c67ce71fddeae90f6b3d89a742a77d049ffb3e20 (diff) | |
parent | eac7c2ad2faf49084342d9f805cf06b773723fdd (diff) |
Merge pull request #1272 from emersion/presentation-time
Implement presentation-time
Diffstat (limited to 'include/wlr/interfaces')
-rw-r--r-- | include/wlr/interfaces/wlr_output.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wlr/interfaces/wlr_output.h b/include/wlr/interfaces/wlr_output.h index bfb3bc9d..52581768 100644 --- a/include/wlr/interfaces/wlr_output.h +++ b/include/wlr/interfaces/wlr_output.h @@ -45,5 +45,7 @@ void wlr_output_update_enabled(struct wlr_output *output, bool enabled); void wlr_output_update_needs_swap(struct wlr_output *output); void wlr_output_damage_whole(struct wlr_output *output); void wlr_output_send_frame(struct wlr_output *output); +void wlr_output_send_present(struct wlr_output *output, + struct wlr_output_event_present *event); #endif |