render: remove wlr_texture_get_size

Users can just access the width/height fields directly.
This commit is contained in:
Simon Ser 2021-05-12 16:08:05 +02:00
parent 9f211b5dd4
commit 6369f70931
2 changed files with 0 additions and 14 deletions

View File

@ -51,14 +51,6 @@ struct wlr_texture *wlr_texture_from_wl_drm(struct wlr_renderer *renderer,
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.
*/

View File

@ -46,12 +46,6 @@ struct wlr_texture *wlr_texture_from_dmabuf(struct wlr_renderer *renderer,
return renderer->impl->texture_from_dmabuf(renderer, attribs);
}
void wlr_texture_get_size(struct wlr_texture *texture, int *width,
int *height) {
*width = texture->width;
*height = texture->height;
}
bool wlr_texture_is_opaque(struct wlr_texture *texture) {
if (!texture->impl->is_opaque) {
return false;