diff options
author | Simon Ser <contact@emersion.fr> | 2021-05-12 16:08:05 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-05-17 10:03:17 +0200 |
commit | 6369f7093178f0d66414eb67c312a403bfbb84a4 (patch) | |
tree | d8ab41c151262a3077d532e1a4816f5e3c9973f7 /include/wlr/render | |
parent | 9f211b5dd4b2326f71831ea2a9cb42652029e3ec (diff) |
render: remove wlr_texture_get_size
Users can just access the width/height fields directly.
Diffstat (limited to 'include/wlr/render')
-rw-r--r-- | include/wlr/render/wlr_texture.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/wlr/render/wlr_texture.h b/include/wlr/render/wlr_texture.h index 1dba2b9e..aa905238 100644 --- a/include/wlr/render/wlr_texture.h +++ b/include/wlr/render/wlr_texture.h @@ -52,14 +52,6 @@ struct wlr_texture *wlr_texture_from_dmabuf(struct wlr_renderer *renderer, struct wlr_dmabuf_attributes *attribs); /** - * Get the texture width and height. - * - * This function is deprecated. Access wlr_texture's width and height fields - * directly instead. - */ -void wlr_texture_get_size(struct wlr_texture *texture, int *width, int *height); - -/** * Returns true if this texture is using a fully opaque format. */ bool wlr_texture_is_opaque(struct wlr_texture *texture); |