From 7fab72f9038d9da1a41716d72a29ab64d01ab91f Mon Sep 17 00:00:00 2001 From: Nova Date: Mon, 14 Jul 2025 11:23:35 -0700 Subject: [PATCH] fix(wayland): feedback padding --- src/wayland/dmabuf/feedback.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wayland/dmabuf/feedback.rs b/src/wayland/dmabuf/feedback.rs index c18455f..5d2e54c 100644 --- a/src/wayland/dmabuf/feedback.rs +++ b/src/wayland/dmabuf/feedback.rs @@ -108,6 +108,7 @@ impl DmabufFeedback { let format = format as u32; // Write the format+modifier pair mfd.as_file().write_all(&format.to_ne_bytes())?; + mfd.as_file().write_all(&0_u32.to_ne_bytes())?; mfd.as_file().write_all(&modifier.to_ne_bytes())?; }