mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-08 16:35:40 +00:00
gl: Separate viv direct texture checks from viv-fb winsys check
Vivante direct textures do not depend on the viv-fb windowing system. Decouple these two to be able to use direct textures even when viv-fb is not enabled. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4950>
This commit is contained in:
parent
d317379287
commit
d5a9ca8ef6
1 changed files with 16 additions and 15 deletions
|
@ -922,23 +922,24 @@ if need_win_gbm != 'no'
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if cc.has_function ('glTexDirectVIV', dependencies : gles2_dep)
|
||||||
|
glconf.set('GST_GL_HAVE_VIV_DIRECTVIV', 1)
|
||||||
|
endif
|
||||||
|
|
||||||
if need_platform_egl != 'no' and need_win_viv_fb != 'no'
|
if need_platform_egl != 'no' and need_win_viv_fb != 'no'
|
||||||
if egl_dep.found() and cc.has_function ('fbGetDisplay', dependencies : egl_dep)
|
if egl_dep.found() and cc.has_function ('fbGetDisplay', dependencies : egl_dep)
|
||||||
if cc.has_function ('glTexDirectVIV', dependencies : gles2_dep)
|
enabled_gl_winsys += 'viv-fb'
|
||||||
enabled_gl_winsys += 'viv-fb'
|
glconf.set('GST_GL_HAVE_WINDOW_VIV_FB', 1)
|
||||||
glconf.set('GST_GL_HAVE_WINDOW_VIV_FB', 1)
|
gl_priv_sources += [
|
||||||
glconf.set('GST_GL_HAVE_VIV_DIRECTVIV', 1)
|
'viv-fb/gstgldisplay_viv_fb.c',
|
||||||
gl_priv_sources += [
|
'viv-fb/gstglwindow_viv_fb_egl.c',
|
||||||
'viv-fb/gstgldisplay_viv_fb.c',
|
]
|
||||||
'viv-fb/gstglwindow_viv_fb_egl.c',
|
gl_cpp_args += ['-DEGL_API_FB']
|
||||||
]
|
gl_viv_fb_headers = [
|
||||||
gl_cpp_args += ['-DEGL_API_FB']
|
'viv-fb/gstgldisplay_viv_fb.h',
|
||||||
gl_viv_fb_headers = [
|
'viv-fb/gstglwindow_viv_fb_egl.h',
|
||||||
'viv-fb/gstgldisplay_viv_fb.h',
|
]
|
||||||
'viv-fb/gstglwindow_viv_fb_egl.h',
|
install_headers(gl_viv_fb_headers, subdir : 'gstreamer-1.0/gst/gl/viv-fb')
|
||||||
]
|
|
||||||
install_headers(gl_viv_fb_headers, subdir : 'gstreamer-1.0/gst/gl/viv-fb')
|
|
||||||
endif
|
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue