From cd28637187149a0f90429e63408bacd98033e59f Mon Sep 17 00:00:00 2001 From: nyorain Date: Mon, 15 Oct 2018 23:56:56 +0200 Subject: Remove fmt parameter from wlr_texture_write_pixels It's not allowed to change the format of a texture so remove the confusing parameter. --- include/wlr/render/wlr_texture.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include/wlr/render/wlr_texture.h') diff --git a/include/wlr/render/wlr_texture.h b/include/wlr/render/wlr_texture.h index dbfabfee..2eb5d6aa 100644 --- a/include/wlr/render/wlr_texture.h +++ b/include/wlr/render/wlr_texture.h @@ -55,9 +55,11 @@ bool wlr_texture_is_opaque(struct wlr_texture *texture); /** * Update a texture with raw pixels. The texture must be mutable. + * The given data is interpreted as being in the format the + * texture was created with. */ bool wlr_texture_write_pixels(struct wlr_texture *texture, - enum wl_shm_format wl_fmt, uint32_t stride, uint32_t width, uint32_t height, + uint32_t stride, uint32_t width, uint32_t height, uint32_t src_x, uint32_t src_y, uint32_t dst_x, uint32_t dst_y, const void *data); -- cgit v1.2.3