wlr_scene: Add setter for buffer of a wlr_scene_buffer

This commit is contained in:
Alexander Orzechowski 2022-05-19 14:17:51 -04:00
parent 039a31df9a
commit 61dab42c70
2 changed files with 29 additions and 0 deletions

View file

@ -275,6 +275,14 @@ void wlr_scene_rect_set_color(struct wlr_scene_rect *rect, const float color[sta
struct wlr_scene_buffer *wlr_scene_buffer_create(struct wlr_scene_node *parent,
struct wlr_buffer *buffer);
/**
* Sets the buffer's backing buffer.
*
* If the buffer is NULL, the buffer node will not be displayed.
*/
void wlr_scene_buffer_set_buffer(struct wlr_scene_buffer *scene_buffer,
struct wlr_buffer *buffer);
/**
* Set the source rectangle describing the region of the buffer which will be
* sampled to render this node. This allows cropping the buffer.