2021-04-09 04:48:01 +02:00
|
|
|
renderers = get_option('renderers')
|
|
|
|
if 'auto' in renderers and get_option('auto_features').enabled()
|
2021-02-21 18:30:12 +01:00
|
|
|
renderers = ['gles2', 'vulkan']
|
2021-04-09 04:48:01 +02:00
|
|
|
elif 'auto' in renderers and get_option('auto_features').disabled()
|
|
|
|
renderers = []
|
|
|
|
endif
|
|
|
|
|
2019-11-22 08:11:15 +01:00
|
|
|
wlr_files += files(
|
|
|
|
'dmabuf.c',
|
|
|
|
'drm_format_set.c',
|
2021-03-15 17:29:29 +01:00
|
|
|
'pixel_format.c',
|
2020-06-01 19:49:32 +02:00
|
|
|
'swapchain.c',
|
2019-11-22 08:11:15 +01:00
|
|
|
'wlr_renderer.c',
|
|
|
|
'wlr_texture.c',
|
2017-10-08 02:19:25 +02:00
|
|
|
)
|
2021-01-15 22:12:02 +01:00
|
|
|
|
2021-04-09 04:48:01 +02:00
|
|
|
if 'gles2' in renderers or 'auto' in renderers
|
2021-10-05 03:49:27 +02:00
|
|
|
egl = dependency('egl', required: 'gles2' in renderers)
|
2022-05-29 14:09:06 +02:00
|
|
|
gbm = dependency('gbm', required: 'gles2' in renderers)
|
|
|
|
if egl.found() and gbm.found()
|
|
|
|
wlr_deps += [egl, gbm]
|
2021-10-05 03:49:27 +02:00
|
|
|
wlr_files += files('egl.c')
|
2022-06-24 07:20:42 +02:00
|
|
|
internal_features += { 'egl': true }
|
2021-10-05 03:49:27 +02:00
|
|
|
endif
|
2021-04-09 04:48:01 +02:00
|
|
|
subdir('gles2')
|
|
|
|
endif
|
|
|
|
|
2021-02-21 18:30:12 +01:00
|
|
|
if 'vulkan' in renderers or 'auto' in renderers
|
|
|
|
subdir('vulkan')
|
|
|
|
endif
|
|
|
|
|
2021-01-18 05:15:36 +01:00
|
|
|
subdir('pixman')
|
2021-08-25 09:33:19 +02:00
|
|
|
|
|
|
|
subdir('allocator')
|