panfrost/midgard: Handle pure int formats
[mesa.git] / src / gallium / drivers / panfrost / meson.build
1 # Copyright © 2017 Intel Corporation
2 # Copyright © 2018 Alyssa Rosenzweig
3
4 # Permission is hereby granted, free of charge, to any person obtaining a copy
5 # of this software and associated documentation files (the "Software"), to deal
6 # in the Software without restriction, including without limitation the rights
7 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 # copies of the Software, and to permit persons to whom the Software is
9 # furnished to do so, subject to the following conditions:
10
11 # The above copyright notice and this permission notice shall be included in
12 # all copies or substantial portions of the Software.
13
14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 # SOFTWARE.
21
22 files_panfrost = files(
23 'pan_public.h',
24 'pan_screen.c',
25 'pan_screen.h',
26 'pan_resource.c',
27 'pan_resource.h',
28
29 'midgard/midgard_compile.c',
30 'midgard/mir.c',
31 'midgard/midgard_print.c',
32 'midgard/midgard_schedule.c',
33 'midgard/midgard_emit.c',
34 'midgard/midgard_ra.c',
35 'midgard/midgard_ra_pipeline.c',
36 'midgard/midgard_liveness.c',
37 'midgard/midgard_ops.c',
38
39 'midgard/nir_lower_blend.c',
40 'midgard/nir_lower_framebuffer.c',
41 'midgard/cppwrap.cpp',
42 'midgard/disassemble.c',
43
44 'bifrost/disassemble.c',
45
46 'pandecode/common.c',
47 'pandecode/decode.c',
48
49 'pan_context.c',
50 'pan_afbc.c',
51 'pan_blit.c',
52 'pan_job.c',
53 'pan_drm.c',
54 'pan_allocate.c',
55 'pan_assemble.c',
56 'pan_format.c',
57 'pan_blending.c',
58 'pan_blend_shaders.c',
59 'pan_pretty_print.c',
60 'pan_fragment.c',
61 'pan_invocation.c',
62 'pan_instancing.c',
63 'pan_scoreboard.c',
64 'pan_sfbd.c',
65 'pan_mfbd.c',
66 'pan_tiler.c',
67 )
68
69 panfrost_includes = [
70 inc_common,
71 inc_gallium,
72 inc_gallium_aux,
73 inc_include,
74 inc_src,
75 inc_panfrost,
76 include_directories('include'),
77 include_directories('midgard'),
78 include_directories('bifrost'),
79 ]
80
81 compile_args_panfrost = [
82 '-DGALLIUM_PANFROST',
83 '-Wno-pointer-arith'
84 ]
85
86 midgard_nir_algebraic_c = custom_target(
87 'midgard_nir_algebraic.c',
88 input : 'midgard/midgard_nir_algebraic.py',
89 output : 'midgard_nir_algebraic.c',
90 command : [
91 prog_python, '@INPUT@',
92 '-p', join_paths(meson.source_root(), 'src/compiler/nir/'),
93 ],
94 capture : true,
95 depend_files : nir_algebraic_py,
96 )
97
98 libpanfrost = static_library(
99 'panfrost',
100 [files_panfrost, midgard_nir_algebraic_c],
101 dependencies: [
102 dep_thread,
103 dep_libdrm,
104 idep_nir
105 ],
106 include_directories : panfrost_includes,
107 c_args : [c_vis_args, c_msvc_compat_args, compile_args_panfrost],
108 )
109
110 driver_panfrost = declare_dependency(
111 compile_args : compile_args_panfrost,
112 link_with : [libpanfrost, libpanfrostwinsys, libpanfrost_shared],
113 )
114
115 files_bifrost = files(
116 'bifrost/disassemble.c',
117 'bifrost/cmdline.c',
118 )
119
120 bifrost_compiler = executable(
121 'bifrost_compiler',
122 [files_bifrost],
123 include_directories : [
124 inc_common,
125 inc_src,
126 inc_include,
127 inc_gallium,
128 inc_gallium_aux,
129 include_directories('bifrost')
130 ],
131 dependencies : [
132 dep_thread,
133 idep_nir
134 ],
135 link_with : [
136 libgallium,
137 libglsl_standalone,
138 libmesa_util
139 ],
140 build_by_default : true
141 )
142
143 files_pandecode = files(
144 'pandecode/cmdline.c',
145 'pandecode/common.c',
146 'pandecode/decode.c',
147
148 'pan_pretty_print.c',
149
150 'midgard/disassemble.c',
151 'midgard/midgard_ops.c',
152 'bifrost/disassemble.c',
153 )
154
155 pandecode = executable(
156 'pandecode',
157 files_pandecode,
158 include_directories : panfrost_includes,
159 dependencies : [
160 dep_thread,
161 ],
162 link_with : [
163 libmesa_util
164 ],
165 build_by_default : true
166 )