Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(298)

Side by Side Diff: third_party/mesa/mesa.gyp

Issue 4107001: Upgraded Mesa to 7.9 from 7.7 in order to pick up bug fixes to the... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/mesa/chromium.patch ('k') | third_party/talloc/README.chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 }, 7 },
8 'target_defaults': { 8 'target_defaults': {
9 'conditions': [ 9 'conditions': [
10 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { 10 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', {
11 'cflags': [ 11 'cflags': [
12 '-fPIC', 12 '-fPIC',
13 ], 13 ],
14 }], 14 }],
15 ['OS!="win"', {
16 'defines': [
17 # For talloc
18 'HAVE_VA_COPY',
19 ],
20 }],
21 ['OS!="mac"', {
22 'defines': [
23 # For talloc
24 'HAVE_STRNLEN',
25 ],
26 }],
27 ],
28 'defines': [
29 # For Mesa
30 'MAPI_GLAPI_CURRENT',
15 ], 31 ],
16 }, 32 },
17 'targets': [ 33 'targets': [
18 { 34 {
19 'target_name': 'mesa', 35 'target_name': 'mesa',
20 'type': 'static_library', 36 'type': 'static_library',
21 'include_dirs': [ 37 'include_dirs': [
38 '../talloc',
22 'MesaLib/include', 39 'MesaLib/include',
40 'MesaLib/src/glsl',
41 'MesaLib/src/mapi',
23 'MesaLib/src/mesa', 42 'MesaLib/src/mesa',
43 'MesaLib/src/mesa/main',
24 ], 44 ],
25 'sources': [ 45 'sources': [
46 '../talloc/talloc.c',
47 'MesaLib/src/glsl/ast.h',
48 'MesaLib/src/glsl/ast_expr.cpp',
49 'MesaLib/src/glsl/ast_function.cpp',
50 'MesaLib/src/glsl/ast_to_hir.cpp',
51 'MesaLib/src/glsl/ast_type.cpp',
52 'MesaLib/src/glsl/builtin_function.cpp',
53 'MesaLib/src/glsl/builtin_types.h',
54 'MesaLib/src/glsl/builtin_variables.h',
55 'MesaLib/src/glsl/glsl_lexer.cpp',
56 'MesaLib/src/glsl/glsl_parser.cpp',
57 'MesaLib/src/glsl/glsl_parser.h',
58 'MesaLib/src/glsl/glsl_parser_extras.cpp',
59 'MesaLib/src/glsl/glsl_parser_extras.h',
60 'MesaLib/src/glsl/glsl_symbol_table.cpp',
61 'MesaLib/src/glsl/glsl_symbol_table.h',
62 'MesaLib/src/glsl/glsl_types.cpp',
63 'MesaLib/src/glsl/glsl_types.h',
64 'MesaLib/src/glsl/hir_field_selection.cpp',
65 'MesaLib/src/glsl/ir.cpp',
66 'MesaLib/src/glsl/ir.h',
67 'MesaLib/src/glsl/ir_algebraic.cpp',
68 'MesaLib/src/glsl/ir_basic_block.cpp',
69 'MesaLib/src/glsl/ir_basic_block.h',
70 'MesaLib/src/glsl/ir_clone.cpp',
71 'MesaLib/src/glsl/ir_constant_expression.cpp',
72 'MesaLib/src/glsl/ir_constant_folding.cpp',
73 'MesaLib/src/glsl/ir_constant_propagation.cpp',
74 'MesaLib/src/glsl/ir_constant_variable.cpp',
75 'MesaLib/src/glsl/ir_copy_propagation.cpp',
76 'MesaLib/src/glsl/ir_dead_code.cpp',
77 'MesaLib/src/glsl/ir_dead_code_local.cpp',
78 'MesaLib/src/glsl/ir_dead_functions.cpp',
79 'MesaLib/src/glsl/ir_div_to_mul_rcp.cpp',
80 'MesaLib/src/glsl/ir_explog_to_explog2.cpp',
81 'MesaLib/src/glsl/ir_expression_flattening.cpp',
82 'MesaLib/src/glsl/ir_expression_flattening.h',
83 'MesaLib/src/glsl/ir_function.cpp',
84 'MesaLib/src/glsl/ir_function_can_inline.cpp',
85 'MesaLib/src/glsl/ir_function_inlining.cpp',
86 'MesaLib/src/glsl/ir_function_inlining.h',
87 'MesaLib/src/glsl/ir_hierarchical_visitor.cpp',
88 'MesaLib/src/glsl/ir_hierarchical_visitor.h',
89 'MesaLib/src/glsl/ir_hv_accept.cpp',
90 'MesaLib/src/glsl/ir_if_simplification.cpp',
91 'MesaLib/src/glsl/ir_if_to_cond_assign.cpp',
92 'MesaLib/src/glsl/ir_import_prototypes.cpp',
93 'MesaLib/src/glsl/ir_lower_jumps.cpp',
94 'MesaLib/src/glsl/ir_mat_op_to_vec.cpp',
95 'MesaLib/src/glsl/ir_mod_to_fract.cpp',
96 'MesaLib/src/glsl/ir_noop_swizzle.cpp',
97 'MesaLib/src/glsl/ir_optimization.h',
98 'MesaLib/src/glsl/ir_print_visitor.cpp',
99 'MesaLib/src/glsl/ir_print_visitor.h',
100 'MesaLib/src/glsl/ir_reader.cpp',
101 'MesaLib/src/glsl/ir_reader.h',
102 'MesaLib/src/glsl/ir_rvalue_visitor.cpp',
103 'MesaLib/src/glsl/ir_rvalue_visitor.h',
104 'MesaLib/src/glsl/ir_set_program_inouts.cpp',
105 'MesaLib/src/glsl/ir_structure_splitting.cpp',
106 'MesaLib/src/glsl/ir_sub_to_add_neg.cpp',
107 'MesaLib/src/glsl/ir_swizzle_swizzle.cpp',
108 'MesaLib/src/glsl/ir_tree_grafting.cpp',
109 'MesaLib/src/glsl/ir_validate.cpp',
110 'MesaLib/src/glsl/ir_variable.cpp',
111 'MesaLib/src/glsl/ir_variable_refcount.cpp',
112 'MesaLib/src/glsl/ir_variable_refcount.h',
113 'MesaLib/src/glsl/ir_vec_index_to_cond_assign.cpp',
114 'MesaLib/src/glsl/ir_vec_index_to_swizzle.cpp',
115 'MesaLib/src/glsl/ir_visitor.h',
116 'MesaLib/src/glsl/link_functions.cpp',
117 'MesaLib/src/glsl/linker.cpp',
118 'MesaLib/src/glsl/linker.h',
119 'MesaLib/src/glsl/list.h',
120 'MesaLib/src/glsl/loop_analysis.cpp',
121 'MesaLib/src/glsl/loop_analysis.h',
122 'MesaLib/src/glsl/loop_controls.cpp',
123 'MesaLib/src/glsl/loop_unroll.cpp',
124 'MesaLib/src/glsl/lower_noise.cpp',
125 'MesaLib/src/glsl/lower_variable_index_to_cond_assign.cpp',
126 'MesaLib/src/glsl/opt_redundant_jumps.cpp',
127 'MesaLib/src/glsl/program.h',
128 'MesaLib/src/glsl/s_expression.cpp',
129 'MesaLib/src/glsl/s_expression.h',
130 'MesaLib/src/glsl/safe_strcmp.c',
131 'MesaLib/src/glsl/safe_strcmp.h',
132 'MesaLib/src/glsl/glcpp/glcpp-lex.c',
133 'MesaLib/src/glsl/glcpp/glcpp-parse.c',
134 'MesaLib/src/glsl/glcpp/glcpp-parse.h',
135 'MesaLib/src/glsl/glcpp/pp.c',
136 'MesaLib/src/mapi/glapi/glapi.h',
137 'MesaLib/src/mapi/glapi/glapi_dispatch.c',
138 'MesaLib/src/mapi/glapi/glapi_entrypoint.c',
139 'MesaLib/src/mapi/glapi/glapi_getproc.c',
140 'MesaLib/src/mapi/glapi/glapi_nop.c',
141 'MesaLib/src/mapi/glapi/glapi_priv.h',
142 'MesaLib/src/mapi/glapi/glapidispatch.h',
143 'MesaLib/src/mapi/glapi/glapioffsets.h',
144 'MesaLib/src/mapi/glapi/glapitable.h',
145 'MesaLib/src/mapi/glapi/glapitemp.h',
146 'MesaLib/src/mapi/glapi/glprocs.h',
147 'MesaLib/src/mapi/mapi/u_compiler.h',
148 'MesaLib/src/mapi/mapi/u_current.c',
149 'MesaLib/src/mapi/mapi/u_current.h',
150 'MesaLib/src/mapi/mapi/u_execmem.c',
151 'MesaLib/src/mapi/mapi/u_execmem.h',
152 'MesaLib/src/mapi/mapi/u_macros.h',
153 'MesaLib/src/mapi/mapi/u_thread.c',
154 'MesaLib/src/mapi/mapi/u_thread.h',
26 'MesaLib/src/mesa/main/accum.c', 155 'MesaLib/src/mesa/main/accum.c',
156 'MesaLib/src/mesa/main/accum.h',
27 'MesaLib/src/mesa/main/api_arrayelt.c', 157 'MesaLib/src/mesa/main/api_arrayelt.c',
158 'MesaLib/src/mesa/main/api_arrayelt.h',
28 'MesaLib/src/mesa/main/api_exec.c', 159 'MesaLib/src/mesa/main/api_exec.c',
160 'MesaLib/src/mesa/main/api_exec.h',
29 'MesaLib/src/mesa/main/api_loopback.c', 161 'MesaLib/src/mesa/main/api_loopback.c',
162 'MesaLib/src/mesa/main/api_loopback.h',
30 'MesaLib/src/mesa/main/api_noop.c', 163 'MesaLib/src/mesa/main/api_noop.c',
164 'MesaLib/src/mesa/main/api_noop.h',
31 'MesaLib/src/mesa/main/api_validate.c', 165 'MesaLib/src/mesa/main/api_validate.c',
32 'MesaLib/src/mesa/shader/arbprogparse.c', 166 'MesaLib/src/mesa/main/api_validate.h',
33 'MesaLib/src/mesa/shader/arbprogram.c', 167 'MesaLib/src/mesa/main/arbprogram.c',
168 'MesaLib/src/mesa/main/arbprogram.h',
34 'MesaLib/src/mesa/main/arrayobj.c', 169 'MesaLib/src/mesa/main/arrayobj.c',
35 'MesaLib/src/mesa/shader/atifragshader.c', 170 'MesaLib/src/mesa/main/arrayobj.h',
171 'MesaLib/src/mesa/main/atifragshader.c',
172 'MesaLib/src/mesa/main/atifragshader.h',
36 'MesaLib/src/mesa/main/attrib.c', 173 'MesaLib/src/mesa/main/attrib.c',
174 'MesaLib/src/mesa/main/attrib.h',
175 'MesaLib/src/mesa/main/bitset.h',
37 'MesaLib/src/mesa/main/blend.c', 176 'MesaLib/src/mesa/main/blend.c',
177 'MesaLib/src/mesa/main/blend.h',
38 'MesaLib/src/mesa/main/bufferobj.c', 178 'MesaLib/src/mesa/main/bufferobj.c',
179 'MesaLib/src/mesa/main/bufferobj.h',
39 'MesaLib/src/mesa/main/buffers.c', 180 'MesaLib/src/mesa/main/buffers.c',
181 'MesaLib/src/mesa/main/buffers.h',
40 'MesaLib/src/mesa/main/clear.c', 182 'MesaLib/src/mesa/main/clear.c',
183 'MesaLib/src/mesa/main/clear.h',
41 'MesaLib/src/mesa/main/clip.c', 184 'MesaLib/src/mesa/main/clip.c',
185 'MesaLib/src/mesa/main/clip.h',
186 'MesaLib/src/mesa/main/colormac.h',
42 'MesaLib/src/mesa/main/colortab.c', 187 'MesaLib/src/mesa/main/colortab.c',
188 'MesaLib/src/mesa/main/colortab.h',
189 'MesaLib/src/mesa/main/compiler.h',
190 'MesaLib/src/mesa/main/condrender.c',
191 'MesaLib/src/mesa/main/condrender.h',
192 'MesaLib/src/mesa/main/config.h',
43 'MesaLib/src/mesa/main/context.c', 193 'MesaLib/src/mesa/main/context.c',
194 'MesaLib/src/mesa/main/context.h',
44 'MesaLib/src/mesa/main/convolve.c', 195 'MesaLib/src/mesa/main/convolve.c',
196 'MesaLib/src/mesa/main/convolve.h',
197 'MesaLib/src/mesa/main/core.h',
45 'MesaLib/src/mesa/main/cpuinfo.c', 198 'MesaLib/src/mesa/main/cpuinfo.c',
199 'MesaLib/src/mesa/main/cpuinfo.h',
200 'MesaLib/src/mesa/main/dd.h',
46 'MesaLib/src/mesa/main/debug.c', 201 'MesaLib/src/mesa/main/debug.c',
202 'MesaLib/src/mesa/main/debug.h',
47 'MesaLib/src/mesa/main/depth.c', 203 'MesaLib/src/mesa/main/depth.c',
204 'MesaLib/src/mesa/main/depth.h',
48 'MesaLib/src/mesa/main/depthstencil.c', 205 'MesaLib/src/mesa/main/depthstencil.c',
49 'MesaLib/src/mesa/main/dispatch.c', 206 'MesaLib/src/mesa/main/depthstencil.h',
207 'MesaLib/src/mesa/main/dispatch.h',
50 'MesaLib/src/mesa/main/dlist.c', 208 'MesaLib/src/mesa/main/dlist.c',
209 'MesaLib/src/mesa/main/dlist.h',
51 'MesaLib/src/mesa/main/dlopen.c', 210 'MesaLib/src/mesa/main/dlopen.c',
211 'MesaLib/src/mesa/main/dlopen.h',
52 'MesaLib/src/mesa/main/drawpix.c', 212 'MesaLib/src/mesa/main/drawpix.c',
213 'MesaLib/src/mesa/main/drawpix.h',
214 'MesaLib/src/mesa/main/drawtex.c',
215 'MesaLib/src/mesa/main/drawtex.h',
53 'MesaLib/src/mesa/main/enable.c', 216 'MesaLib/src/mesa/main/enable.c',
217 'MesaLib/src/mesa/main/enable.h',
54 'MesaLib/src/mesa/main/enums.c', 218 'MesaLib/src/mesa/main/enums.c',
219 'MesaLib/src/mesa/main/enums.h',
55 'MesaLib/src/mesa/main/eval.c', 220 'MesaLib/src/mesa/main/eval.c',
221 'MesaLib/src/mesa/main/eval.h',
56 'MesaLib/src/mesa/main/execmem.c', 222 'MesaLib/src/mesa/main/execmem.c',
57 'MesaLib/src/mesa/main/extensions.c', 223 'MesaLib/src/mesa/main/extensions.c',
224 'MesaLib/src/mesa/main/extensions.h',
58 'MesaLib/src/mesa/main/fbobject.c', 225 'MesaLib/src/mesa/main/fbobject.c',
226 'MesaLib/src/mesa/main/fbobject.h',
59 'MesaLib/src/mesa/main/feedback.c', 227 'MesaLib/src/mesa/main/feedback.c',
228 'MesaLib/src/mesa/main/feedback.h',
60 'MesaLib/src/mesa/main/ffvertex_prog.c', 229 'MesaLib/src/mesa/main/ffvertex_prog.c',
230 'MesaLib/src/mesa/main/ffvertex_prog.h',
61 'MesaLib/src/mesa/main/fog.c', 231 'MesaLib/src/mesa/main/fog.c',
232 'MesaLib/src/mesa/main/fog.h',
62 'MesaLib/src/mesa/main/formats.c', 233 'MesaLib/src/mesa/main/formats.c',
234 'MesaLib/src/mesa/main/formats.h',
63 'MesaLib/src/mesa/main/framebuffer.c', 235 'MesaLib/src/mesa/main/framebuffer.c',
236 'MesaLib/src/mesa/main/framebuffer.h',
64 'MesaLib/src/mesa/main/get.c', 237 'MesaLib/src/mesa/main/get.c',
238 'MesaLib/src/mesa/main/get.h',
65 'MesaLib/src/mesa/main/getstring.c', 239 'MesaLib/src/mesa/main/getstring.c',
66 'MesaLib/src/mesa/glapi/glapi.c', 240 'MesaLib/src/mesa/main/glheader.h',
67 'MesaLib/src/mesa/glapi/glapi_getproc.c',
68 'MesaLib/src/mesa/glapi/glthread.c',
69 'MesaLib/src/mesa/shader/grammar/grammar_mesa.c',
70 'MesaLib/src/mesa/main/hash.c', 241 'MesaLib/src/mesa/main/hash.c',
71 'MesaLib/src/mesa/shader/hash_table.c', 242 'MesaLib/src/mesa/main/hash.h',
72 'MesaLib/src/mesa/main/hint.c', 243 'MesaLib/src/mesa/main/hint.c',
244 'MesaLib/src/mesa/main/hint.h',
73 'MesaLib/src/mesa/main/histogram.c', 245 'MesaLib/src/mesa/main/histogram.c',
246 'MesaLib/src/mesa/main/histogram.h',
74 'MesaLib/src/mesa/main/image.c', 247 'MesaLib/src/mesa/main/image.c',
248 'MesaLib/src/mesa/main/image.h',
75 'MesaLib/src/mesa/main/imports.c', 249 'MesaLib/src/mesa/main/imports.c',
76 'MesaLib/src/mesa/shader/lex.yy.c', 250 'MesaLib/src/mesa/main/imports.h',
77 'MesaLib/src/mesa/main/light.c', 251 'MesaLib/src/mesa/main/light.c',
252 'MesaLib/src/mesa/main/light.h',
78 'MesaLib/src/mesa/main/lines.c', 253 'MesaLib/src/mesa/main/lines.c',
254 'MesaLib/src/mesa/main/lines.h',
255 'MesaLib/src/mesa/main/macros.h',
256 'MesaLib/src/mesa/main/matrix.c',
257 'MesaLib/src/mesa/main/matrix.h',
258 'MesaLib/src/mesa/main/mfeatures.h',
259 'MesaLib/src/mesa/main/mipmap.c',
260 'MesaLib/src/mesa/main/mipmap.h',
261 'MesaLib/src/mesa/main/mm.c',
262 'MesaLib/src/mesa/main/mm.h',
263 'MesaLib/src/mesa/main/mtypes.h',
264 'MesaLib/src/mesa/main/multisample.c',
265 'MesaLib/src/mesa/main/multisample.h',
266 'MesaLib/src/mesa/main/nvprogram.c',
267 'MesaLib/src/mesa/main/nvprogram.h',
268 'MesaLib/src/mesa/main/pixel.c',
269 'MesaLib/src/mesa/main/pixel.h',
270 'MesaLib/src/mesa/main/pixelstore.c',
271 'MesaLib/src/mesa/main/pixelstore.h',
272 'MesaLib/src/mesa/main/points.c',
273 'MesaLib/src/mesa/main/points.h',
274 'MesaLib/src/mesa/main/polygon.c',
275 'MesaLib/src/mesa/main/polygon.h',
276 'MesaLib/src/mesa/main/queryobj.c',
277 'MesaLib/src/mesa/main/queryobj.h',
278 'MesaLib/src/mesa/main/rastpos.c',
279 'MesaLib/src/mesa/main/rastpos.h',
280 'MesaLib/src/mesa/main/readpix.c',
281 'MesaLib/src/mesa/main/readpix.h',
282 'MesaLib/src/mesa/main/remap.c',
283 'MesaLib/src/mesa/main/remap.h',
284 'MesaLib/src/mesa/main/remap_helper.h',
285 'MesaLib/src/mesa/main/renderbuffer.c',
286 'MesaLib/src/mesa/main/renderbuffer.h',
287 'MesaLib/src/mesa/main/scissor.c',
288 'MesaLib/src/mesa/main/scissor.h',
289 'MesaLib/src/mesa/main/shaderapi.c',
290 'MesaLib/src/mesa/main/shaderapi.h',
291 'MesaLib/src/mesa/main/shaderobj.c',
292 'MesaLib/src/mesa/main/shaderobj.h',
293 'MesaLib/src/mesa/main/shared.c',
294 'MesaLib/src/mesa/main/shared.h',
295 'MesaLib/src/mesa/main/simple_list.h',
296 'MesaLib/src/mesa/main/state.c',
297 'MesaLib/src/mesa/main/state.h',
298 'MesaLib/src/mesa/main/stencil.c',
299 'MesaLib/src/mesa/main/stencil.h',
300 'MesaLib/src/mesa/main/syncobj.c',
301 'MesaLib/src/mesa/main/syncobj.h',
302 'MesaLib/src/mesa/main/texcompress.c',
303 'MesaLib/src/mesa/main/texcompress.h',
304 'MesaLib/src/mesa/main/texcompress_fxt1.c',
305 'MesaLib/src/mesa/main/texcompress_fxt1.h',
306 'MesaLib/src/mesa/main/texcompress_s3tc.c',
307 'MesaLib/src/mesa/main/texcompress_s3tc.h',
308 'MesaLib/src/mesa/main/texenv.c',
309 'MesaLib/src/mesa/main/texenv.h',
310 'MesaLib/src/mesa/main/texenvprogram.c',
311 'MesaLib/src/mesa/main/texenvprogram.h',
312 'MesaLib/src/mesa/main/texfetch.c',
313 'MesaLib/src/mesa/main/texfetch.h',
314 'MesaLib/src/mesa/main/texfetch_tmp.h',
315 'MesaLib/src/mesa/main/texformat.c',
316 'MesaLib/src/mesa/main/texformat.h',
317 'MesaLib/src/mesa/main/texgen.c',
318 'MesaLib/src/mesa/main/texgen.h',
319 'MesaLib/src/mesa/main/texgetimage.c',
320 'MesaLib/src/mesa/main/texgetimage.h',
321 'MesaLib/src/mesa/main/teximage.c',
322 'MesaLib/src/mesa/main/teximage.h',
323 'MesaLib/src/mesa/main/texobj.c',
324 'MesaLib/src/mesa/main/texobj.h',
325 'MesaLib/src/mesa/main/texpal.c',
326 'MesaLib/src/mesa/main/texpal.h',
327 'MesaLib/src/mesa/main/texparam.c',
328 'MesaLib/src/mesa/main/texparam.h',
329 'MesaLib/src/mesa/main/texrender.c',
330 'MesaLib/src/mesa/main/texrender.h',
331 'MesaLib/src/mesa/main/texstate.c',
332 'MesaLib/src/mesa/main/texstate.h',
333 'MesaLib/src/mesa/main/texstore.c',
334 'MesaLib/src/mesa/main/texstore.h',
335 'MesaLib/src/mesa/main/transformfeedback.c',
336 'MesaLib/src/mesa/main/transformfeedback.h',
337 'MesaLib/src/mesa/main/uniforms.c',
338 'MesaLib/src/mesa/main/uniforms.h',
339 'MesaLib/src/mesa/main/varray.c',
340 'MesaLib/src/mesa/main/varray.h',
341 'MesaLib/src/mesa/main/version.c',
342 'MesaLib/src/mesa/main/version.h',
343 'MesaLib/src/mesa/main/viewport.c',
344 'MesaLib/src/mesa/main/viewport.h',
345 'MesaLib/src/mesa/main/vtxfmt.c',
346 'MesaLib/src/mesa/main/vtxfmt.h',
347 'MesaLib/src/mesa/main/vtxfmt_tmp.h',
348 'MesaLib/src/mesa/math/m_clip_tmp.h',
349 'MesaLib/src/mesa/math/m_copy_tmp.h',
350 'MesaLib/src/mesa/math/m_debug.h',
79 'MesaLib/src/mesa/math/m_debug_clip.c', 351 'MesaLib/src/mesa/math/m_debug_clip.c',
80 'MesaLib/src/mesa/math/m_debug_norm.c', 352 'MesaLib/src/mesa/math/m_debug_norm.c',
353 'MesaLib/src/mesa/math/m_debug_util.h',
81 'MesaLib/src/mesa/math/m_debug_xform.c', 354 'MesaLib/src/mesa/math/m_debug_xform.c',
355 'MesaLib/src/mesa/math/m_dotprod_tmp.h',
82 'MesaLib/src/mesa/math/m_eval.c', 356 'MesaLib/src/mesa/math/m_eval.c',
357 'MesaLib/src/mesa/math/m_eval.h',
83 'MesaLib/src/mesa/math/m_matrix.c', 358 'MesaLib/src/mesa/math/m_matrix.c',
359 'MesaLib/src/mesa/math/m_matrix.h',
360 'MesaLib/src/mesa/math/m_norm_tmp.h',
361 'MesaLib/src/mesa/math/m_trans_tmp.h',
84 'MesaLib/src/mesa/math/m_translate.c', 362 'MesaLib/src/mesa/math/m_translate.c',
363 'MesaLib/src/mesa/math/m_translate.h',
85 'MesaLib/src/mesa/math/m_vector.c', 364 'MesaLib/src/mesa/math/m_vector.c',
365 'MesaLib/src/mesa/math/m_vector.h',
86 'MesaLib/src/mesa/math/m_xform.c', 366 'MesaLib/src/mesa/math/m_xform.c',
87 'MesaLib/src/mesa/main/matrix.c', 367 'MesaLib/src/mesa/math/m_xform.h',
88 'MesaLib/src/mesa/main/mipmap.c', 368 'MesaLib/src/mesa/math/m_xform_tmp.h',
89 'MesaLib/src/mesa/main/mm.c', 369 'MesaLib/src/mesa/program/arbprogparse.c',
90 'MesaLib/src/mesa/main/multisample.c', 370 'MesaLib/src/mesa/program/arbprogparse.h',
91 'MesaLib/src/mesa/shader/nvfragparse.c', 371 'MesaLib/src/mesa/program/hash_table.c',
92 'MesaLib/src/mesa/shader/nvprogram.c', 372 'MesaLib/src/mesa/program/hash_table.h',
93 'MesaLib/src/mesa/shader/nvvertparse.c', 373 'MesaLib/src/mesa/program/ir_to_mesa.cpp',
94 'MesaLib/src/mesa/main/pixel.c', 374 'MesaLib/src/mesa/program/ir_to_mesa.h',
95 'MesaLib/src/mesa/main/pixelstore.c', 375 'MesaLib/src/mesa/program/lex.yy.c',
96 'MesaLib/src/mesa/main/points.c', 376 'MesaLib/src/mesa/program/nvfragparse.c',
97 'MesaLib/src/mesa/main/polygon.c', 377 'MesaLib/src/mesa/program/nvfragparse.h',
98 'MesaLib/src/mesa/shader/prog_cache.c', 378 'MesaLib/src/mesa/program/nvvertparse.c',
99 'MesaLib/src/mesa/shader/prog_execute.c', 379 'MesaLib/src/mesa/program/nvvertparse.h',
100 'MesaLib/src/mesa/shader/prog_instruction.c', 380 'MesaLib/src/mesa/program/prog_cache.c',
101 'MesaLib/src/mesa/shader/prog_noise.c', 381 'MesaLib/src/mesa/program/prog_cache.h',
102 'MesaLib/src/mesa/shader/prog_optimize.c', 382 'MesaLib/src/mesa/program/prog_execute.c',
103 'MesaLib/src/mesa/shader/prog_parameter.c', 383 'MesaLib/src/mesa/program/prog_execute.h',
104 'MesaLib/src/mesa/shader/prog_parameter_layout.c', 384 'MesaLib/src/mesa/program/prog_instruction.c',
105 'MesaLib/src/mesa/shader/prog_print.c', 385 'MesaLib/src/mesa/program/prog_instruction.h',
106 'MesaLib/src/mesa/shader/prog_statevars.c', 386 'MesaLib/src/mesa/program/prog_noise.c',
107 'MesaLib/src/mesa/shader/prog_uniform.c', 387 'MesaLib/src/mesa/program/prog_noise.h',
108 'MesaLib/src/mesa/shader/program.c', 388 'MesaLib/src/mesa/program/prog_optimize.c',
109 'MesaLib/src/mesa/shader/program_parse.tab.c', 389 'MesaLib/src/mesa/program/prog_optimize.h',
110 'MesaLib/src/mesa/shader/program_parse_extra.c', 390 'MesaLib/src/mesa/program/prog_parameter.c',
111 'MesaLib/src/mesa/shader/programopt.c', 391 'MesaLib/src/mesa/program/prog_parameter.h',
112 'MesaLib/src/mesa/main/queryobj.c', 392 'MesaLib/src/mesa/program/prog_parameter_layout.c',
113 'MesaLib/src/mesa/main/rastpos.c', 393 'MesaLib/src/mesa/program/prog_parameter_layout.h',
114 'MesaLib/src/mesa/main/rbadaptors.c', 394 'MesaLib/src/mesa/program/prog_print.c',
115 'MesaLib/src/mesa/main/readpix.c', 395 'MesaLib/src/mesa/program/prog_print.h',
116 'MesaLib/src/mesa/main/remap.c', 396 'MesaLib/src/mesa/program/prog_statevars.c',
117 'MesaLib/src/mesa/main/renderbuffer.c', 397 'MesaLib/src/mesa/program/prog_statevars.h',
398 'MesaLib/src/mesa/program/prog_uniform.c',
399 'MesaLib/src/mesa/program/prog_uniform.h',
400 'MesaLib/src/mesa/program/program.c',
401 'MesaLib/src/mesa/program/program.h',
402 'MesaLib/src/mesa/program/program_parse.tab.c',
403 'MesaLib/src/mesa/program/program_parse.tab.h',
404 'MesaLib/src/mesa/program/program_parse_extra.c',
405 'MesaLib/src/mesa/program/program_parser.h',
406 'MesaLib/src/mesa/program/programopt.c',
407 'MesaLib/src/mesa/program/programopt.h',
408 'MesaLib/src/mesa/program/symbol_table.c',
409 'MesaLib/src/mesa/program/symbol_table.h',
118 'MesaLib/src/mesa/swrast/s_aaline.c', 410 'MesaLib/src/mesa/swrast/s_aaline.c',
411 'MesaLib/src/mesa/swrast/s_aaline.h',
412 'MesaLib/src/mesa/swrast/s_aalinetemp.h',
119 'MesaLib/src/mesa/swrast/s_aatriangle.c', 413 'MesaLib/src/mesa/swrast/s_aatriangle.c',
414 'MesaLib/src/mesa/swrast/s_aatriangle.h',
415 'MesaLib/src/mesa/swrast/s_aatritemp.h',
120 'MesaLib/src/mesa/swrast/s_accum.c', 416 'MesaLib/src/mesa/swrast/s_accum.c',
417 'MesaLib/src/mesa/swrast/s_accum.h',
121 'MesaLib/src/mesa/swrast/s_alpha.c', 418 'MesaLib/src/mesa/swrast/s_alpha.c',
419 'MesaLib/src/mesa/swrast/s_alpha.h',
122 'MesaLib/src/mesa/swrast/s_atifragshader.c', 420 'MesaLib/src/mesa/swrast/s_atifragshader.c',
421 'MesaLib/src/mesa/swrast/s_atifragshader.h',
123 'MesaLib/src/mesa/swrast/s_bitmap.c', 422 'MesaLib/src/mesa/swrast/s_bitmap.c',
124 'MesaLib/src/mesa/swrast/s_blend.c', 423 'MesaLib/src/mesa/swrast/s_blend.c',
424 'MesaLib/src/mesa/swrast/s_blend.h',
125 'MesaLib/src/mesa/swrast/s_blit.c', 425 'MesaLib/src/mesa/swrast/s_blit.c',
126 'MesaLib/src/mesa/swrast/s_clear.c', 426 'MesaLib/src/mesa/swrast/s_clear.c',
127 'MesaLib/src/mesa/swrast/s_context.c', 427 'MesaLib/src/mesa/swrast/s_context.c',
428 'MesaLib/src/mesa/swrast/s_context.h',
128 'MesaLib/src/mesa/swrast/s_copypix.c', 429 'MesaLib/src/mesa/swrast/s_copypix.c',
129 'MesaLib/src/mesa/swrast/s_depth.c', 430 'MesaLib/src/mesa/swrast/s_depth.c',
431 'MesaLib/src/mesa/swrast/s_depth.h',
130 'MesaLib/src/mesa/swrast/s_drawpix.c', 432 'MesaLib/src/mesa/swrast/s_drawpix.c',
131 'MesaLib/src/mesa/swrast/s_feedback.c', 433 'MesaLib/src/mesa/swrast/s_feedback.c',
434 'MesaLib/src/mesa/swrast/s_feedback.h',
132 'MesaLib/src/mesa/swrast/s_fog.c', 435 'MesaLib/src/mesa/swrast/s_fog.c',
436 'MesaLib/src/mesa/swrast/s_fog.h',
133 'MesaLib/src/mesa/swrast/s_fragprog.c', 437 'MesaLib/src/mesa/swrast/s_fragprog.c',
438 'MesaLib/src/mesa/swrast/s_fragprog.h',
134 'MesaLib/src/mesa/swrast/s_lines.c', 439 'MesaLib/src/mesa/swrast/s_lines.c',
440 'MesaLib/src/mesa/swrast/s_lines.h',
441 'MesaLib/src/mesa/swrast/s_linetemp.h',
135 'MesaLib/src/mesa/swrast/s_logic.c', 442 'MesaLib/src/mesa/swrast/s_logic.c',
443 'MesaLib/src/mesa/swrast/s_logic.h',
136 'MesaLib/src/mesa/swrast/s_masking.c', 444 'MesaLib/src/mesa/swrast/s_masking.c',
445 'MesaLib/src/mesa/swrast/s_masking.h',
137 'MesaLib/src/mesa/swrast/s_points.c', 446 'MesaLib/src/mesa/swrast/s_points.c',
447 'MesaLib/src/mesa/swrast/s_points.h',
138 'MesaLib/src/mesa/swrast/s_readpix.c', 448 'MesaLib/src/mesa/swrast/s_readpix.c',
139 'MesaLib/src/mesa/swrast/s_span.c', 449 'MesaLib/src/mesa/swrast/s_span.c',
450 'MesaLib/src/mesa/swrast/s_span.h',
451 'MesaLib/src/mesa/swrast/s_spantemp.h',
140 'MesaLib/src/mesa/swrast/s_stencil.c', 452 'MesaLib/src/mesa/swrast/s_stencil.c',
453 'MesaLib/src/mesa/swrast/s_stencil.h',
141 'MesaLib/src/mesa/swrast/s_texcombine.c', 454 'MesaLib/src/mesa/swrast/s_texcombine.c',
455 'MesaLib/src/mesa/swrast/s_texcombine.h',
142 'MesaLib/src/mesa/swrast/s_texfilter.c', 456 'MesaLib/src/mesa/swrast/s_texfilter.c',
457 'MesaLib/src/mesa/swrast/s_texfilter.h',
143 'MesaLib/src/mesa/swrast/s_triangle.c', 458 'MesaLib/src/mesa/swrast/s_triangle.c',
459 'MesaLib/src/mesa/swrast/s_triangle.h',
460 'MesaLib/src/mesa/swrast/s_trispan.h',
461 'MesaLib/src/mesa/swrast/s_tritemp.h',
144 'MesaLib/src/mesa/swrast/s_zoom.c', 462 'MesaLib/src/mesa/swrast/s_zoom.c',
145 'MesaLib/src/mesa/main/scissor.c', 463 'MesaLib/src/mesa/swrast/s_zoom.h',
146 'MesaLib/src/mesa/shader/shader_api.c', 464 'MesaLib/src/mesa/swrast/swrast.h',
147 'MesaLib/src/mesa/main/shaders.c',
148 'MesaLib/src/mesa/main/shared.c',
149 'MesaLib/src/mesa/shader/slang/slang_builtin.c',
150 'MesaLib/src/mesa/shader/slang/slang_codegen.c',
151 'MesaLib/src/mesa/shader/slang/slang_compile.c',
152 'MesaLib/src/mesa/shader/slang/slang_compile_function.c',
153 'MesaLib/src/mesa/shader/slang/slang_compile_operation.c',
154 'MesaLib/src/mesa/shader/slang/slang_compile_struct.c',
155 'MesaLib/src/mesa/shader/slang/slang_compile_variable.c',
156 'MesaLib/src/mesa/shader/slang/slang_emit.c',
157 'MesaLib/src/mesa/shader/slang/slang_ir.c',
158 'MesaLib/src/mesa/shader/slang/slang_label.c',
159 'MesaLib/src/mesa/shader/slang/slang_link.c',
160 'MesaLib/src/mesa/shader/slang/slang_log.c',
161 'MesaLib/src/mesa/shader/slang/slang_mem.c',
162 'MesaLib/src/mesa/shader/slang/slang_preprocess.c',
163 'MesaLib/src/mesa/shader/slang/slang_print.c',
164 'MesaLib/src/mesa/shader/slang/slang_simplify.c',
165 'MesaLib/src/mesa/shader/slang/slang_storage.c',
166 'MesaLib/src/mesa/shader/slang/slang_typeinfo.c',
167 'MesaLib/src/mesa/shader/slang/slang_utility.c',
168 'MesaLib/src/mesa/shader/slang/slang_vartable.c',
169 'MesaLib/src/mesa/swrast_setup/ss_context.c', 465 'MesaLib/src/mesa/swrast_setup/ss_context.c',
466 'MesaLib/src/mesa/swrast_setup/ss_context.h',
170 'MesaLib/src/mesa/swrast_setup/ss_triangle.c', 467 'MesaLib/src/mesa/swrast_setup/ss_triangle.c',
171 'MesaLib/src/mesa/main/state.c', 468 'MesaLib/src/mesa/swrast_setup/ss_triangle.h',
172 'MesaLib/src/mesa/main/stencil.c', 469 'MesaLib/src/mesa/swrast_setup/ss_tritmp.h',
173 'MesaLib/src/mesa/shader/symbol_table.c', 470 'MesaLib/src/mesa/swrast_setup/ss_vb.h',
174 'MesaLib/src/mesa/main/syncobj.c', 471 'MesaLib/src/mesa/swrast_setup/swrast_setup.h',
175 'MesaLib/src/mesa/tnl/t_context.c', 472 'MesaLib/src/mesa/tnl/t_context.c',
473 'MesaLib/src/mesa/tnl/t_context.h',
176 'MesaLib/src/mesa/tnl/t_draw.c', 474 'MesaLib/src/mesa/tnl/t_draw.c',
177 'MesaLib/src/mesa/tnl/t_pipeline.c', 475 'MesaLib/src/mesa/tnl/t_pipeline.c',
476 'MesaLib/src/mesa/tnl/t_pipeline.h',
178 'MesaLib/src/mesa/tnl/t_rasterpos.c', 477 'MesaLib/src/mesa/tnl/t_rasterpos.c',
478 'MesaLib/src/mesa/tnl/t_vb_cliptmp.h',
179 'MesaLib/src/mesa/tnl/t_vb_cull.c', 479 'MesaLib/src/mesa/tnl/t_vb_cull.c',
180 'MesaLib/src/mesa/tnl/t_vb_fog.c', 480 'MesaLib/src/mesa/tnl/t_vb_fog.c',
181 'MesaLib/src/mesa/tnl/t_vb_light.c', 481 'MesaLib/src/mesa/tnl/t_vb_light.c',
482 'MesaLib/src/mesa/tnl/t_vb_lighttmp.h',
182 'MesaLib/src/mesa/tnl/t_vb_normals.c', 483 'MesaLib/src/mesa/tnl/t_vb_normals.c',
183 'MesaLib/src/mesa/tnl/t_vb_points.c', 484 'MesaLib/src/mesa/tnl/t_vb_points.c',
184 'MesaLib/src/mesa/tnl/t_vb_program.c', 485 'MesaLib/src/mesa/tnl/t_vb_program.c',
185 'MesaLib/src/mesa/tnl/t_vb_render.c', 486 'MesaLib/src/mesa/tnl/t_vb_render.c',
487 'MesaLib/src/mesa/tnl/t_vb_rendertmp.h',
186 'MesaLib/src/mesa/tnl/t_vb_texgen.c', 488 'MesaLib/src/mesa/tnl/t_vb_texgen.c',
187 'MesaLib/src/mesa/tnl/t_vb_texmat.c', 489 'MesaLib/src/mesa/tnl/t_vb_texmat.c',
188 'MesaLib/src/mesa/tnl/t_vb_vertex.c', 490 'MesaLib/src/mesa/tnl/t_vb_vertex.c',
189 'MesaLib/src/mesa/tnl/t_vertex.c', 491 'MesaLib/src/mesa/tnl/t_vertex.c',
492 'MesaLib/src/mesa/tnl/t_vertex.h',
190 'MesaLib/src/mesa/tnl/t_vertex_generic.c', 493 'MesaLib/src/mesa/tnl/t_vertex_generic.c',
494 'MesaLib/src/mesa/tnl/t_vertex_sse.c',
191 'MesaLib/src/mesa/tnl/t_vp_build.c', 495 'MesaLib/src/mesa/tnl/t_vp_build.c',
192 'MesaLib/src/mesa/main/texcompress.c', 496 'MesaLib/src/mesa/tnl/t_vp_build.h',
193 'MesaLib/src/mesa/main/texcompress_fxt1.c', 497 'MesaLib/src/mesa/tnl/tnl.h',
194 'MesaLib/src/mesa/main/texcompress_s3tc.c', 498 'MesaLib/src/mesa/vbo/vbo.h',
195 'MesaLib/src/mesa/main/texenv.c', 499 'MesaLib/src/mesa/vbo/vbo_attrib.h',
196 'MesaLib/src/mesa/main/texenvprogram.c', 500 'MesaLib/src/mesa/vbo/vbo_attrib_tmp.h',
197 'MesaLib/src/mesa/main/texfetch.c',
198 'MesaLib/src/mesa/main/texformat.c',
199 'MesaLib/src/mesa/main/texgen.c',
200 'MesaLib/src/mesa/main/texgetimage.c',
201 'MesaLib/src/mesa/main/teximage.c',
202 'MesaLib/src/mesa/main/texobj.c',
203 'MesaLib/src/mesa/main/texparam.c',
204 'MesaLib/src/mesa/main/texrender.c',
205 'MesaLib/src/mesa/main/texstate.c',
206 'MesaLib/src/mesa/main/texstore.c',
207 'MesaLib/src/mesa/main/varray.c',
208 'MesaLib/src/mesa/vbo/vbo_context.c', 501 'MesaLib/src/mesa/vbo/vbo_context.c',
502 'MesaLib/src/mesa/vbo/vbo_context.h',
209 'MesaLib/src/mesa/vbo/vbo_exec.c', 503 'MesaLib/src/mesa/vbo/vbo_exec.c',
504 'MesaLib/src/mesa/vbo/vbo_exec.h',
210 'MesaLib/src/mesa/vbo/vbo_exec_api.c', 505 'MesaLib/src/mesa/vbo/vbo_exec_api.c',
211 'MesaLib/src/mesa/vbo/vbo_exec_array.c', 506 'MesaLib/src/mesa/vbo/vbo_exec_array.c',
212 'MesaLib/src/mesa/vbo/vbo_exec_draw.c', 507 'MesaLib/src/mesa/vbo/vbo_exec_draw.c',
213 'MesaLib/src/mesa/vbo/vbo_exec_eval.c', 508 'MesaLib/src/mesa/vbo/vbo_exec_eval.c',
214 'MesaLib/src/mesa/vbo/vbo_rebase.c', 509 'MesaLib/src/mesa/vbo/vbo_rebase.c',
215 'MesaLib/src/mesa/vbo/vbo_save.c', 510 'MesaLib/src/mesa/vbo/vbo_save.c',
511 'MesaLib/src/mesa/vbo/vbo_save.h',
216 'MesaLib/src/mesa/vbo/vbo_save_api.c', 512 'MesaLib/src/mesa/vbo/vbo_save_api.c',
217 'MesaLib/src/mesa/vbo/vbo_save_draw.c', 513 'MesaLib/src/mesa/vbo/vbo_save_draw.c',
218 'MesaLib/src/mesa/vbo/vbo_save_loopback.c', 514 'MesaLib/src/mesa/vbo/vbo_save_loopback.c',
219 'MesaLib/src/mesa/vbo/vbo_split.c', 515 'MesaLib/src/mesa/vbo/vbo_split.c',
516 'MesaLib/src/mesa/vbo/vbo_split.h',
220 'MesaLib/src/mesa/vbo/vbo_split_copy.c', 517 'MesaLib/src/mesa/vbo/vbo_split_copy.c',
221 'MesaLib/src/mesa/vbo/vbo_split_inplace.c', 518 'MesaLib/src/mesa/vbo/vbo_split_inplace.c',
222 'MesaLib/src/mesa/main/viewport.c',
223 'MesaLib/src/mesa/main/vtxfmt.c',
224 'MesaLib/src/mesa/main/accum.h',
225 'MesaLib/src/mesa/main/api_arrayelt.h',
226 'MesaLib/src/mesa/main/api_eval.h',
227 'MesaLib/src/mesa/main/api_exec.h',
228 'MesaLib/src/mesa/main/api_loopback.h',
229 'MesaLib/src/mesa/main/api_noop.h',
230 'MesaLib/src/mesa/main/api_validate.h',
231 'MesaLib/src/mesa/shader/arbprogparse.h',
232 'MesaLib/src/mesa/shader/arbprogram.h',
233 'MesaLib/src/mesa/shader/arbprogram_syn.h',
234 'MesaLib/src/mesa/main/arrayobj.h',
235 'MesaLib/src/mesa/shader/atifragshader.h',
236 'MesaLib/src/mesa/main/attrib.h',
237 'MesaLib/src/mesa/main/bitset.h',
238 'MesaLib/src/mesa/main/blend.h',
239 'MesaLib/src/mesa/main/bufferobj.h',
240 'MesaLib/src/mesa/main/buffers.h',
241 'MesaLib/src/mesa/main/clear.h',
242 'MesaLib/src/mesa/main/clip.h',
243 'MesaLib/src/mesa/main/colormac.h',
244 'MesaLib/src/mesa/main/colortab.h',
245 'MesaLib/src/mesa/main/config.h',
246 'MesaLib/src/mesa/main/context.h',
247 'MesaLib/src/mesa/main/convolve.h',
248 'MesaLib/src/mesa/main/cpuinfo.h',
249 'MesaLib/src/mesa/main/dd.h',
250 'MesaLib/src/mesa/main/debug.h',
251 'MesaLib/src/mesa/main/depth.h',
252 'MesaLib/src/mesa/main/depthstencil.h',
253 'MesaLib/src/mesa/main/dlist.h',
254 'MesaLib/src/mesa/main/dlopen.h',
255 'MesaLib/src/mesa/main/drawpix.h',
256 'MesaLib/src/mesa/main/enable.h',
257 'MesaLib/src/mesa/main/enums.h',
258 'MesaLib/src/mesa/main/eval.h',
259 'MesaLib/src/mesa/main/extensions.h',
260 'MesaLib/src/mesa/main/fbobject.h',
261 'MesaLib/src/mesa/main/feedback.h',
262 'MesaLib/src/mesa/main/ffvertex_prog.h',
263 'MesaLib/src/mesa/main/fog.h',
264 'MesaLib/src/mesa/main/framebuffer.h',
265 'MesaLib/src/mesa/main/get.h',
266 'MesaLib/src/mesa/glapi/glapi.h',
267 'MesaLib/src/mesa/glapi/glapioffsets.h',
268 'MesaLib/src/mesa/glapi/glapitable.h',
269 'MesaLib/src/mesa/glapi/glapitemp.h',
270 'MesaLib/src/mesa/main/glheader.h',
271 'MesaLib/src/mesa/glapi/glprocs.h',
272 'MesaLib/src/mesa/glapi/glthread.h',
273 'MesaLib/src/mesa/shader/grammar/grammar.h',
274 'MesaLib/src/mesa/shader/grammar/grammar_crt.h',
275 'MesaLib/src/mesa/shader/grammar/grammar_mesa.h',
276 'MesaLib/src/mesa/shader/grammar/grammar_syn.h',
277 'MesaLib/src/mesa/main/hash.h',
278 'MesaLib/src/mesa/shader/hash_table.h',
279 'MesaLib/src/mesa/main/hint.h',
280 'MesaLib/src/mesa/main/histogram.h',
281 'MesaLib/src/mesa/main/image.h',
282 'MesaLib/src/mesa/main/imports.h',
283 'MesaLib/src/mesa/main/light.h',
284 'MesaLib/src/mesa/main/lines.h',
285 'MesaLib/src/mesa/math/m_clip_tmp.h',
286 'MesaLib/src/mesa/math/m_copy_tmp.h',
287 'MesaLib/src/mesa/math/m_debug.h',
288 'MesaLib/src/mesa/math/m_debug_util.h',
289 'MesaLib/src/mesa/math/m_dotprod_tmp.h',
290 'MesaLib/src/mesa/math/m_eval.h',
291 'MesaLib/src/mesa/math/m_matrix.h',
292 'MesaLib/src/mesa/math/m_norm_tmp.h',
293 'MesaLib/src/mesa/math/m_trans_tmp.h',
294 'MesaLib/src/mesa/math/m_translate.h',
295 'MesaLib/src/mesa/math/m_vector.h',
296 'MesaLib/src/mesa/math/m_xform.h',
297 'MesaLib/src/mesa/math/m_xform_tmp.h',
298 'MesaLib/src/mesa/main/macros.h',
299 'MesaLib/src/mesa/math/mathmod.h',
300 'MesaLib/src/mesa/main/matrix.h',
301 'MesaLib/src/mesa/main/mcompiler.h',
302 'MesaLib/src/mesa/main/mfeatures.h',
303 'MesaLib/src/mesa/main/mipmap.h',
304 'MesaLib/src/mesa/main/mm.h',
305 'MesaLib/src/mesa/main/mtypes.h',
306 'MesaLib/src/mesa/main/multisample.h',
307 'MesaLib/src/mesa/shader/nvfragparse.h',
308 'MesaLib/src/mesa/shader/nvprogram.h',
309 'MesaLib/src/mesa/shader/nvvertparse.h',
310 'MesaLib/src/mesa/main/pixel.h',
311 'MesaLib/src/mesa/main/pixelstore.h',
312 'MesaLib/src/mesa/main/points.h',
313 'MesaLib/src/mesa/main/polygon.h',
314 'MesaLib/src/mesa/shader/prog_execute.h',
315 'MesaLib/src/mesa/shader/prog_instruction.h',
316 'MesaLib/src/mesa/shader/prog_noise.h',
317 'MesaLib/src/mesa/shader/prog_optimize.h',
318 'MesaLib/src/mesa/shader/prog_parameter.h',
319 'MesaLib/src/mesa/shader/prog_parameter_layout.h',
320 'MesaLib/src/mesa/shader/prog_print.h',
321 'MesaLib/src/mesa/shader/prog_statevars.h',
322 'MesaLib/src/mesa/shader/prog_uniform.h',
323 'MesaLib/src/mesa/shader/program.h',
324 'MesaLib/src/mesa/shader/program_parse.tab.h',
325 'MesaLib/src/mesa/shader/programopt.h',
326 'MesaLib/src/mesa/main/queryobj.h',
327 'MesaLib/src/mesa/main/rastpos.h',
328 'MesaLib/src/mesa/main/rbadaptors.h',
329 'MesaLib/src/mesa/main/readpix.h',
330 'MesaLib/src/mesa/main/remap.h',
331 'MesaLib/src/mesa/main/renderbuffer.h',
332 'MesaLib/src/mesa/swrast/s_aaline.h',
333 'MesaLib/src/mesa/swrast/s_aalinetemp.h',
334 'MesaLib/src/mesa/swrast/s_aatriangle.h',
335 'MesaLib/src/mesa/swrast/s_aatritemp.h',
336 'MesaLib/src/mesa/swrast/s_accum.h',
337 'MesaLib/src/mesa/swrast/s_alpha.h',
338 'MesaLib/src/mesa/swrast/s_atifragshader.h',
339 'MesaLib/src/mesa/swrast/s_blend.h',
340 'MesaLib/src/mesa/swrast/s_context.h',
341 'MesaLib/src/mesa/swrast/s_depth.h',
342 'MesaLib/src/mesa/swrast/s_drawpix.h',
343 'MesaLib/src/mesa/swrast/s_feedback.h',
344 'MesaLib/src/mesa/swrast/s_fog.h',
345 'MesaLib/src/mesa/swrast/s_fragprog.h',
346 'MesaLib/src/mesa/swrast/s_lines.h',
347 'MesaLib/src/mesa/swrast/s_linetemp.h',
348 'MesaLib/src/mesa/swrast/s_logic.h',
349 'MesaLib/src/mesa/swrast/s_masking.h',
350 'MesaLib/src/mesa/swrast/s_points.h',
351 'MesaLib/src/mesa/swrast/s_pointtemp.h',
352 'MesaLib/src/mesa/swrast/s_span.h',
353 'MesaLib/src/mesa/swrast/s_spantemp.h',
354 'MesaLib/src/mesa/swrast/s_stencil.h',
355 'MesaLib/src/mesa/swrast/s_texcombine.h',
356 'MesaLib/src/mesa/swrast/s_texfilter.h',
357 'MesaLib/src/mesa/swrast/s_triangle.h',
358 'MesaLib/src/mesa/swrast/s_trispan.h',
359 'MesaLib/src/mesa/swrast/s_tritemp.h',
360 'MesaLib/src/mesa/swrast/s_zoom.h',
361 'MesaLib/src/mesa/main/scissor.h',
362 'MesaLib/src/mesa/shader/shader_api.h',
363 'MesaLib/src/mesa/main/shaders.h',
364 'MesaLib/src/mesa/main/shared.h',
365 'MesaLib/src/mesa/main/simple_list.h',
366 'MesaLib/src/mesa/shader/slang/slang_builtin.h',
367 'MesaLib/src/mesa/shader/slang/slang_codegen.h',
368 'MesaLib/src/mesa/shader/slang/slang_compile.h',
369 'MesaLib/src/mesa/shader/slang/slang_compile_function.h',
370 'MesaLib/src/mesa/shader/slang/slang_compile_operation.h',
371 'MesaLib/src/mesa/shader/slang/slang_compile_struct.h',
372 'MesaLib/src/mesa/shader/slang/slang_compile_variable.h',
373 'MesaLib/src/mesa/shader/slang/slang_emit.h',
374 'MesaLib/src/mesa/shader/slang/slang_ir.h',
375 'MesaLib/src/mesa/shader/slang/slang_label.h',
376 'MesaLib/src/mesa/shader/slang/slang_link.h',
377 'MesaLib/src/mesa/shader/slang/slang_log.h',
378 'MesaLib/src/mesa/shader/slang/slang_mem.h',
379 'MesaLib/src/mesa/shader/slang/slang_preprocess.h',
380 'MesaLib/src/mesa/shader/slang/slang_print.h',
381 'MesaLib/src/mesa/shader/slang/slang_simplify.h',
382 'MesaLib/src/mesa/shader/slang/slang_storage.h',
383 'MesaLib/src/mesa/shader/slang/slang_typeinfo.h',
384 'MesaLib/src/mesa/shader/slang/slang_utility.h',
385 'MesaLib/src/mesa/shader/slang/slang_vartable.h',
386 'MesaLib/src/mesa/swrast_setup/ss_context.h',
387 'MesaLib/src/mesa/swrast_setup/ss_triangle.h',
388 'MesaLib/src/mesa/swrast_setup/ss_tritmp.h',
389 'MesaLib/src/mesa/swrast_setup/ss_vb.h',
390 'MesaLib/src/mesa/main/state.h',
391 'MesaLib/src/mesa/main/stencil.h',
392 'MesaLib/src/mesa/swrast/swrast.h',
393 'MesaLib/src/mesa/swrast_setup/swrast_setup.h',
394 'MesaLib/src/mesa/shader/symbol_table.h',
395 'MesaLib/src/mesa/main/syncobj.h',
396 'MesaLib/src/mesa/tnl/t_context.h',
397 'MesaLib/src/mesa/tnl/t_pipeline.h',
398 'MesaLib/src/mesa/tnl/t_vb_cliptmp.h',
399 'MesaLib/src/mesa/tnl/t_vb_lighttmp.h',
400 'MesaLib/src/mesa/tnl/t_vb_rendertmp.h',
401 'MesaLib/src/mesa/tnl/t_vertex.h',
402 'MesaLib/src/mesa/tnl/t_vp_build.h',
403 'MesaLib/src/mesa/main/texcompress.h',
404 'MesaLib/src/mesa/main/texenv.h',
405 'MesaLib/src/mesa/main/texenvprogram.h',
406 'MesaLib/src/mesa/main/texfetch.h',
407 'MesaLib/src/mesa/main/texformat.h',
408 'MesaLib/src/mesa/main/texfetch_tmp.h',
409 'MesaLib/src/mesa/main/texgen.h',
410 'MesaLib/src/mesa/main/texgetimage.h',
411 'MesaLib/src/mesa/main/teximage.h',
412 'MesaLib/src/mesa/main/texobj.h',
413 'MesaLib/src/mesa/main/texparam.h',
414 'MesaLib/src/mesa/main/texrender.h',
415 'MesaLib/src/mesa/main/texstate.h',
416 'MesaLib/src/mesa/main/texstore.h',
417 'MesaLib/src/mesa/tnl/tnl.h',
418 'MesaLib/src/mesa/main/varray.h',
419 'MesaLib/src/mesa/vbo/vbo.h',
420 'MesaLib/src/mesa/vbo/vbo_attrib.h',
421 'MesaLib/src/mesa/vbo/vbo_attrib_tmp.h',
422 'MesaLib/src/mesa/vbo/vbo_context.h',
423 'MesaLib/src/mesa/vbo/vbo_exec.h',
424 'MesaLib/src/mesa/vbo/vbo_save.h',
425 'MesaLib/src/mesa/vbo/vbo_split.h',
426 'MesaLib/src/mesa/main/version.h',
427 'MesaLib/src/mesa/main/viewport.h',
428 'MesaLib/src/mesa/main/vtxfmt.h',
429 'MesaLib/src/mesa/main/vtxfmt_tmp.h',
430 ], 519 ],
431 }, 520 },
432 # Building this target will hide the native OpenGL shared library and 521 # Building this target will hide the native OpenGL shared library and
433 # replace it with a slow software renderer. 522 # replace it with a slow software renderer.
434 { 523 {
435 'target_name': 'osmesa', 524 'target_name': 'osmesa',
436 'type': 'loadable_module', 525 'type': 'loadable_module',
437 'mac_bundle': 0, 526 'mac_bundle': 0,
438 'dependencies': [ 527 'dependencies': [
439 'mesa', 528 'mesa',
440 ], 529 ],
530 # Fixes link problems on Mac OS X with missing __cxa_pure_virtual.
531 'conditions': [
532 ['OS=="mac"', {
533 'sources': [
534 'MesaLib/src/mesa/drivers/osmesa/empty.cpp',
535 ],
536 }],
537 ],
441 'include_dirs': [ 538 'include_dirs': [
442 'MesaLib/include', 539 'MesaLib/include',
540 'MesaLib/src/mapi',
443 'MesaLib/src/mesa', 541 'MesaLib/src/mesa',
444 'MesaLib/src/mesa/drivers', 542 'MesaLib/src/mesa/drivers',
445 ], 543 ],
446 'sources': [ 544 'sources': [
447 'MesaLib/src/mesa/drivers/common/driverfuncs.c', 545 'MesaLib/src/mesa/drivers/common/driverfuncs.c',
448 'MesaLib/src/mesa/drivers/common/driverfuncs.h', 546 'MesaLib/src/mesa/drivers/common/driverfuncs.h',
449 'MesaLib/src/mesa/drivers/common/meta.c', 547 'MesaLib/src/mesa/drivers/common/meta.c',
450 'MesaLib/src/mesa/drivers/common/meta.h', 548 'MesaLib/src/mesa/drivers/common/meta.h',
451 'MesaLib/src/mesa/drivers/osmesa/osmesa.c', 549 'MesaLib/src/mesa/drivers/osmesa/osmesa.c',
452 'MesaLib/src/mesa/drivers/osmesa/osmesa.def', 550 'MesaLib/src/mesa/drivers/osmesa/osmesa.def',
453 ], 551 ],
454 }, 552 },
455 ], 553 ],
456 } 554 }
OLDNEW
« no previous file with comments | « third_party/mesa/chromium.patch ('k') | third_party/talloc/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698