diff options
author | rewine <luhongxu@deepin.org> | 2023-07-26 10:17:52 +0800 |
---|---|---|
committer | rewine <luhongxu@deepin.org> | 2023-07-26 13:55:34 +0800 |
commit | 2f859f5becfc8853842eb975b54c19936a704105 (patch) | |
tree | 94962d9846648d6cd7b600571fe7dd786ea5d0b9 /include | |
parent | e8d545a9770a2473db32e0a0bfa757b05d2af4f3 (diff) |
wlr_output: add comments for signal parameters
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_output.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/wlr/types/wlr_output.h b/include/wlr/types/wlr_output.h index 1ec22cfe..a71bf9ca 100644 --- a/include/wlr/types/wlr_output.h +++ b/include/wlr/types/wlr_output.h @@ -162,20 +162,20 @@ struct wlr_output { struct wl_signal frame; // Emitted when software cursors or backend-specific logic damage the // output - struct wl_signal damage; // wlr_output_event_damage + struct wl_signal damage; // struct wlr_output_event_damage // Emitted when a new frame needs to be committed (because of // backend-specific logic) struct wl_signal needs_frame; // Emitted right before commit - struct wl_signal precommit; // wlr_output_event_precommit + struct wl_signal precommit; // struct wlr_output_event_precommit // Emitted right after commit - struct wl_signal commit; // wlr_output_event_commit + struct wl_signal commit; // struct wlr_output_event_commit // Emitted right after the buffer has been presented to the user - struct wl_signal present; // wlr_output_event_present + struct wl_signal present; // struct wlr_output_event_present // Emitted after a client bound the wl_output global - struct wl_signal bind; // wlr_output_event_bind + struct wl_signal bind; // struct wlr_output_event_bind struct wl_signal description; - struct wl_signal request_state; + struct wl_signal request_state; // struct wlr_output_state struct wl_signal destroy; } events; |