diff options
author | Simon Zeni <simon@bl4ckb0ne.ca> | 2021-07-12 11:50:34 -0400 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-07-22 22:28:24 +0200 |
commit | 646a25667eb4c51a1ea99a780a770a53f9d79991 (patch) | |
tree | 0590ba0aa5e994e18dcf82d728567f901cda4967 /include | |
parent | f09c88c1b740146c72de45973c6fe8b5b514d711 (diff) |
types/wlr_buffer: introduce wlr_buffer_resource_interface
Adds `wlr_buffer_resource_interface` and `wlr_buffer_register_resource_interface`,
which allows a user to register a way to create a wlr_buffer from a specific
wl_resource.
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_buffer.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_buffer.h b/include/wlr/types/wlr_buffer.h index edf53144..5dc8271d 100644 --- a/include/wlr/types/wlr_buffer.h +++ b/include/wlr/types/wlr_buffer.h @@ -69,6 +69,12 @@ struct wlr_buffer { } events; }; +struct wlr_buffer_resource_interface { + const char *name; + bool (*is_instance)(struct wl_resource *resource); + struct wlr_buffer *(*from_resource)(struct wl_resource *resource); +}; + /** * Initialize a buffer. This function should be called by producers. The * initialized buffer is referenced: once the producer is done with the buffer @@ -113,6 +119,14 @@ bool wlr_buffer_get_dmabuf(struct wlr_buffer *buffer, bool wlr_buffer_get_shm(struct wlr_buffer *buffer, struct wlr_shm_attributes *attribs); /** + * Allows the registration of a wl_resource implementation. + * + * The matching function will be called for the wl_resource when creating a + * wlr_buffer from a wl_resource. + */ +void wlr_buffer_register_resource_interface( + const struct wlr_buffer_resource_interface *iface); +/** * Transforms a wl_resource into a wlr_buffer and locks it. Once the caller is * done with the buffer, they must call wlr_buffer_unlock. * |