Update Smithay

This commit is contained in:
Ivan Molodetskikh 2025-06-15 12:37:42 +03:00
parent e0b0b04b44
commit b55a80c641
2 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View file

@ -3497,7 +3497,7 @@ checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
[[package]]
name = "smithay"
version = "0.6.0"
source = "git+https://github.com/Smithay/smithay.git#776ba424423584400e76317e688b160546e68ca7"
source = "git+https://github.com/Smithay/smithay.git#1444b3e43bb7f6977bba3ab99fc85460a67b0228"
dependencies = [
"aliasable",
"appendlist",
@ -3571,7 +3571,7 @@ dependencies = [
[[package]]
name = "smithay-drm-extras"
version = "0.1.0"
source = "git+https://github.com/Smithay/smithay.git#776ba424423584400e76317e688b160546e68ca7"
source = "git+https://github.com/Smithay/smithay.git#1444b3e43bb7f6977bba3ab99fc85460a67b0228"
dependencies = [
"drm",
"libdisplay-info",

View file

@ -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(),