2018-01-18 03:31:46 +01:00
|
|
|
#ifndef _ROOTSTON_OUTPUT_H
|
|
|
|
#define _ROOTSTON_OUTPUT_H
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include <pixman.h>
|
|
|
|
#include <wayland-server.h>
|
|
|
|
|
|
|
|
struct roots_desktop;
|
|
|
|
|
|
|
|
struct roots_output {
|
|
|
|
struct roots_desktop *desktop;
|
|
|
|
struct wlr_output *wlr_output;
|
|
|
|
struct wl_list link; // roots_desktop:outputs
|
2018-01-18 11:42:54 +01:00
|
|
|
|
2018-01-18 03:31:46 +01:00
|
|
|
struct roots_view *fullscreen_view;
|
2018-01-18 11:42:54 +01:00
|
|
|
|
|
|
|
struct timespec last_frame;
|
2018-01-18 17:18:21 +01:00
|
|
|
pixman_region32_t damage, previous_damage;
|
2018-01-19 13:14:16 +01:00
|
|
|
bool frame_scheduled;
|
2018-01-19 11:31:04 +01:00
|
|
|
|
|
|
|
struct wl_listener frame;
|
|
|
|
struct wl_listener mode;
|
2018-01-19 13:14:16 +01:00
|
|
|
struct wl_listener damage_listener;
|
2018-01-18 03:31:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
void output_add_notify(struct wl_listener *listener, void *data);
|
|
|
|
void output_remove_notify(struct wl_listener *listener, void *data);
|
|
|
|
|
2018-01-18 16:30:56 +01:00
|
|
|
void output_damage_whole_view(struct roots_output *output,
|
|
|
|
struct roots_view *view);
|
|
|
|
void output_damage_from_view(struct roots_output *output,
|
|
|
|
struct roots_view *view);
|
2018-01-18 03:31:46 +01:00
|
|
|
|
|
|
|
#endif
|