diff options
author | Simon Zeni <simon@bl4ckb0ne.ca> | 2021-04-28 10:09:33 -0400 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-04-28 20:55:57 +0200 |
commit | 144189674edbf908d72467cd497a0250b3d80b8b (patch) | |
tree | c71455402e227053381aaed7038ba3a477a6079b /include/wlr | |
parent | 6ec652785587b9027512f1a1bc141c5ed27c3ddb (diff) |
backend: introduce backend_get_buffer_caps
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/backend/interface.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/wlr/backend/interface.h b/include/wlr/backend/interface.h index 3426bb45..feed8d2d 100644 --- a/include/wlr/backend/interface.h +++ b/include/wlr/backend/interface.h @@ -20,6 +20,7 @@ struct wlr_backend_impl { struct wlr_session *(*get_session)(struct wlr_backend *backend); clockid_t (*get_presentation_clock)(struct wlr_backend *backend); int (*get_drm_fd)(struct wlr_backend *backend); + uint32_t (*get_buffer_caps)(struct wlr_backend *backend); }; /** |