Add scale and transform events to sway_output

This commit is contained in:
emersion 2017-12-12 19:40:17 +01:00
parent 475a0132a9
commit f3d880b0ec
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
3 changed files with 39 additions and 3 deletions

View file

@ -12,8 +12,16 @@ struct sway_output {
struct sway_container *swayc;
struct sway_server *server;
struct timespec last_frame;
struct {
struct wl_signal scale;
struct wl_signal transform;
} events;
struct wl_listener frame;
struct wl_listener resolution;
struct wl_listener scale;
struct wl_listener transform;
};
#endif