Update smithay
Updates to use `GbmFramebufferExporter`.
This commit is contained in:
parent
982af8ff10
commit
d7b37cfde5
4 changed files with 9 additions and 11 deletions
|
|
@ -19,6 +19,7 @@ use smithay::{
|
|||
},
|
||||
drm::{
|
||||
compositor::{FrameError, FrameFlags},
|
||||
exporter::gbm::GbmFramebufferExporter,
|
||||
output::DrmOutputManager,
|
||||
DrmDevice, DrmDeviceFd, DrmEvent, DrmNode,
|
||||
},
|
||||
|
|
@ -61,7 +62,7 @@ pub struct EGLInternals {
|
|||
|
||||
pub type GbmDrmOutputManager = DrmOutputManager<
|
||||
GbmAllocator<DrmDeviceFd>,
|
||||
GbmDevice<DrmDeviceFd>,
|
||||
GbmFramebufferExporter<DrmDeviceFd>,
|
||||
Option<(
|
||||
OutputPresentationFeedback,
|
||||
Receiver<(ScreencopyFrame, Vec<Rectangle<i32, BufferCoords>>)>,
|
||||
|
|
@ -221,7 +222,7 @@ impl State {
|
|||
gbm.clone(),
|
||||
GbmBufferFlags::RENDERING | GbmBufferFlags::SCANOUT,
|
||||
),
|
||||
gbm.clone(),
|
||||
GbmFramebufferExporter::new(gbm.clone()),
|
||||
Some(gbm.clone()),
|
||||
[
|
||||
Fourcc::Abgr2101010,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue