output: replace wlr_render_timer arg with wlr_buffer_pass_options

This scales better when more render pass options are added.
This commit is contained in:
Simon Ser 2023-11-30 19:48:01 +01:00
parent 5d639394f3
commit a165261f7f
2 changed files with 5 additions and 6 deletions

View file

@ -722,6 +722,7 @@ bool wlr_output_configure_primary_swapchain(struct wlr_output *output,
* frames or -1 if unknown. This is useful for damage tracking.
*/
struct wlr_render_pass *wlr_output_begin_render_pass(struct wlr_output *output,
struct wlr_output_state *state, int *buffer_age, struct wlr_render_timer *timer);
struct wlr_output_state *state, int *buffer_age,
struct wlr_buffer_pass_options *render_options);
#endif