diff options
author | Simon Ser <contact@emersion.fr> | 2021-07-12 17:23:25 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-07-28 22:52:35 +0200 |
commit | c74dc45bb68c43a14d638b4c2b71e84ea4f94951 (patch) | |
tree | 343238bacdbe26c0470add634fbcfb2f6db4ab8a /include/wlr | |
parent | 9b99570869e41158b2cd5681b6403a74312fcc69 (diff) |
backend/drm: drop get_renderer implementation
We can now just rely on the common code for this.
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/backend.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/wlr/backend.h b/include/wlr/backend.h index 025f74bd..d616fa1d 100644 --- a/include/wlr/backend.h +++ b/include/wlr/backend.h @@ -28,6 +28,7 @@ struct wlr_backend { // Private state + bool has_own_renderer; struct wlr_renderer *renderer; struct wlr_allocator *allocator; }; |