2018-02-12 21:29:23 +01:00
|
|
|
#ifndef ROOTSTON_OUTPUT_H
|
|
|
|
#define ROOTSTON_OUTPUT_H
|
2018-01-18 03:31:46 +01:00
|
|
|
|
|
|
|
#include <pixman.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <time.h>
|
2018-01-18 03:31:46 +01:00
|
|
|
#include <wayland-server.h>
|
2018-02-11 12:49:30 +01:00
|
|
|
#include <wlr/types/wlr_output_damage.h>
|
2018-01-21 00:06:35 +01:00
|
|
|
|
2018-01-18 03:31:46 +01:00
|
|
|
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-02-11 12:49:30 +01:00
|
|
|
struct wlr_output_damage *damage;
|
2018-01-21 00:06:35 +01:00
|
|
|
|
2018-02-12 10:36:43 +01:00
|
|
|
struct wl_listener destroy;
|
2018-01-19 11:31:04 +01:00
|
|
|
struct wl_listener frame;
|
2018-01-18 03:31:46 +01:00
|
|
|
};
|
|
|
|
|
2018-02-12 10:36:43 +01:00
|
|
|
void handle_new_output(struct wl_listener *listener, void *data);
|
2018-01-18 03:31:46 +01:00
|
|
|
|
2018-01-23 13:37:58 +01:00
|
|
|
struct roots_view;
|
|
|
|
struct roots_drag_icon;
|
|
|
|
|
2018-01-30 14:40:22 +01:00
|
|
|
void output_damage_whole(struct roots_output *output);
|
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-23 13:37:58 +01:00
|
|
|
void output_damage_whole_drag_icon(struct roots_output *output,
|
|
|
|
struct roots_drag_icon *icon);
|
2018-01-18 03:31:46 +01:00
|
|
|
|
|
|
|
#endif
|