mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-02-23 01:40:31 -05:00
fix output resolution callback
This commit is contained in:
parent
128f06405b
commit
e0b409760d
2 changed files with 4 additions and 1 deletions
|
|
@ -16,6 +16,7 @@ struct output_state {
|
|||
struct compositor_state *compositor;
|
||||
struct wlr_output *output;
|
||||
struct wl_listener frame;
|
||||
struct wl_listener resolution;
|
||||
struct timespec last_frame;
|
||||
struct wl_list link;
|
||||
void *data;
|
||||
|
|
@ -78,6 +79,8 @@ struct compositor_state {
|
|||
void (*keyboard_add_cb)(struct keyboard_state *s);
|
||||
void (*output_frame_cb)(struct output_state *s, struct timespec *ts);
|
||||
void (*output_remove_cb)(struct output_state *s);
|
||||
void (*output_resolution_cb)(struct compositor_state *compositor,
|
||||
struct output_state *s);
|
||||
void (*keyboard_remove_cb)(struct keyboard_state *s);
|
||||
void (*keyboard_key_cb)(struct keyboard_state *s, uint32_t keycode,
|
||||
xkb_keysym_t sym, enum wlr_key_state key_state);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue