aboutsummaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
authorIvan Molodetskikh <yalterz@gmail.com>2025-07-15 18:25:55 +0300
committerIvan Molodetskikh <yalterz@gmail.com>2025-07-31 19:39:12 +0200
commit98a42c555742f87e86e265365a5ac29b7845d254 (patch)
tree61d38dbffbffa3a57e51b2edd0601fe382afbef9 /src/backend
parente19e1f0f10fa4e294e62292608635877715232dd (diff)
downloadniri-98a42c555742f87e86e265365a5ac29b7845d254.tar.gz
niri-98a42c555742f87e86e265365a5ac29b7845d254.tar.bz2
niri-98a42c555742f87e86e265365a5ac29b7845d254.zip
Update Smithay (clipboard client exit nil fix, input region bottom-right fix)
Diffstat (limited to 'src/backend')
-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 4c8801f9..7b0303fd 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(), Some(device.render_node)),
+ GbmFramebufferExporter::new(device.gbm.clone(), device.render_node.into()),
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(), Some(device.render_node)),
+ GbmFramebufferExporter::new(device.gbm.clone(), device.render_node.into()),
SUPPORTED_COLOR_FORMATS,
render_formats,
device.drm.cursor_size(),