Use wlr_damage_ring

wlr_output_damage is to be replaced with wlr_damage_ring, so use that.
This commit is contained in:
Kirill Primak 2022-11-11 18:29:04 +03:00 committed by GitHub
parent dcd2076f38
commit 7862fa670e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 82 additions and 47 deletions

View file

@ -3,6 +3,7 @@
#include <time.h>
#include <unistd.h>
#include <wayland-server-core.h>
#include <wlr/types/wlr_damage_ring.h>
#include <wlr/types/wlr_output.h>
#include "config.h"
#include "sway/tree/node.h"
@ -26,7 +27,7 @@ struct sway_output {
struct wlr_box usable_area;
struct timespec last_frame;
struct wlr_output_damage *damage;
struct wlr_damage_ring damage_ring;
int lx, ly; // layout coords
int width, height; // transformed buffer size
@ -44,8 +45,9 @@ struct sway_output {
struct wl_listener commit;
struct wl_listener mode;
struct wl_listener present;
struct wl_listener damage_destroy;
struct wl_listener damage_frame;
struct wl_listener damage;
struct wl_listener frame;
struct wl_listener needs_frame;
struct {
struct wl_signal disable;