OSDN Git Service

intel/fs: Fix opt_peephole_csel to not throw away saturates.
[android-x86/external-mesa.git] / include / meson.build
1 # 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
21 inc_drm_uapi = include_directories('drm-uapi')
22 inc_vulkan = include_directories('vulkan')
23 inc_d3d9 = include_directories('D3D9')
24 inc_gl_internal = include_directories('GL/internal')
25 inc_haikugl = include_directories('HaikuGL')
26
27 if with_gles1
28   install_headers(
29     'GLES/egl.h', 'GLES/gl.h', 'GLES/glext.h', 'GLES/glplatform.h',
30     subdir : 'GLES',
31   )
32 endif
33
34 if with_gles2
35   install_headers(
36     'GLES2/gl2.h', 'GLES2/gl2ext.h', 'GLES2/gl2platform.h',
37     subdir : 'GLES2',
38   )
39   install_headers(
40     'GLES3/gl3.h', 'GLES3/gl31.h', 'GLES3/gl32.h', 'GLES3/gl3ext.h',
41     'GLES3/gl3platform.h',
42     subdir : 'GLES3',
43   )
44 endif
45
46 if with_gles1 or with_gles2 or with_opengl or with_egl
47   install_headers('KHR/khrplatform.h', subdir : 'KHR')
48 endif
49
50 if with_opengl
51   install_headers(
52     'GL/gl.h', 'GL/glext.h', 'GL/glcorearb.h', 'GL/gl_mangle.h',
53     subdir : 'GL',
54   )
55 endif
56
57 if with_glx != 'disabled'
58   install_headers('GL/glx.h', 'GL/glxext.h', 'GL/glx_mangle.h', subdir : 'GL')
59 endif
60
61 if with_osmesa != 'none'
62   install_headers('GL/osmesa.h', subdir : 'GL')
63 endif
64
65 if with_egl
66   install_headers(
67     'EGL/eglext.h', 'EGL/egl.h', 'EGL/eglextchromium.h', 'EGL/eglmesaext.h',
68     'EGL/eglplatform.h',
69     subdir : 'EGL',
70   )
71 endif
72
73 if with_dri
74   install_headers('GL/internal/dri_interface.h', subdir : 'GL/internal')
75 endif
76
77 if with_gallium_st_nine
78   install_headers(
79     'd3dadapter/d3dadapter9.h', 'd3dadapter/drm.h', 'd3dadapter/present.h',
80     subdir : 'd3dadapter',
81   )
82 endif
83
84 if with_platform_haiku
85   install_headers(
86     'HaikuGL/GLRenderer.h', 'HaikuGL/GLView.h', 'HaikuGL/OpenGLKit.h',
87     subdir : 'opengl',
88   )
89 endif
90
91 # Only install the headers if we are building a stand alone implementation and
92 # not an ICD enabled implementation
93 if with_gallium_opencl and not with_opencl_icd
94   install_headers(
95     'CL/cl.h',
96     'CL/cl.hpp',
97     'CL/cl_d3d10.h',
98     'CL/cl_d3d11.h',
99     'CL/cl_dx9_media_sharing.h',
100     'CL/cl_egl.h',
101     'CL/cl_ext.h',
102     'CL/cl_gl.h',
103     'CL/cl_gl_ext.h',
104     'CL/cl_platform.h',
105     'CL/opencl.h',
106     subdir: 'CL'
107   )
108 endif
109
110 if with_intel_vk
111   install_headers('vulkan/vulkan_intel.h', subdir : 'vulkan')
112 endif