blob: 97d79823b663e15cbc4698d76b513720837109eb [file] [log] [blame]
Emil Velikovcd0f11b2018-12-09 19:51:15 +00001# Copyright © 2017 Intel Corporation
Dylan Baker108d2572017-10-18 12:20:43 -07002
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
Dylan Baker6f628952018-03-06 10:36:42 -080021inc_egl = include_directories('.', 'main')
22inc_egl_dri2 = include_directories('drivers/dri2')
23
Dylan Baker108d2572017-10-18 12:20:43 -070024c_args_for_egl = []
25link_for_egl = []
26deps_for_egl = []
Eric Engestromf1374802019-02-12 18:18:03 +000027incs_for_egl = [inc_include, inc_src, inc_egl]
Alexander von Gluck IV834d2212018-02-16 16:56:31 -060028
Dylan Baker108d2572017-10-18 12:20:43 -070029files_egl = files(
30 'main/eglapi.c',
31 'main/eglapi.h',
32 'main/eglarray.c',
33 'main/eglarray.h',
34 'main/eglconfig.c',
35 'main/eglconfig.h',
36 'main/eglcontext.c',
37 'main/eglcontext.h',
38 'main/eglcurrent.c',
39 'main/eglcurrent.h',
40 'main/egldefines.h',
Emil Velikov7552fcb2015-07-24 16:19:55 +020041 'main/egldevice.c',
42 'main/egldevice.h',
Dylan Baker108d2572017-10-18 12:20:43 -070043 'main/egldisplay.c',
44 'main/egldisplay.h',
45 'main/egldriver.c',
46 'main/egldriver.h',
Dylan Baker108d2572017-10-18 12:20:43 -070047 'main/eglglobals.c',
48 'main/eglglobals.h',
49 'main/eglimage.c',
50 'main/eglimage.h',
51 'main/egllog.c',
52 'main/egllog.h',
53 'main/eglsurface.c',
54 'main/eglsurface.h',
55 'main/eglsync.c',
56 'main/eglsync.h',
57 'main/eglentrypoint.h',
58 'main/egltypedefs.h',
Dylan Baker108d2572017-10-18 12:20:43 -070059)
60
Dylan Baker035ec7a2017-10-18 15:11:39 -070061g_egldispatchstubs_c = custom_target(
62 'g_egldispatchstubs.c',
63 input : [
Eric Engestrombdf6a5c2018-11-07 13:07:09 +000064 'generate/gen_egl_dispatch.py',
Dylan Baker035ec7a2017-10-18 15:11:39 -070065 'generate/egl.xml', 'generate/egl_other.xml'
66 ],
67 output : 'g_egldispatchstubs.c',
68 command : [
Eric Engestrombdf6a5c2018-11-07 13:07:09 +000069 prog_python, '@INPUT0@', 'source', '@INPUT1@', '@INPUT2@',
Dylan Baker035ec7a2017-10-18 15:11:39 -070070 ],
Emil Velikovcd0f11b2018-12-09 19:51:15 +000071 depend_files : [ files('generate/eglFunctionList.py'), genCommon_py, ],
Dylan Baker035ec7a2017-10-18 15:11:39 -070072 capture : true,
73)
74
75g_egldispatchstubs_h = custom_target(
76 'g_egldispatchstubs.h',
77 input : [
Eric Engestrombdf6a5c2018-11-07 13:07:09 +000078 'generate/gen_egl_dispatch.py',
Dylan Baker035ec7a2017-10-18 15:11:39 -070079 'generate/egl.xml', 'generate/egl_other.xml'
80 ],
81 output : 'g_egldispatchstubs.h',
82 command : [
Eric Engestrombdf6a5c2018-11-07 13:07:09 +000083 prog_python, '@INPUT0@', 'header', '@INPUT1@', '@INPUT2@',
Dylan Baker035ec7a2017-10-18 15:11:39 -070084 ],
Emil Velikovcd0f11b2018-12-09 19:51:15 +000085 depend_files : [ files('generate/eglFunctionList.py'), genCommon_py, ],
Dylan Baker035ec7a2017-10-18 15:11:39 -070086 capture : true,
87)
88
Alexander von Gluck IV834d2212018-02-16 16:56:31 -060089if with_dri2
90 files_egl += files(
91 'drivers/dri2/egl_dri2.c',
92 'drivers/dri2/egl_dri2.h',
93 'drivers/dri2/egl_dri2_fallbacks.h',
94 )
Emil Velikovf0a7b462019-02-14 11:23:58 +000095 link_for_egl += [libloader, libxmlconfig]
96 incs_for_egl += inc_loader
Alexander von Gluck IV834d2212018-02-16 16:56:31 -060097
Emil Velikovd6edcce2019-05-16 18:01:40 +010098 files_egl += files('drivers/dri2/platform_device.c')
Emil Velikov83c7fbb2018-08-18 13:23:11 +010099 if with_platform_x11
100 files_egl += files('drivers/dri2/platform_x11.c')
Emil Velikov83c7fbb2018-08-18 13:23:11 +0100101 if with_dri3
102 files_egl += files('drivers/dri2/platform_x11_dri3.c')
103 link_for_egl += libloader_dri3_helper
104 endif
105 deps_for_egl += [dep_x11_xcb, dep_xcb_dri2, dep_xcb_xfixes]
Dylan Baker108d2572017-10-18 12:20:43 -0700106 endif
Emil Velikov83c7fbb2018-08-18 13:23:11 +0100107 if with_platform_drm
108 files_egl += files('drivers/dri2/platform_drm.c')
Emil Velikovf0a7b462019-02-14 11:23:58 +0000109 link_for_egl += libgbm
110 incs_for_egl += [inc_gbm, include_directories('../gbm/main')]
Emil Velikov83c7fbb2018-08-18 13:23:11 +0100111 deps_for_egl += dep_libdrm
112 endif
113 if with_platform_surfaceless
114 files_egl += files('drivers/dri2/platform_surfaceless.c')
Emil Velikov83c7fbb2018-08-18 13:23:11 +0100115 endif
116 if with_platform_wayland
117 deps_for_egl += [dep_wayland_client, dep_wayland_server, dep_wayland_egl_headers]
118 link_for_egl += libwayland_drm
119 files_egl += files('drivers/dri2/platform_wayland.c')
120 files_egl += [
121 linux_dmabuf_unstable_v1_protocol_c,
122 linux_dmabuf_unstable_v1_client_protocol_h,
123 wayland_drm_client_protocol_h,
124 ]
125 incs_for_egl += include_directories('wayland/wayland-drm')
126 endif
127 if with_platform_android
128 deps_for_egl += dep_android
129 files_egl += files('drivers/dri2/platform_android.c')
Emil Velikov83c7fbb2018-08-18 13:23:11 +0100130 endif
131elif with_platform_haiku
Alexander von Gluck IV834d2212018-02-16 16:56:31 -0600132 incs_for_egl += inc_haikugl
133 c_args_for_egl += [
134 '-D_EGL_BUILT_IN_DRIVER_HAIKU',
135 ]
136 files_egl += files('drivers/haiku/egl_haiku.cpp')
137 link_for_egl += libgl
138 deps_for_egl += cpp.find_library('be')
139endif
Dylan Baker108d2572017-10-18 12:20:43 -0700140
Dylan Baker108d2572017-10-18 12:20:43 -0700141if cc.has_function('mincore')
142 c_args_for_egl += '-DHAVE_MINCORE'
143endif
144
Dylan Baker035ec7a2017-10-18 15:11:39 -0700145if not with_glvnd
Benjamin Gordonb30aad52018-06-13 16:17:32 -0600146 egl_lib_name = 'EGL' + get_option('egl-lib-suffix')
Dylan Baker035ec7a2017-10-18 15:11:39 -0700147 egl_lib_version = '1.0.0'
148else
149 egl_lib_name = 'EGL_mesa'
Eric Engestrom5be1b1a2017-11-02 23:24:00 +0000150 egl_lib_version = '0.0.0'
Dylan Baker035ec7a2017-10-18 15:11:39 -0700151 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 )
157endif
158
Dylan Baker108d2572017-10-18 12:20:43 -0700159libegl = shared_library(
Dylan Baker035ec7a2017-10-18 15:11:39 -0700160 egl_lib_name,
Dylan Baker108d2572017-10-18 12:20:43 -0700161 files_egl,
162 c_args : [
163 c_vis_args,
164 c_args_for_egl,
Dylan Baker108d2572017-10-18 12:20:43 -0700165 '-D_EGL_NATIVE_PLATFORM=_EGL_PLATFORM_@0@'.format(egl_native_platform.to_upper()),
166 ],
Dylan Baker77f7ef02017-10-20 17:34:51 -0700167 include_directories : incs_for_egl,
Emil Velikovf0a7b462019-02-14 11:23:58 +0000168 link_with : [link_for_egl, libglapi, libmesa_util],
Dylan Baker108d2572017-10-18 12:20:43 -0700169 link_args : [ld_args_bsymbolic, ld_args_gc_sections],
170 dependencies : [deps_for_egl, dep_dl, dep_libdrm, dep_clock, dep_thread],
171 install : true,
Dylan Baker035ec7a2017-10-18 15:11:39 -0700172 version : egl_lib_version,
Dylan Baker108d2572017-10-18 12:20:43 -0700173)
174
Dylan Baker5c460332018-02-20 10:36:44 -0800175# If using glvnd the pkg-config header should not point to EGL_mesa, it should
176# point to EGL. glvnd is only available on unix like platforms so adding -l
177# should be safe here
178# TODO: in the glvnd case glvnd itself should really be providing this.
179if with_glvnd
180 _egl = '-L${libdir} -lEGL'
181else
182 _egl = libegl
183endif
184
Dylan Baker108d2572017-10-18 12:20:43 -0700185pkg.generate(
186 name : 'egl',
187 description : 'Mesa EGL Library',
188 version : meson.project_version(),
Dylan Baker5c460332018-02-20 10:36:44 -0800189 libraries : _egl,
Dylan Baker108d2572017-10-18 12:20:43 -0700190 libraries_private: gl_priv_libs,
191 requires_private : gl_priv_reqs,
192 extra_cflags : gl_pkgconfig_c_flags,
193)
194
Dylan Bakerff9bf222018-05-17 13:44:30 -0700195if with_tests and prog_nm.found()
Eric Engestrom64f17442017-10-30 15:43:10 +0000196 if with_glvnd
197 # TODO: add glvnd symbol check
198 else
199 test('egl-symbols-check',
200 find_program('egl-symbols-check'),
Eric Engestrom11d45302018-02-23 17:02:08 +0000201 env : env_test,
Dylan Bakera9997982018-11-19 13:44:15 -0800202 args : libegl,
203 suite : ['egl'],
Eric Engestrom64f17442017-10-30 15:43:10 +0000204 )
205 endif
Eric Engestrom1946de22017-10-30 15:42:16 +0000206 test('egl-entrypoint-check',
207 find_program('egl-entrypoint-check'),
Dylan Bakera9997982018-11-19 13:44:15 -0800208 env : ['srcdir=' + meson.current_source_dir()],
209 suite : ['egl'],
Eric Engestrom1946de22017-10-30 15:42:16 +0000210 )
Dylan Baker108d2572017-10-18 12:20:43 -0700211endif