client-buffer: remove unnecessary wlr_resource_get_buffer_size

We can just get the size from the imported texture.
This commit is contained in:
Simon Ser 2020-12-25 12:14:31 +01:00
parent 17dd4c9e9a
commit ae5275c09f
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
1 changed files with 2 additions and 4 deletions

View File

@ -222,9 +222,6 @@ struct wlr_client_buffer *wlr_client_buffer_import(
return NULL;
}
int width, height;
wlr_resource_get_buffer_size(resource, renderer, &width, &height);
struct wlr_client_buffer *buffer =
calloc(1, sizeof(struct wlr_client_buffer));
if (buffer == NULL) {
@ -232,7 +229,8 @@ struct wlr_client_buffer *wlr_client_buffer_import(
wl_resource_post_no_memory(resource);
return NULL;
}
wlr_buffer_init(&buffer->base, &client_buffer_impl, width, height);
wlr_buffer_init(&buffer->base, &client_buffer_impl,
texture->width, texture->height);
buffer->resource = resource;
buffer->texture = texture;
buffer->resource_released = resource_released;