aboutsummaryrefslogtreecommitdiff
path: root/shm.h
diff options
context:
space:
mode:
authorDaniel Eklöf <daniel@ekloef.se>2020-08-01 15:32:48 +0200
committerDaniel Eklöf <daniel@ekloef.se>2020-08-01 15:32:48 +0200
commitb947448795d604f169246b0c3191028ae6a0ab83 (patch)
tree6d99443c8f46d6e2730344efcca6b9d972fdce00 /shm.h
downloadwbg-b947448795d604f169246b0c3191028ae6a0ab83.tar.gz
Initial commit
Can display a single PNG image scaled-to-fit on all outputs.
Diffstat (limited to 'shm.h')
-rw-r--r--shm.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/shm.h b/shm.h
new file mode 100644
index 0000000..54d9674
--- /dev/null
+++ b/shm.h
@@ -0,0 +1,25 @@
+#pragma once
+
+#include <stdbool.h>
+#include <stddef.h>
+
+#include <pixman.h>
+#include <wayland-client.h>
+
+struct buffer {
+ int width;
+ int height;
+ int stride;
+ unsigned long cookie;
+
+ bool busy;
+ bool purge;
+ size_t size;
+ void *mmapped;
+
+ struct wl_buffer *wl_buf;
+ pixman_image_t *pix;
+};
+
+struct buffer *shm_get_buffer(struct wl_shm *shm, int width, int height, unsigned long cookie);
+void shm_fini(void);