From 1fa9e0203b4192659a36ddd259c174569bc227d5 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Fri, 28 Feb 2020 15:25:35 +0100 Subject: buffer: add width and height --- include/wlr/types/wlr_buffer.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include/wlr') diff --git a/include/wlr/types/wlr_buffer.h b/include/wlr/types/wlr_buffer.h index fb308e61..454c5ba0 100644 --- a/include/wlr/types/wlr_buffer.h +++ b/include/wlr/types/wlr_buffer.h @@ -32,6 +32,8 @@ struct wlr_buffer_impl { struct wlr_buffer { const struct wlr_buffer_impl *impl; + int width, height; + bool dropped; size_t n_locks; @@ -47,7 +49,7 @@ struct wlr_buffer { * they should call wlr_buffer_drop. */ void wlr_buffer_init(struct wlr_buffer *buffer, - const struct wlr_buffer_impl *impl); + const struct wlr_buffer_impl *impl, int width, int height); /** * Unreference the buffer. This function should be called by producers when * they are done with the buffer. -- cgit v1.2.3