diff options
author | Simon Ser <contact@emersion.fr> | 2021-03-22 18:28:13 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-03-25 19:34:47 +0100 |
commit | 7ac76aba8abaa5fbd82db8453ac6f2450142da9f (patch) | |
tree | eb10136e759ff7d50c788a48886510690ae5e106 /include/wlr | |
parent | 78d21fa131d746a7ae5890657654161692da63b6 (diff) |
surface: introduce commit sequence numbers
Very similar to output commit sequence numbers. Can be useful to
reference a specific commit.
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_surface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_surface.h b/include/wlr/types/wlr_surface.h index ef2f2dac..d247df0c 100644 --- a/include/wlr/types/wlr_surface.h +++ b/include/wlr/types/wlr_surface.h @@ -31,6 +31,9 @@ enum wlr_surface_state_field { struct wlr_surface_state { uint32_t committed; // enum wlr_surface_state_field + // Sequence number of the surface state. Incremented on each commit, may + // overflow. + uint32_t seq; struct wl_resource *buffer_resource; int32_t dx, dy; // relative to previous position |