diff options
Diffstat (limited to 'render')
-rw-r--r-- | render/wlr_texture.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/render/wlr_texture.c b/render/wlr_texture.c index 8c003cfb..be10f20a 100644 --- a/render/wlr_texture.c +++ b/render/wlr_texture.c @@ -26,6 +26,15 @@ void wlr_texture_destroy(struct wlr_texture *texture) { } } +bool wlr_texture_read_pixels(struct wlr_texture *texture, + const struct wlr_texture_read_pixels_options *options) { + if (!texture->impl->read_pixels) { + return false; + } + + return texture->impl->read_pixels(texture, options); +} + struct wlr_texture *wlr_texture_from_pixels(struct wlr_renderer *renderer, uint32_t fmt, uint32_t stride, uint32_t width, uint32_t height, const void *data) { |