mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-12-16 08:56:26 -05:00
render/gles2: check GBM is found
The GLES2 renderer depends on EGL, which depends on GBM for device selection.
This commit is contained in:
parent
91943a68a6
commit
b9d55b8769
1 changed files with 1 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
glesv2 = dependency('glesv2', required: 'gles2' in renderers)
|
glesv2 = dependency('glesv2', required: 'gles2' in renderers)
|
||||||
|
|
||||||
if not (glesv2.found() and egl.found())
|
if not (glesv2.found() and egl.found() and gbm.found())
|
||||||
subdir_done()
|
subdir_done()
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue