mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 11:27:47 +03:00
Use wlr_damage_ring
wlr_output_damage is to be replaced with wlr_damage_ring, so use that.
This commit is contained in:
parent
dcd2076f38
commit
7862fa670e
5 changed files with 82 additions and 47 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue