2018-01-18 02:31:46 +00:00
|
|
|
#ifndef _ROOTSTON_OUTPUT_H
|
|
|
|
#define _ROOTSTON_OUTPUT_H
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include <pixman.h>
|
|
|
|
#include <wayland-server.h>
|
|
|
|
|
2018-01-21 10:11:25 +00:00
|
|
|
/**
|
|
|
|
* Damage tracking requires to keep track of previous frames' damage. To allow
|
2018-01-26 21:11:09 +00:00
|
|
|
* damage tracking to work with triple buffering, a history of two frames is
|
2018-01-21 10:11:25 +00:00
|
|
|
* required.
|
|
|
|
*/
|
2018-01-20 23:06:35 +00:00
|
|
|
#define ROOTS_OUTPUT_PREVIOUS_DAMAGE_LEN 2
|
|
|
|
|
2018-01-18 02:31:46 +00: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 10:42:54 +00:00
|
|
|
|
2018-01-18 02:31:46 +00:00
|
|
|
struct roots_view *fullscreen_view;
|
2018-01-18 10:42:54 +00:00
|
|
|
|
|
|
|
struct timespec last_frame;
|
2018-01-26 21:11:09 +00:00
|
|
|
pixman_region32_t damage; // in ouput-local coordinates
|
2018-01-19 10:31:04 +00:00
|
|
|
|
2018-01-21 10:11:25 +00:00
|
|
|
// circular queue for previous damage
|
2018-01-20 23:06:35 +00:00
|
|
|
pixman_region32_t previous_damage[ROOTS_OUTPUT_PREVIOUS_DAMAGE_LEN];
|
|
|
|
size_t previous_damage_idx;
|
|
|
|
|
2018-01-19 10:31:04 +00:00
|
|
|
struct wl_listener frame;
|
|
|
|
struct wl_listener mode;
|
2018-01-20 15:43:14 +00:00
|
|
|
struct wl_listener needs_swap;
|
2018-01-18 02:31:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void output_add_notify(struct wl_listener *listener, void *data);
|
|
|
|
void output_remove_notify(struct wl_listener *listener, void *data);
|
|
|
|
|
2018-01-23 12:37:58 +00:00
|
|
|
struct roots_view;
|
|
|
|
struct roots_drag_icon;
|
|
|
|
|
2018-01-30 13:40:22 +00:00
|
|
|
void output_damage_whole(struct roots_output *output);
|
2018-01-18 15:30:56 +00: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 12:37:58 +00:00
|
|
|
void output_damage_whole_drag_icon(struct roots_output *output,
|
|
|
|
struct roots_drag_icon *icon);
|
2018-01-18 02:31:46 +00:00
|
|
|
|
|
|
|
#endif
|