1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
# Copyright © 2017 Intel Corporation
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
files_i915 = files(
'i830_context.c',
'i830_context.h',
'i830_reg.h',
'i830_state.c',
'i830_texblend.c',
'i830_texstate.c',
'i830_vtbl.c',
'i915_context.c',
'i915_context.h',
'i915_debug_fp.c',
'i915_debug.h',
'i915_fragprog.c',
'i915_program.c',
'i915_program.h',
'i915_reg.h',
'i915_state.c',
'i915_tex_layout.c',
'i915_texstate.c',
'i915_vtbl.c',
'intel_batchbuffer.c',
'intel_batchbuffer.h',
'intel_blit.c',
'intel_blit.h',
'intel_buffer_objects.c',
'intel_buffer_objects.h',
'intel_buffers.c',
'intel_buffers.h',
'intel_chipset.h',
'intel_clear.c',
'intel_clear.h',
'intel_context.c',
'intel_context.h',
'intel_extensions.c',
'intel_extensions.h',
'intel_fbo.c',
'intel_fbo.h',
'intel_mipmap_tree.c',
'intel_mipmap_tree.h',
'intel_pixel_bitmap.c',
'intel_pixel.c',
'intel_pixel_copy.c',
'intel_pixel_draw.c',
'intel_pixel.h',
'intel_pixel_read.c',
'intel_reg.h',
'intel_regions.c',
'intel_regions.h',
'intel_render.c',
'intel_screen.c',
'intel_screen.h',
'intel_state.c',
'intel_syncobj.c',
'intel_tex.c',
'intel_tex_copy.c',
'intel_tex.h',
'intel_tex_image.c',
'intel_tex_layout.c',
'intel_tex_layout.h',
'intel_tex_obj.h',
'intel_tex_subimage.c',
'intel_tex_validate.c',
'intel_tris.c',
'intel_tris.h',
)
libi915 = static_library(
'i915',
files_i915,
include_directories : [inc_common, inc_dri_common, inc_util],
c_args : [c_vis_args, no_override_init_args],
cpp_args : [cpp_vis_args],
dependencies : [dep_libdrm, dep_libdrm_intel, idep_xmlconfig_headers],
)
|