mirror of
https://github.com/marcoallegretti/WEFT_OS.git
synced 2026-03-27 01:13:09 +00:00
fix(compositor): pass Output by value to initialize_output
From<Output> for OutputModeSource is more reliably implemented than From<&Output>, avoiding a potential type mismatch on Linux CI.
This commit is contained in:
parent
8925ebe3df
commit
4d21b8dba0
1 changed files with 1 additions and 1 deletions
|
|
@ -496,7 +496,7 @@ fn connector_connected(
|
||||||
crtc,
|
crtc,
|
||||||
mode,
|
mode,
|
||||||
&[connector.handle()],
|
&[connector.handle()],
|
||||||
&output,
|
output.clone(),
|
||||||
planes,
|
planes,
|
||||||
&mut renderer,
|
&mut renderer,
|
||||||
&DrmOutputRenderElements::default(),
|
&DrmOutputRenderElements::default(),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue