output: drop wlr_output_impl.{attach,rollback}_render

No backend uses these anymore.
This commit is contained in:
Simon Ser 2021-07-12 17:54:43 +02:00 committed by Simon Zeni
parent d17a009062
commit 4ddde1a7bd
2 changed files with 6 additions and 49 deletions

View file

@ -51,19 +51,6 @@ struct wlr_output_impl {
* Cleanup backend-specific resources tied to the output.
*/
void (*destroy)(struct wlr_output *output);
/**
* Make the output's back-buffer current for the renderer.
*
* buffer_age must be set to the buffer age in number of frames, or -1 if
* unknown.
*/
bool (*attach_render)(struct wlr_output *output, int *buffer_age);
/**
* Unset the current renderer's buffer.
*
* This is the opposite of attach_render.
*/
void (*rollback_render)(struct wlr_output *output);
/**
* Check that the pending output state is a valid configuration.
*