plugin: Remove unused CoglContext field

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3528>
This commit is contained in:
Bilal Elmoussaoui 2024-12-30 14:12:02 +01:00 committed by Marge Bot
parent 0e92689801
commit 084a1b3be7

View File

@ -56,8 +56,6 @@ struct _GnomeShellPlugin
{
MetaPlugin parent;
CoglContext *cogl_context;
ShellGlobal *global;
};
@ -67,10 +65,6 @@ static void
gnome_shell_plugin_start (MetaPlugin *plugin)
{
GnomeShellPlugin *shell_plugin = GNOME_SHELL_PLUGIN (plugin);
ClutterBackend *backend;
backend = clutter_get_default_backend ();
shell_plugin->cogl_context = clutter_backend_get_cogl_context (backend);
shell_plugin->global = shell_global_get ();
_shell_global_set_plugin (shell_plugin->global, META_PLUGIN (shell_plugin));