render/egl: drop EGL_PLATFORM_GBM_KHR

Now that we match other devices for DRM platform devices, we no
longer need this to support split render/display systems.
This commit is contained in:
Simon Ser 2023-10-05 15:49:50 +02:00
parent a69a6ae391
commit c0ffee9715
3 changed files with 13 additions and 74 deletions

View file

@ -23,9 +23,8 @@ endif
if 'gles2' in renderers or 'auto' in renderers
egl = dependency('egl', required: 'gles2' in renderers)
gbm = dependency('gbm', required: 'gles2' in renderers)
if egl.found() and gbm.found()
wlr_deps += [egl, gbm]
if egl.found()
wlr_deps += egl
wlr_files += files('egl.c')
internal_features += { 'egl': true }
endif