diff options
Diffstat (limited to 'include/wlr/render')
-rw-r--r-- | include/wlr/render/interface.h | 1 | ||||
-rw-r--r-- | include/wlr/render/wlr_texture.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/include/wlr/render/interface.h b/include/wlr/render/interface.h index 29a78f92..befd2fdc 100644 --- a/include/wlr/render/interface.h +++ b/include/wlr/render/interface.h @@ -54,6 +54,7 @@ struct wlr_texture_impl { struct wlr_buffer *buffer, const pixman_region32_t *damage); bool (*read_pixels)(struct wlr_texture *texture, const struct wlr_texture_read_pixels_options *options); + uint32_t (*preferred_read_format)(struct wlr_texture *texture); void (*destroy)(struct wlr_texture *texture); }; diff --git a/include/wlr/render/wlr_texture.h b/include/wlr/render/wlr_texture.h index c24cfaa9..1e352c6e 100644 --- a/include/wlr/render/wlr_texture.h +++ b/include/wlr/render/wlr_texture.h @@ -42,6 +42,8 @@ struct wlr_texture_read_pixels_options { bool wlr_texture_read_pixels(struct wlr_texture *texture, const struct wlr_texture_read_pixels_options *options); +uint32_t wlr_texture_preferred_read_format(struct wlr_texture *texture); + /** * Create a new texture from raw pixel data. `stride` is in bytes. The returned * texture is mutable. |