mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-09 15:05:58 +01:00
27 lines
655 B
C
27 lines
655 B
C
|
#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_listener frame;
|
||
|
struct timespec last_frame;
|
||
|
struct wl_list link; // roots_desktop:outputs
|
||
|
struct roots_view *fullscreen_view;
|
||
|
pixman_region32_t damage;
|
||
|
};
|
||
|
|
||
|
void output_add_notify(struct wl_listener *listener, void *data);
|
||
|
void output_remove_notify(struct wl_listener *listener, void *data);
|
||
|
|
||
|
void output_damage_surface(struct roots_output *output,
|
||
|
struct wlr_surface *surface, double lx, double ly);
|
||
|
|
||
|
#endif
|