aboutsummaryrefslogtreecommitdiff
path: root/render/meson.build
blob: 4c3d4522adc7ba48cfdc2fa61256a466d91af618 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
renderers = get_option('renderers')
if 'auto' in renderers and get_option('auto_features').enabled()
	renderers = ['gles2', 'vulkan']
elif 'auto' in renderers and get_option('auto_features').disabled()
	renderers = []
endif

wlr_files += files(
	'dmabuf.c',
	'drm_format_set.c',
	'pixel_format.c',
	'swapchain.c',
	'wlr_renderer.c',
	'wlr_texture.c',
)

if cc.has_header('linux/dma-buf.h') and target_machine.system() == 'linux'
	wlr_files += files('dmabuf_linux.c')
else
	wlr_files += files('dmabuf_fallback.c')
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]
		wlr_files += files('egl.c')
		internal_features += { 'egl': true }
	endif
	subdir('gles2')
endif

if 'vulkan' in renderers or 'auto' in renderers
	subdir('vulkan')
endif

subdir('pixman')

subdir('allocator')