GNOME Bugzilla – Bug 788413
gstglcontext_egl.c: fix compilation warning
Last modified: 2017-10-02 11:34:36 UTC
It complains "implicit declaration warning". gstglcontext_egl.c: In function 'gst_gl_context_egl_create_context': gstglcontext_egl.c:526:5: error: implicit declaration of function 'gst_gl_window_get_window_handle' [-Werror=implicit-function-declaration] window_handle = gst_gl_window_get_window_handle (window); ^ gstglcontext_egl.c:526:5: error: nested extern declaration of 'gst_gl_window_get_window_handle' [-Werror=nested-externs]
Created attachment 360739 [details] [review] add gstglwindow header
commit c74d557127a46f652fbb9d0065517daa87e1ea06 (HEAD -> master) Author: Justin Kim <justin.kim@collabora.com> Date: Mon Oct 2 16:22:26 2017 +0900 glcontext_egl: Add gstglwindow header Otherwise, compiler complains implicit function declaration warning. https://bugzilla.gnome.org/show_bug.cgi?id=788413