egl: replace _EGLDriver param with _EGLDisplay->Driver in _eglReleaseDisplayResources()
[mesa.git] / src / egl / meson.build
1 # Copyright © 2017-2019 Intel Corporation
2
3 # Permission is hereby granted, free of charge, to any person obtaining a copy
4 # of this software and associated documentation files (the "Software"), to deal
5 # in the Software without restriction, including without limitation the rights
6 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 # copies of the Software, and to permit persons to whom the Software is
8 # furnished to do so, subject to the following conditions:
9
10 # The above copyright notice and this permission notice shall be included in
11 # all copies or substantial portions of the Software.
12
13 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19 # SOFTWARE.
20
21 inc_egl = include_directories('.', 'main')
22 inc_egl_dri2 = include_directories('drivers/dri2')
23
24 c_args_for_egl = []
25 link_for_egl = []
26 deps_for_egl = []
27 incs_for_egl = [inc_include, inc_src, inc_egl]
28
29 files_egl = files(
30 'main/eglapi.c',
31 'main/eglarray.c',
32 'main/eglarray.h',
33 'main/eglconfig.c',
34 'main/eglconfig.h',
35 'main/eglcontext.c',
36 'main/eglcontext.h',
37 'main/eglcurrent.c',
38 'main/eglcurrent.h',
39 'main/egldefines.h',
40 'main/egldevice.c',
41 'main/egldevice.h',
42 'main/egldisplay.c',
43 'main/egldisplay.h',
44 'main/egldriver.c',
45 'main/egldriver.h',
46 'main/eglglobals.c',
47 'main/eglglobals.h',
48 'main/eglimage.c',
49 'main/eglimage.h',
50 'main/egllog.c',
51 'main/egllog.h',
52 'main/eglsurface.c',
53 'main/eglsurface.h',
54 'main/eglsync.c',
55 'main/eglsync.h',
56 'main/eglentrypoint.h',
57 'main/egltypedefs.h',
58 )
59
60 g_egldispatchstubs_c = custom_target(
61 'g_egldispatchstubs.c',
62 input : [
63 'generate/gen_egl_dispatch.py',
64 'generate/egl.xml', 'generate/egl_other.xml'
65 ],
66 output : 'g_egldispatchstubs.c',
67 command : [
68 prog_python, '@INPUT0@', 'source', '@INPUT1@', '@INPUT2@',
69 ],
70 depend_files : [ files('generate/eglFunctionList.py'), genCommon_py, ],
71 capture : true,
72 )
73
74 g_egldispatchstubs_h = custom_target(
75 'g_egldispatchstubs.h',
76 input : [
77 'generate/gen_egl_dispatch.py',
78 'generate/egl.xml', 'generate/egl_other.xml'
79 ],
80 output : 'g_egldispatchstubs.h',
81 command : [
82 prog_python, '@INPUT0@', 'header', '@INPUT1@', '@INPUT2@',
83 ],
84 depend_files : [ files('generate/eglFunctionList.py'), genCommon_py, ],
85 capture : true,
86 )
87
88 if with_dri2
89 files_egl += files(
90 'drivers/dri2/egl_dri2.c',
91 'drivers/dri2/egl_dri2.h',
92 )
93 deps_for_egl += idep_xmlconfig
94 link_for_egl += libloader
95 incs_for_egl += inc_loader
96
97 files_egl += files(
98 'drivers/dri2/platform_device.c',
99 'drivers/dri2/platform_surfaceless.c',
100 )
101 if with_platform_x11
102 files_egl += files('drivers/dri2/platform_x11.c')
103 if with_dri3
104 files_egl += files('drivers/dri2/platform_x11_dri3.c')
105 link_for_egl += libloader_dri3_helper
106 endif
107 deps_for_egl += [dep_x11_xcb, dep_xcb_dri2, dep_xcb_xfixes]
108 endif
109 if with_gbm
110 files_egl += files('drivers/dri2/platform_drm.c')
111 link_for_egl += libgbm
112 incs_for_egl += [inc_gbm, include_directories('../gbm/main')]
113 deps_for_egl += dep_libdrm
114 endif
115 if with_platform_wayland
116 deps_for_egl += [dep_wayland_client, dep_wayland_server, dep_wayland_egl_headers]
117 link_for_egl += libwayland_drm
118 files_egl += files('drivers/dri2/platform_wayland.c')
119 files_egl += [
120 linux_dmabuf_unstable_v1_protocol_c,
121 linux_dmabuf_unstable_v1_client_protocol_h,
122 wayland_drm_client_protocol_h,
123 ]
124 incs_for_egl += include_directories('wayland/wayland-drm')
125 endif
126 if with_platform_android
127 deps_for_egl += dep_android
128 files_egl += files('drivers/dri2/platform_android.c')
129 endif
130 elif with_platform_haiku
131 incs_for_egl += inc_haikugl
132 c_args_for_egl += [
133 '-D_EGL_BUILT_IN_DRIVER_HAIKU',
134 ]
135 files_egl += files('drivers/haiku/egl_haiku.cpp')
136 link_for_egl += libgl
137 deps_for_egl += cpp.find_library('be')
138 endif
139
140 if cc.has_function('mincore')
141 c_args_for_egl += '-DHAVE_MINCORE'
142 endif
143
144 if not with_glvnd
145 egl_lib_name = 'EGL' + get_option('egl-lib-suffix')
146 egl_lib_version = '1.0.0'
147 else
148 egl_lib_name = 'EGL_mesa'
149 egl_lib_version = '0.0.0'
150 deps_for_egl += dep_glvnd
151 files_egl += [g_egldispatchstubs_h, g_egldispatchstubs_c]
152 files_egl += files('main/eglglvnd.c', 'main/egldispatchstubs.c')
153 install_data(
154 'main/50_mesa.json',
155 install_dir : join_paths(get_option('datadir'), 'glvnd', 'egl_vendor.d')
156 )
157 endif
158
159 libegl = shared_library(
160 egl_lib_name,
161 files_egl,
162 c_args : [
163 c_args_for_egl,
164 '-D_EGL_NATIVE_PLATFORM=_EGL_PLATFORM_@0@'.format(egl_native_platform.to_upper()),
165 ],
166 gnu_symbol_visibility : 'hidden',
167 include_directories : incs_for_egl,
168 link_with : [link_for_egl, libglapi],
169 link_args : [ld_args_bsymbolic, ld_args_gc_sections],
170 dependencies : [deps_for_egl, dep_dl, dep_libdrm, dep_clock, dep_thread, idep_mesautil],
171 install : true,
172 version : egl_lib_version,
173 )
174
175 if not with_glvnd
176 pkg.generate(
177 name : 'egl',
178 description : 'Mesa EGL Library',
179 version : meson.project_version(),
180 libraries : libegl,
181 libraries_private: gl_priv_libs,
182 requires_private : gl_priv_reqs,
183 extra_cflags : gl_pkgconfig_c_flags,
184 )
185 endif
186
187 if with_symbols_check
188 if with_glvnd
189 egl_symbols = files('egl-glvnd-symbols.txt')
190 else
191 egl_symbols = files('egl-symbols.txt')
192 endif
193 test('egl-symbols-check',
194 symbols_check,
195 args : [
196 '--lib', libegl,
197 '--symbols-file', egl_symbols,
198 symbols_check_args,
199 ],
200 suite : ['egl'],
201 )
202 test('egl-entrypoint-check',
203 prog_python,
204 args : files('egl-entrypoint-check.py', 'main/eglentrypoint.h'),
205 suite : ['egl'],
206 )
207 endif