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: 8afc1ed68c ("Introduce wlr_client_buffer")
Closes: https://github.com/swaywm/sway/issues/5087
This commit is contained in:
Simon Ser 2020-03-09 18:45:55 +01:00 committed by Drew DeVault
parent a71649dde9
commit 41f9916ae5
3 changed files with 6 additions and 8 deletions

View file

@ -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;
};