2017-09-15 08:57:17 +08:00
|
|
|
# Copyright © 2017 Intel Corporation
|
2024-06-29 04:16:28 +08:00
|
|
|
# SPDX-License-Identifier: MIT
|
2017-09-15 08:57:17 +08:00
|
|
|
|
2020-07-29 06:25:49 +08:00
|
|
|
inc_include = [include_directories('.')]
|
2017-11-14 09:58:51 +08:00
|
|
|
inc_d3d9 = include_directories('D3D9')
|
2024-01-29 18:06:17 +08:00
|
|
|
inc_winddk = include_directories('winddk')
|
2017-09-21 11:11:32 +08:00
|
|
|
|
2020-07-29 06:25:49 +08:00
|
|
|
# Most things assume that Android headers are in the default include
|
|
|
|
# path when compiling for Android so add the stub headers to
|
|
|
|
# inc_include when using the stub.
|
|
|
|
if with_android_stub
|
|
|
|
inc_include += [include_directories('android_stub')]
|
|
|
|
endif
|
|
|
|
|
2021-12-03 03:14:45 +08:00
|
|
|
if not with_glvnd and host_machine.system() != 'windows'
|
2019-09-30 21:08:29 +08:00
|
|
|
if with_gles1 or with_gles2 or with_opengl or with_egl
|
|
|
|
install_headers('KHR/khrplatform.h', subdir : 'KHR')
|
|
|
|
endif
|
2019-09-30 20:40:22 +08:00
|
|
|
|
2019-09-30 21:08:29 +08:00
|
|
|
if with_gles1
|
|
|
|
install_headers(
|
|
|
|
'GLES/egl.h',
|
|
|
|
'GLES/gl.h',
|
|
|
|
'GLES/glext.h',
|
|
|
|
'GLES/glplatform.h',
|
|
|
|
subdir : 'GLES',
|
|
|
|
)
|
|
|
|
endif
|
2017-09-21 11:11:32 +08:00
|
|
|
|
2019-09-30 21:08:29 +08:00
|
|
|
if with_gles2
|
|
|
|
install_headers(
|
|
|
|
'GLES2/gl2.h',
|
|
|
|
'GLES2/gl2ext.h',
|
|
|
|
'GLES2/gl2platform.h',
|
|
|
|
subdir : 'GLES2',
|
|
|
|
)
|
|
|
|
install_headers(
|
|
|
|
'GLES3/gl3.h',
|
|
|
|
'GLES3/gl31.h',
|
|
|
|
'GLES3/gl32.h',
|
|
|
|
'GLES3/gl3ext.h',
|
|
|
|
'GLES3/gl3platform.h',
|
|
|
|
subdir : 'GLES3',
|
|
|
|
)
|
|
|
|
endif
|
2017-09-21 11:11:32 +08:00
|
|
|
|
2019-09-30 21:08:29 +08:00
|
|
|
if with_opengl
|
|
|
|
install_headers(
|
|
|
|
'GL/gl.h',
|
|
|
|
'GL/glcorearb.h',
|
|
|
|
'GL/glext.h',
|
|
|
|
subdir : 'GL',
|
|
|
|
)
|
|
|
|
endif
|
2017-09-21 11:11:32 +08:00
|
|
|
|
2019-09-30 21:08:29 +08:00
|
|
|
if with_glx != 'disabled'
|
|
|
|
install_headers(
|
|
|
|
'GL/glx.h',
|
|
|
|
'GL/glxext.h',
|
|
|
|
subdir : 'GL')
|
|
|
|
endif
|
2017-09-21 11:11:32 +08:00
|
|
|
|
2019-09-30 21:08:29 +08:00
|
|
|
if with_egl
|
|
|
|
install_headers(
|
|
|
|
'EGL/egl.h',
|
|
|
|
'EGL/eglext.h',
|
|
|
|
'EGL/eglplatform.h',
|
|
|
|
subdir : 'EGL',
|
|
|
|
)
|
|
|
|
endif
|
2019-09-30 21:06:07 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
# Non-upstream headers
|
|
|
|
if with_egl
|
|
|
|
install_headers(
|
2022-07-30 17:44:16 +08:00
|
|
|
'EGL/eglext_angle.h',
|
2019-09-30 21:00:51 +08:00
|
|
|
'EGL/eglmesaext.h',
|
2017-10-19 03:20:43 +08:00
|
|
|
subdir : 'EGL',
|
|
|
|
)
|
|
|
|
endif
|
2017-12-01 02:37:11 +08:00
|
|
|
|
2019-07-04 02:10:32 +08:00
|
|
|
if with_osmesa
|
2019-09-30 20:40:22 +08:00
|
|
|
install_headers('GL/osmesa.h', subdir : 'GL')
|
|
|
|
endif
|
|
|
|
|
2017-12-01 02:37:11 +08:00
|
|
|
if with_dri
|
|
|
|
install_headers('GL/internal/dri_interface.h', subdir : 'GL/internal')
|
|
|
|
endif
|
2017-11-14 09:58:51 +08:00
|
|
|
|
|
|
|
if with_gallium_st_nine
|
|
|
|
install_headers(
|
|
|
|
'd3dadapter/d3dadapter9.h', 'd3dadapter/drm.h', 'd3dadapter/present.h',
|
|
|
|
subdir : 'd3dadapter',
|
|
|
|
)
|
|
|
|
endif
|
2017-12-09 07:26:00 +08:00
|
|
|
|
2020-11-09 03:28:21 +08:00
|
|
|
opencl_headers = files(
|
|
|
|
'CL/cl.h',
|
|
|
|
'CL/cl.hpp',
|
|
|
|
'CL/cl2.hpp',
|
|
|
|
'CL/cl_d3d10.h',
|
|
|
|
'CL/cl_d3d11.h',
|
|
|
|
'CL/cl_dx9_media_sharing.h',
|
|
|
|
'CL/cl_dx9_media_sharing_intel.h',
|
|
|
|
'CL/cl_egl.h',
|
|
|
|
'CL/cl_ext.h',
|
|
|
|
'CL/cl_ext_intel.h',
|
|
|
|
'CL/cl_gl.h',
|
|
|
|
'CL/cl_gl_ext.h',
|
|
|
|
'CL/cl_icd.h',
|
|
|
|
'CL/cl_platform.h',
|
|
|
|
'CL/cl_va_api_media_sharing_intel.h',
|
|
|
|
'CL/cl_version.h',
|
|
|
|
'CL/opencl.h',
|
2022-11-18 01:06:53 +08:00
|
|
|
'CL/opencl.hpp',
|
2020-11-09 03:28:21 +08:00
|
|
|
)
|
2017-12-09 07:26:00 +08:00
|
|
|
# Only install the headers if we are building a stand alone implementation and
|
|
|
|
# not an ICD enabled implementation
|
2024-06-26 17:58:40 +08:00
|
|
|
if with_gallium_clover and not with_opencl_icd
|
2017-12-09 07:26:00 +08:00
|
|
|
install_headers(
|
2020-11-09 03:28:21 +08:00
|
|
|
opencl_headers,
|
2017-12-09 07:26:00 +08:00
|
|
|
subdir: 'CL'
|
|
|
|
)
|
|
|
|
endif
|