diff options
author | Alexander Orzechowski <alex@ozal.ski> | 2023-08-24 18:12:27 -0400 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2023-10-06 10:06:01 +0000 |
commit | 5fb0007e0249388792f3772c30bfabf8d551dec0 (patch) | |
tree | 9bea1f47915d7bedf2af192fe2c56627ee3eaab8 /include/wlr | |
parent | 03e240a7f2f459863b8ea9bc47e03a503cf1f278 (diff) |
output_event_commit: Remove committed and buffer
The newly introduced state struct can be used to retrieve this.
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_output.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/wlr/types/wlr_output.h b/include/wlr/types/wlr_output.h index 4b5f29b1..7b57042c 100644 --- a/include/wlr/types/wlr_output.h +++ b/include/wlr/types/wlr_output.h @@ -224,9 +224,7 @@ struct wlr_output_event_precommit { struct wlr_output_event_commit { struct wlr_output *output; - uint32_t committed; // bitmask of enum wlr_output_state_field struct timespec *when; - struct wlr_buffer *buffer; // NULL if no buffer is committed const struct wlr_output_state *state; }; |