diff options
author | emersion <contact@emersion.fr> | 2018-05-25 19:34:36 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-05-27 13:39:38 +0100 |
commit | cc10c7af6528f6006e4fccbbdc2156b957cdd5c9 (patch) | |
tree | 5e1ebce0a9a71954679ade0676e3b7db01b018f2 /include/swaylock/swaylock.h | |
parent | e4c54b04ce90d2d051ba7343ec5b9dce1bbb6755 (diff) |
swaylock: implement a proper render loop
Diffstat (limited to 'include/swaylock/swaylock.h')
-rw-r--r-- | include/swaylock/swaylock.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/swaylock/swaylock.h b/include/swaylock/swaylock.h index dae823b8..2931fd61 100644 --- a/include/swaylock/swaylock.h +++ b/include/swaylock/swaylock.h @@ -56,6 +56,7 @@ struct swaylock_surface { struct zwlr_layer_surface_v1 *layer_surface; struct pool_buffer buffers[2]; struct pool_buffer *current_buffer; + bool frame_pending, dirty; uint32_t width, height; int32_t scale; char *output_name; @@ -74,5 +75,7 @@ void swaylock_handle_key(struct swaylock_state *state, xkb_keysym_t keysym, uint32_t codepoint); void render_frame(struct swaylock_surface *surface); void render_frames(struct swaylock_state *state); +void damage_surface(struct swaylock_surface *surface); +void damage_state(struct swaylock_state *state); #endif |