render/pixman: add wlr_pixman_renderer_get_buffer_image()

This is similar to wlr_pixman_texture_get_image and can be useful for
compositors to access the rendering data.
This commit is contained in:
Roman Gilg 2023-12-11 17:06:04 +01:00
parent 7ad3f4ad2d
commit 3531007b75
2 changed files with 16 additions and 0 deletions

View file

@ -16,6 +16,9 @@ struct wlr_renderer *wlr_pixman_renderer_create(void);
bool wlr_renderer_is_pixman(struct wlr_renderer *wlr_renderer);
bool wlr_texture_is_pixman(struct wlr_texture *texture);
pixman_image_t *wlr_pixman_renderer_get_buffer_image(
struct wlr_renderer *wlr_renderer, struct wlr_buffer *wlr_buffer);
pixman_image_t *wlr_pixman_texture_get_image(struct wlr_texture *wlr_texture);
#endif