diff options
author | Daniel Eklöf <daniel@ekloef.se> | 2020-11-30 20:22:47 +0100 |
---|---|---|
committer | Daniel Eklöf <daniel@ekloef.se> | 2020-11-30 20:22:47 +0100 |
commit | 5b934f20ce232923c2066fe06e14e6ce0f29c9e0 (patch) | |
tree | c29596e18f1ad4fde9345fd3d88604978b08bc33 /shm.c | |
parent | 01a4b857dccdfc6e493ea531bd69bbf037cc718c (diff) | |
download | wbg-5b934f20ce232923c2066fe06e14e6ce0f29c9e0.tar.gz |
shm: use XRGB8888 instead of ARGB8888
Diffstat (limited to 'shm.c')
-rw-r--r-- | shm.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; |