diff options
author | Simon Ser <contact@emersion.fr> | 2020-03-09 18:45:55 +0100 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-03-09 19:26:12 +0100 |
commit | 41f9916ae59e8fc06e4e00dd3fc9b57baf5ed537 (patch) | |
tree | 7a607a0235c5b5d741329dc74e8a1adf3d8300c3 /include/wlr | |
parent | a71649dde9d5a4ee772e6b6b3b65f3aba28bd18f (diff) |
buffer: remove unused wlr_client_buffer fields
Forgot to remove these, they are superseded by fields in wlr_buffer. Some
functions were still using them.
Fixes: 8afc1ed68cfa ("Introduce wlr_client_buffer")
Closes: https://github.com/swaywm/sway/issues/5087
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_buffer.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/wlr/types/wlr_buffer.h b/include/wlr/types/wlr_buffer.h index b46b69a0..6a49a1bf 100644 --- a/include/wlr/types/wlr_buffer.h +++ b/include/wlr/types/wlr_buffer.h @@ -64,8 +64,6 @@ struct wlr_client_buffer { * client destroys the buffer before it has been released. */ struct wlr_texture *texture; - bool released; - size_t n_refs; struct wl_listener resource_destroy; }; |