diff options
author | Simon Ser <contact@emersion.fr> | 2021-12-01 08:49:48 +0100 |
---|---|---|
committer | Simon Zeni <simon@bl4ckb0ne.ca> | 2021-12-03 14:56:17 +0000 |
commit | efeb8346cfc6a18d2d9341460033883e4f89c28a (patch) | |
tree | bd2b7c0df7a365ab028e7f5c6c0bde1bb1a787ca /include/wlr | |
parent | 45069fb6234010e59933baad813c63def0254536 (diff) |
output: drop front_buffer
This lets backends immediately release committed buffers if they
want to.
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_output.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/types/wlr_output.h b/include/wlr/types/wlr_output.h index 689b8158..fd8e6556 100644 --- a/include/wlr/types/wlr_output.h +++ b/include/wlr/types/wlr_output.h @@ -188,7 +188,7 @@ struct wlr_output { struct wlr_allocator *allocator; struct wlr_renderer *renderer; struct wlr_swapchain *swapchain; - struct wlr_buffer *back_buffer, *front_buffer; + struct wlr_buffer *back_buffer; struct wl_listener display_destroy; |