backend: remove backend_get_allocator

This commit is contained in:
Simon Zeni 2021-11-16 09:26:44 -05:00
parent 0c76aef202
commit 6dc6af1534
3 changed files with 0 additions and 25 deletions

View file

@ -10,10 +10,4 @@
*/
uint32_t backend_get_buffer_caps(struct wlr_backend *backend);
/**
* Get the backend's allocator. Automatically creates the allocator if
* necessary.
*/
struct wlr_allocator *backend_get_allocator(struct wlr_backend *backend);
#endif

View file

@ -30,7 +30,6 @@ struct wlr_backend {
bool has_own_renderer;
struct wlr_renderer *renderer;
struct wlr_allocator *allocator;
};
/**