renderer: Drop wlr_renderer_begin

This commit is contained in:
Alexander Orzechowski 2023-11-29 15:13:24 -05:00
parent 2093564616
commit 3faf9883dc
2 changed files with 7 additions and 23 deletions

View file

@ -52,15 +52,6 @@ struct wlr_renderer {
*/
struct wlr_renderer *wlr_renderer_autocreate(struct wlr_backend *backend);
/**
* Start a render pass with the provided viewport.
*
* This should be called after wlr_output_attach_render(). Compositors must call
* wlr_renderer_end() when they are done.
*
* Returns false on failure, in which case compositors shouldn't try rendering.
*/
bool wlr_renderer_begin(struct wlr_renderer *r, uint32_t width, uint32_t height);
/**
* Start a render pass on the provided struct wlr_buffer.
*