Commit a159d154 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

EGL: update and unify the platforms list

parent dc5988ad
...@@ -109,12 +109,33 @@ static int Open (vlc_object_t *obj, const struct gl_api *api) ...@@ -109,12 +109,33 @@ static int Open (vlc_object_t *obj, const struct gl_api *api)
{ {
vlc_gl_t *gl = (vlc_gl_t *)obj; vlc_gl_t *gl = (vlc_gl_t *)obj;
#ifdef __unix__ /* <EGL/eglplatform.h> defines the list and order of platforms */
#if defined(_WIN32) || defined(__VC32__) \
&& !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__)
# define vlc_eglGetWindow(w) ((w)->handle.hwnd)
#elif defined(__WINSCW__) || defined(__SYMBIAN32__) /* Symbian */
# error Symbian EGL not supported.
#elif defined(WL_EGL_PLATFORM)
# error Wayland EGL not supported.
#elif defined(__GBM__)
# error Glamor EGL not supported.
#elif defined(ANDROID)
# error Android EGL not supported
#elif defined(__unix__) /* X11 */
# define vlc_eglGetWindow(w) ((w)->handle.xid)
/* EGL can only use the default X11 display */ /* EGL can only use the default X11 display */
if (gl->surface->display.x11 != NULL) if (gl->surface->display.x11 != NULL)
return VLC_EGENERIC; return VLC_EGENERIC;
if (!vlc_xlib_init (obj)) if (!vlc_xlib_init (obj))
return VLC_EGENERIC; return VLC_EGENERIC;
#else
# error EGL platform not recognized.
#endif #endif
/* Initialize EGL display */ /* Initialize EGL display */
...@@ -163,12 +184,7 @@ static int Open (vlc_object_t *obj, const struct gl_api *api) ...@@ -163,12 +184,7 @@ static int Open (vlc_object_t *obj, const struct gl_api *api)
goto error; goto error;
/* Create a drawing surface */ /* Create a drawing surface */
#if defined (WIN32) EGLNativeWindowType win = vlc_eglGetWindow(gl->surface);
EGLNativeWindowType win = gl->surface->handle.hwnd;
#elif defined (__unix__)
EGLNativeWindowType win = gl->surface->handle.xid;
#endif
EGLSurface surface = eglCreateWindowSurface (dpy, cfgv[0], win, NULL); EGLSurface surface = eglCreateWindowSurface (dpy, cfgv[0], win, NULL);
if (surface == EGL_NO_SURFACE) if (surface == EGL_NO_SURFACE)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment