diff options
-rw-r--r-- | main.c | 14 | ||||
-rw-r--r-- | shm.c | 6 |
2 files changed, 13 insertions, 7 deletions
@@ -37,7 +37,7 @@ static struct wl_compositor *compositor; static struct wl_shm *shm; static struct zwlr_layer_shell_v1 *layer_shell; -static bool have_argb8888 = false; +static bool have_xrgb8888 = false; /* TODO: one per output */ static pixman_image_t *image; @@ -205,8 +205,8 @@ static const struct wl_output_listener output_listener = { static void shm_format(void *data, struct wl_shm *wl_shm, uint32_t format) { - if (format == WL_SHM_FORMAT_ARGB8888) - have_argb8888 = true; + if (format == WL_SHM_FORMAT_XRGB8888) + have_xrgb8888 = true; } static const struct wl_shm_listener shm_listener = { @@ -358,7 +358,11 @@ main(int argc, const char *const *argv) assert(layer_shell != NULL); wl_display_roundtrip(display); - assert(have_argb8888); + + if (!have_xrgb8888) { + LOG_ERR("shm: XRGB image format not available"); + goto out; + } sigset_t mask; sigemptyset(&mask); @@ -420,6 +424,8 @@ main(int argc, const char *const *argv) } } +out: + if (sig_fd >= 0) close(sig_fd); @@ -60,7 +60,7 @@ shm_get_buffer(struct wl_shm *shm, int width, int height, unsigned long cookie) } /* Total size */ - const uint32_t stride = stride_for_format_and_width(PIXMAN_a8r8g8b8, width); + const uint32_t stride = stride_for_format_and_width(PIXMAN_x8r8g8b8, width); size = stride * height; if (ftruncate(pool_fd, size) == -1) { LOG_ERRNO("failed to truncate SHM pool"); @@ -80,7 +80,7 @@ shm_get_buffer(struct wl_shm *shm, int width, int height, unsigned long cookie) } buf = wl_shm_pool_create_buffer( - pool, 0, width, height, stride, WL_SHM_FORMAT_ARGB8888); + pool, 0, width, height, stride, WL_SHM_FORMAT_XRGB8888); if (buf == NULL) { LOG_ERR("failed to create SHM buffer"); goto err; @@ -91,7 +91,7 @@ shm_get_buffer(struct wl_shm *shm, int width, int height, unsigned long cookie) close(pool_fd); pool_fd = -1; pix = pixman_image_create_bits_no_clear( - PIXMAN_a8r8g8b8, width, height, mmapped, stride); + PIXMAN_x8r8g8b8, width, height, mmapped, stride); if (pix == NULL) { LOG_ERR("failed to create pixman image"); goto err; |