mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
render: remove wlr_texture_get_size
Users can just access the width/height fields directly.
This commit is contained in:
parent
9f211b5dd4
commit
6369f70931
2 changed files with 0 additions and 14 deletions
|
|
@ -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.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue