monitor: Use transform helper when dealing with panel orientation

Replace the open coded monitor transform math with the new helper.

https://gitlab.gnome.org/GNOME/mutter/merge_requests/1064
This commit is contained in:
Jonas Ådahl
2020-02-18 11:30:38 +01:00
parent e6913d1471
commit 92f0eb9d14
2 changed files with 9 additions and 15 deletions

View File

@@ -66,14 +66,11 @@ MetaMonitorTransform
meta_output_logical_to_crtc_transform (MetaOutput *output,
MetaMonitorTransform transform)
{
MetaMonitorTransform new_transform;
MetaMonitorTransform panel_orientation_transform;
new_transform = (transform + output->panel_orientation_transform) %
META_MONITOR_TRANSFORM_FLIPPED;
if (meta_monitor_transform_is_flipped (transform))
new_transform += META_MONITOR_TRANSFORM_FLIPPED;
return new_transform;
panel_orientation_transform = output->panel_orientation_transform;
return meta_monitor_transform_transform (transform,
panel_orientation_transform);
}
static void