mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 07:30:42 -05:00
monitor-manager-native: Do not reload all the monitors on gamma-only change
If only gamma changed on drm CRTC's we don't have to rebuild the whole monitors, nor to inform the backed about, the only consumer could be the DBus API, and so we still emit a signal, but nothing else is needed. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1964>
This commit is contained in:
parent
a8d11161b6
commit
9ce3abad28
@ -65,6 +65,8 @@
|
||||
#include "meta/main.h"
|
||||
#include "meta/meta-x11-errors.h"
|
||||
|
||||
#include "meta-dbus-display-config.h"
|
||||
|
||||
enum
|
||||
{
|
||||
PROP_0,
|
||||
@ -514,6 +516,12 @@ on_kms_resources_changed (MetaKms *kms,
|
||||
{
|
||||
g_assert (changes != META_KMS_UPDATE_CHANGE_NONE);
|
||||
|
||||
if (changes == META_KMS_UPDATE_CHANGE_GAMMA)
|
||||
{
|
||||
meta_dbus_display_config_emit_monitors_changed (manager->display_config);
|
||||
return;
|
||||
}
|
||||
|
||||
handle_hotplug_event (manager);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user