From 0bb85989353f0d17deb593dedb00ee4392a871e7 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Wed, 18 Jan 2023 17:17:35 -0500 Subject: [PATCH] Argb8888 --- src/wayland/buffer.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wayland/buffer.rs b/src/wayland/buffer.rs index 0c8bf86..06abbfc 100644 --- a/src/wayland/buffer.rs +++ b/src/wayland/buffer.rs @@ -98,7 +98,7 @@ impl WaylandBuffer { width, height, width * 4, - wl_shm::Format::Xrgb8888, + wl_shm::Format::Argb8888, qh, released.clone(), ); @@ -138,7 +138,7 @@ impl WaylandBuffer { width, height, width * 4, - wl_shm::Format::Xrgb8888, + wl_shm::Format::Argb8888, &self.qh, self.released.clone(), );