Go to file
Florian Müllner 5b720a157c compositor/plugin-manager: Split start() from new()
In order to support dynamic imports, gjs added an implicit mainloop
that can drive the main context independently from other mainloops
like the one from GApplication or MetaContext.

That means that sources can now get dispatched to the main context
from the moment the plugin is started, resulting in a crash as the
association between compositor and plugin manager doesn't exist until
meta_plugin_manager_new() returns.

Make sure this doesn't happen by only starting the plugin after
meta_plugin_manager_new() has returned.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2242>
2022-01-25 15:15:13 +01:00
.gitlab/issue_templates
.gitlab-ci ci: Make run-tests.sh usable for the dist job too 2022-01-04 12:07:06 +01:00
clutter clutter/virtual-input-device: Add API to get seat 2022-01-17 09:48:51 +01:00
cogl cogl: Rebind the EGL image when handling damage 2021-12-13 16:09:56 +00:00
data remote-desktop: Unify codestyle in API 2022-01-25 10:49:12 +00:00
doc documentation: Generate API references with gi-docgen 2022-01-20 07:48:44 -08:00
meson build: Check NEWS for version 2021-09-05 00:15:56 +02:00
po Update Ukrainian translation 2022-01-25 10:31:12 +00:00
src compositor/plugin-manager: Split start() from new() 2022-01-25 15:15:13 +01:00
subprojects
tools tools/uncrustify: Remove space between i18n function shortcuts and ( 2021-12-09 20:59:49 +01:00
.gitignore
.gitlab-ci.yml ci: Update gjs 2022-01-25 14:04:21 +01:00
check-style.py
config.h.meson meson: Add optional libsystemd dependency 2021-09-02 21:54:30 +00:00
COPYING
HACKING.md docs: Update coding style link 2021-11-09 19:52:14 +01:00
meson_options.txt documentation: Generate API references with gi-docgen 2022-01-20 07:48:44 -08:00
meson.build documentation: Generate API references with gi-docgen 2022-01-20 07:48:44 -08:00
mutter.doap
NEWS Bump version to 42.alpha 2022-01-10 19:30:19 +01:00
README.md

Mutter

Mutter is a Wayland display server and X11 window manager and compositor library.

When used as a Wayland display server, it runs on top of KMS and libinput. It implements the compositor side of the Wayland core protocol as well as various protocol extensions. It also has functionality related to running X11 applications using Xwayland.

When used on top of Xorg it acts as a X11 window manager and compositing manager.

It contains functionality related to, among other things, window management, window compositing, focus tracking, workspace management, keybindings and monitor configuration.

Internally it uses a fork of Cogl, a hardware acceleration abstraction library used to simplify usage of OpenGL pipelines, as well as a fork af Clutter, a scene graph and user interface toolkit.

Mutter is used by, for example, GNOME Shell, the GNOME core user interface, and by Gala, elementary OS's window manager. It can also be run standalone, using the command "mutter", but just running plain mutter is only intended for debugging purposes.

Contributing

To contribute, open merge requests at https://gitlab.gnome.org/GNOME/mutter.

It can be useful to look at the documentation available at the Wiki.

Coding style and conventions

See HACKING.md.

Git messages

Commit messages should follow the GNOME commit message guidelines. We require an URL to either an issue or a merge request in each commit. Try to always prefix commit subjects with a relevant topic, such as compositor: or clutter/actor:, and it's always better to write too much in the commit message body than too little.

Default branch

The default development branch is main. If you still have a local checkout under the old name, use:

git checkout master
git branch -m master main
git fetch
git branch --unset-upstream
git branch -u origin/main
git symbolic-ref refs/remotes/origin/HEAD refs/remotes/origin/main

License

Mutter is distributed under the terms of the GNU General Public License, version 2 or later. See the COPYING file for detalis.