You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
383 B
20 lines
383 B
#ifndef _SWAY_OUTPUT_H
|
|
#define _SWAY_OUTPUT_H
|
|
#include <time.h>
|
|
#include <wayland-server.h>
|
|
#include <wlr/types/wlr_output.h>
|
|
|
|
struct sway_server;
|
|
struct sway_container;
|
|
|
|
struct sway_output {
|
|
struct wlr_output *wlr_output;
|
|
struct sway_container *swayc;
|
|
struct sway_server *server;
|
|
struct timespec last_frame;
|
|
struct wl_listener frame;
|
|
struct wl_listener resolution;
|
|
};
|
|
|
|
#endif
|