fix(wayland): don't advertise dmabuf

This commit is contained in:
Nova
2025-07-26 15:33:54 -07:00
parent 3fbc659904
commit e5cfa249df

View File

@@ -77,14 +77,14 @@ impl Registry {
) )
.await?; .await?;
self.global( // self.global(
client, // client,
sender_id, // sender_id,
RegistryGlobals::DMABUF, // RegistryGlobals::DMABUF,
crate::wayland::dmabuf::Dmabuf::INTERFACE.to_string(), // crate::wayland::dmabuf::Dmabuf::INTERFACE.to_string(),
Dmabuf::VERSION, // Dmabuf::VERSION,
) // )
.await?; // .await?;
Ok(()) Ok(())
} }