blob: c6aa9248247b739020b2a929005c47f4641c6de3 [file] [log] [blame]
Dylan Bakerd1992252017-09-14 17:57:17 -07001# Copyright © 2017 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
21inc_drm_uapi = include_directories('drm-uapi')
22inc_vulkan = include_directories('vulkan')
Dylan Baker32180562017-09-20 20:11:32 -070023
24if with_gles1
25 install_headers(
26 'GLES/egl.h', 'GLES/gl.h', 'GLES/glext.h', 'GLES/glplatform.h',
27 subdir : 'GLES',
28 )
29endif
30
31if with_gles2
32 install_headers(
33 'GLES2/gl2.h', 'GLES2/gl2ext.h', 'GLES2/gl2platform.h',
34 subdir : 'GLES2',
35 )
36 install_headers(
Dylan Bakera80a3e42017-11-29 11:16:59 -080037 'GLES3/gl3.h', 'GLES3/gl31.h', 'GLES3/gl32.h', 'GLES3/gl3ext.h',
Dylan Baker32180562017-09-20 20:11:32 -070038 'GLES3/gl3platform.h',
39 subdir : 'GLES3',
40 )
41endif
42
43if with_gles1 or with_gles2 # or with_egl
44 install_headers('KHR/khrplatform.h', subdir : 'KHR')
45endif
46
47if with_opengl
48 install_headers(
49 'GL/gl.h', 'GL/glext.h', 'GL/glcorearb.h', 'GL/gl_mangle.h',
50 subdir : 'GL',
51 )
52endif
53
Dylan Bakera47c5252017-09-22 12:55:00 -070054if with_glx != 'disabled'
Dylan Baker32180562017-09-20 20:11:32 -070055 install_headers('GL/glx.h', 'GL/glext.h', 'GL/glx_mangle.h', subdir : 'GL')
56endif
57
Dylan Bakercbbd5bb2017-10-20 21:48:18 -070058if with_osmesa != 'none'
Dylan Baker32180562017-09-20 20:11:32 -070059 install_headers('GL/osmesa.h', subdir : 'GL')
60endif
Dylan Baker108d2572017-10-18 12:20:43 -070061
62if with_egl
63 install_headers(
64 'EGL/eglext.h', 'EGL/egl.h', 'EGL/eglextchromium.h', 'EGL/eglmesaext.h',
65 'EGL/eglplatform.h',
66 subdir : 'EGL',
67 )
68endif