From 8d42d7d50aede6df4e03ffa08062405459ef1ca0 Mon Sep 17 00:00:00 2001 From: Derek Foreman Date: Thu, 27 Apr 2017 15:50:38 -0500 Subject: [PATCH] ecore_drm2: Drop static from _fb_atomic_flip_test() We're going to need this one in plane assign to test commits --- src/lib/ecore_drm2/ecore_drm2_fb.c | 2 +- src/lib/ecore_drm2/ecore_drm2_private.h | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/ecore_drm2/ecore_drm2_fb.c b/src/lib/ecore_drm2/ecore_drm2_fb.c index 1c773176bd..452e302daf 100644 --- a/src/lib/ecore_drm2/ecore_drm2_fb.c +++ b/src/lib/ecore_drm2/ecore_drm2_fb.c @@ -228,7 +228,7 @@ ecore_drm2_fb_flip_complete(Ecore_Drm2_Output *output) return !!output->next; } -static Eina_Bool +Eina_Bool _fb_atomic_flip_test(Ecore_Drm2_Output *output) { Eina_Bool res = EINA_FALSE; diff --git a/src/lib/ecore_drm2/ecore_drm2_private.h b/src/lib/ecore_drm2/ecore_drm2_private.h index 4cec4e3208..09a9c46ee8 100644 --- a/src/lib/ecore_drm2/ecore_drm2_private.h +++ b/src/lib/ecore_drm2/ecore_drm2_private.h @@ -820,6 +820,8 @@ struct _Ecore_Drm2_Device Eina_List *outputs; }; +Eina_Bool _fb_atomic_flip_test(Ecore_Drm2_Output *output); + /* extern int (*sym_drmClose)(int fd); */ /* extern int (*sym_drmWaitVBlank)(int fd, drmVBlank *vbl); */ extern int (*sym_drmHandleEvent)(int fd, drmEventContext *evctx);