clutter/frame-clock: Fix unused variable warning
When CLUTTER_ENABLE_DEBUG is not defined, then CLUTTER_NOTE is defined as an empty block of code. As a result of that, jitter_us is in that situation unused, and a compiler warning about this unused variable appears. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3275>
This commit is contained in:
parent
bac157b037
commit
6a2b9d6d43
1 changed files with 2 additions and 0 deletions
|
@ -739,6 +739,7 @@ clutter_frame_clock_dispatch (ClutterFrameClock *frame_clock,
|
||||||
else
|
else
|
||||||
frame_clock->last_dispatch_lateness_us = lateness_us;
|
frame_clock->last_dispatch_lateness_us = lateness_us;
|
||||||
|
|
||||||
|
#ifdef CLUTTER_ENABLE_DEBUG
|
||||||
if (G_UNLIKELY (CLUTTER_HAS_DEBUG (FRAME_TIMINGS)))
|
if (G_UNLIKELY (CLUTTER_HAS_DEBUG (FRAME_TIMINGS)))
|
||||||
{
|
{
|
||||||
int64_t dispatch_interval_us, jitter_us;
|
int64_t dispatch_interval_us, jitter_us;
|
||||||
|
@ -752,6 +753,7 @@ clutter_frame_clock_dispatch (ClutterFrameClock *frame_clock,
|
||||||
jitter_us,
|
jitter_us,
|
||||||
jitter_us * 100 / frame_clock->refresh_interval_us);
|
jitter_us * 100 / frame_clock->refresh_interval_us);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
frame_clock->last_dispatch_time_us = time_us;
|
frame_clock->last_dispatch_time_us = time_us;
|
||||||
g_source_set_ready_time (frame_clock->source, -1);
|
g_source_set_ready_time (frame_clock->source, -1);
|
||||||
|
|
Loading…
Reference in a new issue