From e5cfa249dff6d3c61669ab9461c16e11ae171897 Mon Sep 17 00:00:00 2001 From: Nova Date: Sat, 26 Jul 2025 15:33:54 -0700 Subject: [PATCH] fix(wayland): don't advertise dmabuf --- src/wayland/core/registry.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/wayland/core/registry.rs b/src/wayland/core/registry.rs index 173c8e4..5c0125b 100644 --- a/src/wayland/core/registry.rs +++ b/src/wayland/core/registry.rs @@ -77,14 +77,14 @@ impl Registry { ) .await?; - self.global( - client, - sender_id, - RegistryGlobals::DMABUF, - crate::wayland::dmabuf::Dmabuf::INTERFACE.to_string(), - Dmabuf::VERSION, - ) - .await?; + // self.global( + // client, + // sender_id, + // RegistryGlobals::DMABUF, + // crate::wayland::dmabuf::Dmabuf::INTERFACE.to_string(), + // Dmabuf::VERSION, + // ) + // .await?; Ok(()) }