radeonsi: move all clear() code into si_clear.c
[mesa.git] / src / gallium / drivers / radeonsi / meson.build
1 # Copyright © 2017 Dylan Baker
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 files_libradeonsi = files(
22 'cik_sdma.c',
23 'driinfo_radeonsi.h',
24 'si_blit.c',
25 'si_clear.c',
26 'si_compute.c',
27 'si_compute.h',
28 'si_cp_dma.c',
29 'si_debug.c',
30 'si_descriptors.c',
31 'si_dma.c',
32 'si_fence.c',
33 'si_hw_context.c',
34 'si_pipe.c',
35 'si_pipe.h',
36 'si_pm4.c',
37 'si_pm4.h',
38 'si_perfcounter.c',
39 'si_public.h',
40 'si_shader.c',
41 'si_shader.h',
42 'si_shader_internal.h',
43 'si_shader_nir.c',
44 'si_shader_tgsi_alu.c',
45 'si_shader_tgsi_mem.c',
46 'si_shader_tgsi_setup.c',
47 'si_state.c',
48 'si_state_binning.c',
49 'si_state_draw.c',
50 'si_state_msaa.c',
51 'si_state_shaders.c',
52 'si_state_streamout.c',
53 'si_state_viewport.c',
54 'si_state.h',
55 'si_uvd.c',
56 )
57
58 si_driinfo_h = custom_target(
59 'si_driinfo.h',
60 input : files(
61 '../../../util/merge_driinfo.py',
62 '../../auxiliary/pipe-loader/driinfo_gallium.h', 'driinfo_radeonsi.h'
63 ),
64 output : 'si_driinfo.h',
65 command : [prog_python2, '@INPUT@'],
66 capture : true,
67 )
68
69 libradeonsi = static_library(
70 'radeonsi',
71 [files_libradeonsi, si_driinfo_h, nir_opcodes_h, sid_tables_h],
72 include_directories : [
73 inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_amd_common,
74 inc_gallium_drivers,
75 ],
76 c_args : [c_vis_args],
77 cpp_args : [cpp_vis_args],
78 dependencies : dep_llvm,
79 )