From 8cb57ecc1b62e3f1765692599cc1973617322898 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Fri, 4 Sep 2020 14:39:15 +0100 Subject: [PATCH] ecore x - fix typo in internal backdoor api to get vsync debug --- src/lib/ecore_x/Ecore_X.h | 2 +- src/lib/ecore_x/ecore_x_vsync.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/ecore_x/Ecore_X.h b/src/lib/ecore_x/Ecore_X.h index 66f86f165a..4a1ab61472 100644 --- a/src/lib/ecore_x/Ecore_X.h +++ b/src/lib/ecore_x/Ecore_X.h @@ -18,7 +18,7 @@ # define EAPI #endif // ifdef __GNUC__ -EAPI double _ecore_x_vxync_wakeup_time_get(void); +EAPI double _ecore_x_vsync_wakeup_time_get(void); #define ECORE_X_VERSION_MAJOR EFL_VERSION_MAJOR #define ECORE_X_VERSION_MINOR EFL_VERSION_MINOR diff --git a/src/lib/ecore_x/ecore_x_vsync.c b/src/lib/ecore_x/ecore_x_vsync.c index 9fa2f6df25..ff72d9f270 100644 --- a/src/lib/ecore_x/ecore_x_vsync.c +++ b/src/lib/ecore_x/ecore_x_vsync.c @@ -387,7 +387,7 @@ _drm_vblank_handler(int fd EINA_UNUSED, static double _ecore_x_vsync_wakeup_time = 0.0; -EAPI double _ecore_x_vxync_wakeup_time_get(void) +EAPI double _ecore_x_vsync_wakeup_time_get(void) { return _ecore_x_vsync_wakeup_time; }