render: Include OutputId in namespaces
This commit is contained in:
parent
361a2282c7
commit
1f0456a5af
1 changed files with 15 additions and 3 deletions
|
|
@ -27,7 +27,7 @@ use crate::{
|
||||||
},
|
},
|
||||||
config::ScreenFilter,
|
config::ScreenFilter,
|
||||||
shell::{
|
shell::{
|
||||||
CosmicMappedRenderElement, OverviewMode, SeatExt, Trigger, WorkspaceDelta,
|
CosmicMappedRenderElement, OutputId, OverviewMode, SeatExt, Trigger, WorkspaceDelta,
|
||||||
WorkspaceRenderElement,
|
WorkspaceRenderElement,
|
||||||
element::CosmicMappedKey,
|
element::CosmicMappedKey,
|
||||||
focus::{FocusTarget, Stage, render_input_order, target::WindowGroup},
|
focus::{FocusTarget, Stage, render_input_order, target::WindowGroup},
|
||||||
|
|
@ -844,6 +844,12 @@ where
|
||||||
})
|
})
|
||||||
.unwrap_or([0; 4]);
|
.unwrap_or([0; 4]);
|
||||||
|
|
||||||
|
let namespace = output
|
||||||
|
.user_data()
|
||||||
|
.get::<OutputId>()
|
||||||
|
.map(|id| id.namespace_for_workspace(workspace_idx))
|
||||||
|
.unwrap_or(workspace_idx);
|
||||||
|
|
||||||
push_render_elements_from_surface_tree(
|
push_render_elements_from_surface_tree(
|
||||||
renderer,
|
renderer,
|
||||||
popup.wl_surface(),
|
popup.wl_surface(),
|
||||||
|
|
@ -861,7 +867,7 @@ where
|
||||||
FRAME_TIME_FILTER,
|
FRAME_TIME_FILTER,
|
||||||
&mut |elem| {
|
&mut |elem| {
|
||||||
elements.extend(
|
elements.extend(
|
||||||
crop_to_output(NamespacedElement::new(elem, workspace_idx).into())
|
crop_to_output(NamespacedElement::new(elem, namespace).into())
|
||||||
.map(Into::into),
|
.map(Into::into),
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
|
@ -887,6 +893,12 @@ where
|
||||||
})
|
})
|
||||||
.unwrap_or([0; 4]);
|
.unwrap_or([0; 4]);
|
||||||
|
|
||||||
|
let namespace = output
|
||||||
|
.user_data()
|
||||||
|
.get::<OutputId>()
|
||||||
|
.map(|id| id.namespace_for_workspace(workspace_idx))
|
||||||
|
.unwrap_or(workspace_idx);
|
||||||
|
|
||||||
push_render_elements_from_surface_tree(
|
push_render_elements_from_surface_tree(
|
||||||
renderer,
|
renderer,
|
||||||
layer.wl_surface(),
|
layer.wl_surface(),
|
||||||
|
|
@ -904,7 +916,7 @@ where
|
||||||
FRAME_TIME_FILTER,
|
FRAME_TIME_FILTER,
|
||||||
&mut |elem| {
|
&mut |elem| {
|
||||||
elements.extend(
|
elements.extend(
|
||||||
crop_to_output(NamespacedElement::new(elem, workspace_idx).into())
|
crop_to_output(NamespacedElement::new(elem, namespace).into())
|
||||||
.map(Into::into),
|
.map(Into::into),
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue