diff options
| author | Simon Ser <contact@emersion.fr> | 2021-07-19 19:04:38 +0200 | 
|---|---|---|
| committer | Simon Zeni <simon@bl4ckb0ne.ca> | 2021-07-19 13:13:10 -0400 | 
| commit | 8afb4d8bf08c54ddb7f531ff6a253a2a88470ab1 (patch) | |
| tree | e8f251ca15573eb8206184fd7f6c4f6b5d6f33f9 /include | |
| parent | f94eb174c793c09adad8fbadb3333b22f28ee743 (diff) | |
| download | wlroots-8afb4d8bf08c54ddb7f531ff6a253a2a88470ab1.tar.xz | |
buffer: re-use wlr_shm_client_buffer
The first time wlr_buffer_from_resource is called with a wl_buffer
resource that originates from wl_shm, create a new
wlr_shm_client_buffer as usual. If wlr_buffer_from_resource is called
multiple times, re-use the existing wlr_shm_client_buffer.
This commit changes how the wlr_shm_client_buffer lifetime is managed:
previously it was destroyed as soon as the wlr_buffer was released.
With this commit it's destroyed when the wl_buffer resource is.
Apart from de-duplicating wlr_shm_client_buffer creations, this allows
to easily track when a wlr_shm_client_buffer is re-used. This is useful
for the renderer and the backends, e.g. the Pixman renderer can keep
using the same Pixman image if the buffer is re-used. In the future,
this will also allow to re-use resources in the Wayland and X11 backends
(remote wl_buffer objects for Wayland, pixmaps for X11).
Diffstat (limited to 'include')
| -rw-r--r-- | include/types/wlr_buffer.h | 3 | 
1 files changed, 0 insertions, 3 deletions
| diff --git a/include/types/wlr_buffer.h b/include/types/wlr_buffer.h index 896109fd..4817e23f 100644 --- a/include/types/wlr_buffer.h +++ b/include/types/wlr_buffer.h @@ -22,9 +22,6 @@ struct wlr_shm_client_buffer {  	struct wl_listener release;  }; -struct wlr_shm_client_buffer *shm_client_buffer_create( -	struct wl_resource *resource); -  /**   * A read-only buffer that holds a data pointer.   * | 
