aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBrian Ashworth <RedSoxFan@users.noreply.github.com>2018-05-20 09:37:49 -0400
committerGitHub <noreply@github.com>2018-05-20 09:37:49 -0400
commitaacde78dafb52f2c33ced64cb7b9bf17d1d8bcbe (patch)
tree561bce67d6264278683ec481ba9c9979d0754735 /include
parent750a497a8b5cf7c1ec8c46db7d7a531fcfb1a86f (diff)
parentcab0dd8281daecfb4ef2452fddc4b7aae9143fb7 (diff)
downloadsway-aacde78dafb52f2c33ced64cb7b9bf17d1d8bcbe.tar.xz
Merge branch 'master' into premultiply-alpha
Diffstat (limited to 'include')
-rw-r--r--include/swaylock/swaylock.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/swaylock/swaylock.h b/include/swaylock/swaylock.h
index 07b908d7..e161ada9 100644
--- a/include/swaylock/swaylock.h
+++ b/include/swaylock/swaylock.h
@@ -37,23 +37,35 @@ struct swaylock_state {
struct zwlr_input_inhibit_manager_v1 *input_inhibit_manager;
struct wl_shm *shm;
struct wl_list surfaces;
+ struct wl_list images;
struct swaylock_args args;
struct swaylock_password password;
struct swaylock_xkb xkb;
enum auth_state auth_state;
bool run_display;
+ struct zxdg_output_manager_v1 *zxdg_output_manager;
};
struct swaylock_surface {
cairo_surface_t *image;
struct swaylock_state *state;
struct wl_output *output;
+ struct zxdg_output_v1 *xdg_output;
struct wl_surface *surface;
struct zwlr_layer_surface_v1 *layer_surface;
struct pool_buffer buffers[2];
struct pool_buffer *current_buffer;
uint32_t width, height;
int32_t scale;
+ char *output_name;
+ struct wl_list link;
+};
+
+// There is exactly one swaylock_image for each -i argument
+struct swaylock_image {
+ char *path;
+ char *output_name;
+ cairo_surface_t *cairo_surface;
struct wl_list link;
};