diff options
author | Tony Crisci <tony@dubstepdish.com> | 2018-03-27 23:37:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-27 23:37:37 -0400 |
commit | 48e8202883594091d2ec2b5d0d8a55ddf2f0aea6 (patch) | |
tree | db15d3d40ac5d0ec3117920f9b4917a0d0519175 /include/rootston/output.h | |
parent | 575bc81d54f98841c28718b1667d27acc136a48a (diff) | |
parent | 7d89e7e58dc6d3a2d40baf91ae3f5aaa87d58a8b (diff) |
Merge pull request #731 from swaywm/layer-surfaces
Implement wlr-layer-shell protocol & rendering
Diffstat (limited to 'include/rootston/output.h')
-rw-r--r-- | include/rootston/output.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/rootston/output.h b/include/rootston/output.h index a852a204..e40ad776 100644 --- a/include/rootston/output.h +++ b/include/rootston/output.h @@ -4,6 +4,7 @@ #include <pixman.h> #include <time.h> #include <wayland-server.h> +#include <wlr/types/wlr_box.h> #include <wlr/types/wlr_output_damage.h> struct roots_desktop; @@ -14,10 +15,13 @@ struct roots_output { struct wl_list link; // roots_desktop:outputs struct roots_view *fullscreen_view; + struct wl_list layers[4]; // layer_surface::link struct timespec last_frame; struct wlr_output_damage *damage; + struct wlr_box usable_area; + struct wl_listener destroy; struct wl_listener damage_frame; struct wl_listener damage_destroy; @@ -35,5 +39,9 @@ void output_damage_from_view(struct roots_output *output, struct roots_view *view); void output_damage_whole_drag_icon(struct roots_output *output, struct roots_drag_icon *icon); +void output_damage_from_local_surface(struct roots_output *output, + struct wlr_surface *surface, double ox, double oy, float rotation); +void output_damage_whole_local_surface(struct roots_output *output, + struct wlr_surface *surface, double ox, double oy, float rotation); #endif |