diff options
author | Simon Ser <contact@emersion.fr> | 2022-05-24 18:46:59 +0200 |
---|---|---|
committer | Simon Zeni <simon@bl4ckb0ne.ca> | 2022-05-25 14:22:58 +0000 |
commit | 28d89779af6de0340533b2674a98ab6ecc238599 (patch) | |
tree | 255e8dfb440691f60facc805b0b75df94901fcd6 /include/wlr/interfaces/wlr_buffer.h | |
parent | 27383a1929348daf01e18349f215c998b6ef8c2f (diff) |
Reformat doc comments
Unify the way we document our APIs. See CONTRIBUTING.md for the
rules.
Diffstat (limited to 'include/wlr/interfaces/wlr_buffer.h')
-rw-r--r-- | include/wlr/interfaces/wlr_buffer.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/wlr/interfaces/wlr_buffer.h b/include/wlr/interfaces/wlr_buffer.h index 05ccc1e7..820300f6 100644 --- a/include/wlr/interfaces/wlr_buffer.h +++ b/include/wlr/interfaces/wlr_buffer.h @@ -31,16 +31,16 @@ struct wlr_buffer_resource_interface { /** * Initialize a buffer. This function should be called by producers. The * initialized buffer is referenced: once the producer is done with the buffer - * they should call wlr_buffer_drop. + * they should call wlr_buffer_drop(). */ void wlr_buffer_init(struct wlr_buffer *buffer, const struct wlr_buffer_impl *impl, int width, int height); /** - * Allows the registration of a wl_resource implementation. + * Allows the registration of a struct wl_resource implementation. * - * The matching function will be called for the wl_resource when creating a - * wlr_buffer from a wl_resource. + * The matching function will be called for the struct wl_resource when creating + * a struct wlr_buffer from a struct wl_resource. */ void wlr_buffer_register_resource_interface( const struct wlr_buffer_resource_interface *iface); |