aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIvan Molodetskikh <yalterz@gmail.com>2025-06-15 12:37:42 +0300
committerIvan Molodetskikh <yalterz@gmail.com>2025-06-23 16:12:45 +0300
commitb55a80c6418ded0b13a25e6d78977c38de3d1208 (patch)
treec30981b73c8e73a7e03eaad890a8975497fd1e9b /src
parente0b0b04b445f7044f383e50104f861e632e1c905 (diff)
downloadniri-b55a80c6418ded0b13a25e6d78977c38de3d1208.tar.gz
niri-b55a80c6418ded0b13a25e6d78977c38de3d1208.tar.bz2
niri-b55a80c6418ded0b13a25e6d78977c38de3d1208.zip
Update Smithay
Diffstat (limited to 'src')
-rw-r--r--src/backend/tty.rs4
1 files changed, 2 insertions, 2 deletions
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(),