diff options
author | Simon Zeni <simon@bl4ckb0ne.ca> | 2021-07-12 19:18:50 -0400 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-07-22 22:28:24 +0200 |
commit | 04d4fb536d2112caf38ad9903a7ce8616a21ba33 (patch) | |
tree | 39faa79dfdeecd18034ba84aea7d113b94bb65d3 /include/wlr | |
parent | 0778151f94c6c75678491d5d29af041cef628fca (diff) |
render/wlr_texture: put wlr_texture_from_buffer into the public API
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/render/wlr_texture.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/wlr/render/wlr_texture.h b/include/wlr/render/wlr_texture.h index aa905238..3495c443 100644 --- a/include/wlr/render/wlr_texture.h +++ b/include/wlr/render/wlr_texture.h @@ -13,6 +13,7 @@ #include <wayland-server-core.h> #include <wlr/render/dmabuf.h> +struct wlr_buffer; struct wlr_renderer; struct wlr_texture_impl; @@ -73,4 +74,13 @@ bool wlr_texture_write_pixels(struct wlr_texture *texture, */ void wlr_texture_destroy(struct wlr_texture *texture); +/** + * Create a new texture from a buffer. + * + * Should not be called in a rendering block like renderer_begin()/end() or + * between attaching a renderer to an output and committing it. + */ +struct wlr_texture *wlr_texture_from_buffer(struct wlr_renderer *renderer, + struct wlr_buffer *buffer); + #endif |