compositor: Drop get_stage_for_display helper

As one can get that from the backend/compositor directly.
Expose the necessary functions to allow doing so.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/4131>
This commit is contained in:
Bilal Elmoussaoui
2024-12-11 12:08:11 +01:00
parent 1152326ac0
commit 38a4b2e102
7 changed files with 33 additions and 37 deletions

View File

@ -368,7 +368,7 @@ meta_test_shell_start (MetaPlugin *plugin)
test_shell);
if (test_shell->show_stage)
clutter_actor_show (meta_get_stage_for_display (display));
clutter_actor_show (meta_backend_get_stage (backend));
}
static void
@ -378,6 +378,7 @@ meta_test_shell_switch_workspace (MetaPlugin *plugin,
MetaMotionDirection direction)
{
MetaTestShell *test_shell = META_TEST_SHELL (plugin);
MetaCompositor *compositor;
MetaDisplay *display;
ClutterActor *stage;
ClutterActor *workspace1, *workspace2;
@ -391,7 +392,8 @@ meta_test_shell_switch_workspace (MetaPlugin *plugin,
}
display = meta_plugin_get_display (plugin);
stage = meta_get_stage_for_display (display);
compositor = meta_display_get_compositor (display);
stage = CLUTTER_ACTOR (meta_compositor_get_stage (compositor));
meta_display_get_size (display,
&screen_width,