meson: gl: Update to support when egl and win32 window system are explicitly requested

This commit is contained in:
Seungha Yang 2020-02-18 20:36:38 +09:00
parent 6531037533
commit 6dd643532f

View file

@ -658,28 +658,41 @@ if need_platform_wgl == 'yes'
endif endif
endif endif
if need_platform_wgl != 'no' and need_win_win32 != 'no' if host_system == 'windows' and need_win_win32 != 'no'
gdi_dep = cc.find_library('gdi32', required : false) gdi_dep = cc.find_library('gdi32', required : false)
if gdi_dep.found()
have_wgl = false
have_egl_win32 = false
if need_platform_wgl != 'no'
wglext_h = cc.has_header('GL/wglext.h', wglext_h = cc.has_header('GL/wglext.h',
prefix : '''#include <windows.h> prefix : '''#include <windows.h>
#include <GL/gl.h>''', #include <GL/gl.h>''',
include_directories : compat_includes) include_directories : compat_includes)
have_wgl = wglext_h and gl_dep.found()
endif
if wglext_h and gdi_dep.found() and gl_dep.found() have_egl_win32 = enabled_gl_platforms.contains('egl') and gles2_dep.found()
if have_wgl or have_egl_win32
gl_includes += [compat_includes] gl_includes += [compat_includes]
gl_platform_deps += gdi_dep gl_platform_deps += gdi_dep
gl_sources += [ gl_sources += [
'win32/gstglwindow_win32.c', 'win32/gstglwindow_win32.c',
'win32/gstglwindow_win32.c', 'win32/gstglwindow_win32.c',
'wgl/gstglcontext_wgl.c',
] ]
enabled_gl_winsys += 'win32' enabled_gl_winsys += 'win32'
gl_winsys_deps += gdi_dep gl_winsys_deps += gdi_dep
enabled_gl_platforms += 'wgl'
glconf.set('GST_GL_HAVE_WINDOW_WIN32', 1) glconf.set('GST_GL_HAVE_WINDOW_WIN32', 1)
endif
if have_wgl
gl_sources += [
'wgl/gstglcontext_wgl.c',
]
enabled_gl_platforms += 'wgl'
glconf.set('GST_GL_HAVE_PLATFORM_WGL', 1) glconf.set('GST_GL_HAVE_PLATFORM_WGL', 1)
endif endif
endif endif
endif
# WinRT ANGLE checks # WinRT ANGLE checks
if need_win_winrt != 'no' and host_system == 'windows' if need_win_winrt != 'no' and host_system == 'windows'