From b55a80c6418ded0b13a25e6d78977c38de3d1208 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Sun, 15 Jun 2025 12:37:42 +0300 Subject: Update Smithay --- src/backend/tty.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/backend/tty.rs b/src/backend/tty.rs index 3b5cd31c..198a63cc 100644 --- a/src/backend/tty.rs +++ b/src/backend/tty.rs @@ -972,7 +972,7 @@ impl Tty { surface, None, allocator.clone(), - GbmFramebufferExporter::new(device.gbm.clone()), + GbmFramebufferExporter::new(device.gbm.clone(), Some(device.render_node)), SUPPORTED_COLOR_FORMATS, // This is only used to pick a good internal format, so it can use the surface's render // formats, even though we only ever render on the primary GPU. @@ -1002,7 +1002,7 @@ impl Tty { surface, None, allocator, - GbmFramebufferExporter::new(device.gbm.clone()), + GbmFramebufferExporter::new(device.gbm.clone(), Some(device.render_node)), SUPPORTED_COLOR_FORMATS, render_formats, device.drm.cursor_size(), -- cgit