mirror of
https://github.com/brl/mutter.git
synced 2024-12-27 05:12:15 +00:00
kms/impl-device: Rename deadline_timer_failed to deadline_timer_inhibited
Because in the next commit we'll reuse the flag for conditional inhibition on platforms where the deadline timer doesn't fail. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3279>
This commit is contained in:
parent
702f52a0b6
commit
eab5e94862
@ -98,7 +98,7 @@ typedef struct _MetaKmsImplDevicePrivate
|
|||||||
|
|
||||||
GHashTable *crtc_frames;
|
GHashTable *crtc_frames;
|
||||||
|
|
||||||
gboolean deadline_timer_failed;
|
gboolean deadline_timer_inhibited;
|
||||||
} MetaKmsImplDevicePrivate;
|
} MetaKmsImplDevicePrivate;
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -1345,7 +1345,7 @@ is_using_deadline_timer (MetaKmsImplDevice *impl_device)
|
|||||||
MetaKmsImplDevicePrivate *priv =
|
MetaKmsImplDevicePrivate *priv =
|
||||||
meta_kms_impl_device_get_instance_private (impl_device);
|
meta_kms_impl_device_get_instance_private (impl_device);
|
||||||
|
|
||||||
if (priv->deadline_timer_failed)
|
if (priv->deadline_timer_inhibited)
|
||||||
{
|
{
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
@ -1568,7 +1568,7 @@ meta_kms_impl_device_schedule_process (MetaKmsImplDevice *impl_device,
|
|||||||
g_warning ("Failed to determine deadline: %s", error->message);
|
g_warning ("Failed to determine deadline: %s", error->message);
|
||||||
|
|
||||||
priv = meta_kms_impl_device_get_instance_private (impl_device);
|
priv = meta_kms_impl_device_get_instance_private (impl_device);
|
||||||
priv->deadline_timer_failed = TRUE;
|
priv->deadline_timer_inhibited = TRUE;
|
||||||
|
|
||||||
needs_flush:
|
needs_flush:
|
||||||
meta_kms_device_set_needs_flush (meta_kms_crtc_get_device (crtc), crtc);
|
meta_kms_device_set_needs_flush (meta_kms_crtc_get_device (crtc), crtc);
|
||||||
|
Loading…
Reference in New Issue
Block a user