aboutsummaryrefslogtreecommitdiff
path: root/shm.c
diff options
context:
space:
mode:
authorDaniel Eklöf <daniel@ekloef.se>2020-11-30 20:22:47 +0100
committerDaniel Eklöf <daniel@ekloef.se>2020-11-30 20:22:47 +0100
commit5b934f20ce232923c2066fe06e14e6ce0f29c9e0 (patch)
treec29596e18f1ad4fde9345fd3d88604978b08bc33 /shm.c
parent01a4b857dccdfc6e493ea531bd69bbf037cc718c (diff)
downloadwbg-5b934f20ce232923c2066fe06e14e6ce0f29c9e0.tar.gz
shm: use XRGB8888 instead of ARGB8888
Diffstat (limited to 'shm.c')
-rw-r--r--shm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shm.c b/shm.c
index c103183..e9f2ef3 100644
--- a/shm.c
+++ b/shm.c
@@ -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;