wlroots/render/meson.build

31 lines
612 B
Meson
Raw Normal View History

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
wlr_files += files(
2020-06-01 17:48:39 +00:00
'allocator.c',
'dmabuf.c',
'drm_format_set.c',
2020-06-01 17:49:10 +00:00
'gbm_allocator.c',
'pixel_format.c',
'shm_allocator.c',
'swapchain.c',
'wlr_renderer.c',
'wlr_texture.c',
2017-10-08 00:19:25 +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')