diff options
author | Simon Ser <contact@emersion.fr> | 2021-07-12 17:54:43 +0200 |
---|---|---|
committer | Simon Zeni <simon@bl4ckb0ne.ca> | 2021-07-29 09:48:33 -0400 |
commit | 4ddde1a7bda543c4520bd6b50372c93d051e4395 (patch) | |
tree | b80f63f0278f377412fa4bcfd19c7d15bcc386ed /include | |
parent | d17a0090627e4e477220dc5a846ff021e297ade5 (diff) |
output: drop wlr_output_impl.{attach,rollback}_render
No backend uses these anymore.
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/interfaces/wlr_output.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/include/wlr/interfaces/wlr_output.h b/include/wlr/interfaces/wlr_output.h index 376e0875..100754f6 100644 --- a/include/wlr/interfaces/wlr_output.h +++ b/include/wlr/interfaces/wlr_output.h @@ -52,19 +52,6 @@ struct wlr_output_impl { */ 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. * * If this function returns true, commit can only fail due to a runtime |