2021-04-09 02:48:01 +00:00
|
|
|
renderers = get_option('renderers')
|
|
|
|
if 'auto' in renderers and get_option('auto_features').enabled()
|
|
|
|
renderers = ['gles2']
|
|
|
|
elif 'auto' in renderers and get_option('auto_features').disabled()
|
|
|
|
renderers = []
|
|
|
|
endif
|
|
|
|
|
2019-11-22 07:11:15 +00:00
|
|
|
wlr_files += files(
|
2020-06-01 17:48:39 +00:00
|
|
|
'allocator.c',
|
2019-11-22 07:11:15 +00:00
|
|
|
'dmabuf.c',
|
|
|
|
'drm_format_set.c',
|
2020-06-01 17:49:10 +00:00
|
|
|
'gbm_allocator.c',
|
2021-03-15 16:29:29 +00:00
|
|
|
'pixel_format.c',
|
2021-02-09 19:57:47 +00:00
|
|
|
'shm_allocator.c',
|
2020-06-01 17:49:32 +00:00
|
|
|
'swapchain.c',
|
2019-11-22 07:11:15 +00:00
|
|
|
'wlr_renderer.c',
|
|
|
|
'wlr_texture.c',
|
2021-01-28 03:10:59 +00:00
|
|
|
'drm_dumb_allocator.c',
|
2017-10-08 00:19:25 +00:00
|
|
|
)
|
2021-01-15 21:12:02 +00:00
|
|
|
|
2021-04-09 02:48:01 +00:00
|
|
|
egl = dependency('egl', required: 'gles2' in renderers)
|
|
|
|
if egl.found()
|
|
|
|
wlr_deps += egl
|
|
|
|
wlr_files += files('egl.c')
|
|
|
|
endif
|
|
|
|
|
|
|
|
if 'gles2' in renderers or 'auto' in renderers
|
|
|
|
subdir('gles2')
|
|
|
|
endif
|
|
|
|
|
2021-01-18 04:15:36 +00:00
|
|
|
subdir('pixman')
|