VirtualBox

source: vbox/trunk/src/VBox/Additions/3D/mesa/Makefile.kmk@ 95262

Last change on this file since 95262 was 95262, checked in by vboxsync, 3 years ago

Additions/3D: update to mesa-21.3.8. bugref:9845

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 80.5 KB
Line 
1# $Id: Makefile.kmk 95262 2022-06-13 17:26:17Z vboxsync $
2## @file
3# Sub-Makefile for the VirtualBox Guest Mesa 3D components
4#
5
6#
7# Copyright (C) 2016-2022 Oracle Corporation
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17
18SUB_DEPTH = ../../../../..
19include $(KBUILD_PATH)/subheader.kmk
20
21VBOX_MESA_SUBDIR = $(VBOX_MESA)
22VBOX_MESA_PATH = $(PATH_ROOT)/src/VBox/Additions/3D/mesa/$(VBOX_MESA_SUBDIR)
23
24PYTHON_CMD = $(VBOX_BLD_PYTHON) -B
25
26#
27# Target lists.
28#
29LIBRARIES.win += \
30 VBoxMesaUtilLib \
31 VBoxMesaLib \
32 VBoxMesaWglLib \
33 VBoxMesaGalliumAuxLib \
34 VBoxMesaNineLib \
35 VBoxMesaSVGALib \
36 VBoxMesaSVGAWinsysLib
37LIBRARIES.win.amd64 += \
38 VBoxMesaUtilLib-x86 \
39 VBoxMesaLib-x86 \
40 VBoxMesaWglLib-x86 \
41 VBoxMesaGalliumAuxLib-x86 \
42 VBoxMesaNineLib-x86 \
43 VBoxMesaSVGALib-x86 \
44 VBoxMesaSVGAWinsysLib-x86
45
46
47TEMPLATE_VBoxMesa3DGuestR3Lib = VBox Mesa 3D Guest User Mode Library
48TEMPLATE_VBoxMesa3DGuestR3Lib_EXTENDS = VBoxMesa3DGuestR3Dll
49TEMPLATE_VBoxMesa3DGuestR3Lib_INST = $(INST_ADDITIONS_LIB)
50ifeq ($(KBUILD_TARGET),win)
51# Do not treat warnings as errors, because Mesa code produces too many warnings with MSC.
52TEMPLATE_VBoxMesa3DGuestR3Lib_CFLAGS = $(filter-out -WX,$(TEMPLATE_VBoxMesa3DGuestR3Dll_CFLAGS))
53TEMPLATE_VBoxMesa3DGuestR3Lib_CXXFLAGS = $(filter-out -WX,$(TEMPLATE_VBoxMesa3DGuestR3Dll_CXXFLAGS))
54# -wd4005: vcc120: '__useHeader' : macro redefinition
55# -wd4013: undefined; assuming extern returning int
56# -wd4018: signed/unsigned mismatch
57# -wd4054: 'type cast' : from function pointer to data pointer 'void *'
58# -wd4057: 'function' : 'int *' differs in indirection to slightly different base types from 'uint32_t *'
59# -wd4090: 'function' : different 'const' qualifiers
60# -wd4098: 'void' function returning a value
61# -wd4099: 'st_src_reg' : type name first seen using 'class' now seen using 'struct'
62# -wd4100: unreferenced formal parameter
63# -wd4101: unreferenced local variable
64# -wd4130: '==' : logical operation on address of string constant
65# -wd4132: 'color' : const object should be initialized
66# -wd4146: unary minus operator applied to unsigned type, result still unsigned
67# -wd4152: nonstandard extension, function/data pointer conversion in expression
68# -wd4189: 'signo' : local variable is initialized but not referenced
69# -wd4200: nonstandard extension used : zero-sized array in struct/union
70# -wd4204: nonstandard extension used : non-constant aggregate initializer
71# -wd4206: nonstandard extension used : translation unit is empty
72# -wd4211: nonstandard extension used : redefined extern to static
73# -wd4221: nonstandard extension used : 'tokens' : cannot be initialized using address of automatic variable 'tokens'
74# -wd4245: '=' : conversion from 'int' to 'unsigned int', signed/unsigned mismatch
75# -wd4255: no function prototype given
76# -wd4258: 'i' : definition from the for loop is ignored; the definition from the enclosing scope is used
77# -wd4265: 'ir_variable_refcount_visitor' : class has virtual functions, but destructor is not virtual
78# -wd4267: '=' : conversion from 'size_t' to 'unsigned int', possible loss of data
79# -wd4266: 'void ir_visitor::visit(ir_rvalue *)' : no override available for virtual member function from base 'ir_visitor'; function is hidden
80# -wd4287: unsigned/negative constant mismatch
81# -wd4291: 'void *exec_node::operator new(size_t,void *)' : no matching operator delete found; memory will not be freed if initialization throws an exception
82# -wd4305: truncation from 'double' to 'const float'
83# -wd4306: 'type cast' : conversion from 'int' to 'void *' of greater size
84# -wd4310: cast truncates constant value
85# -wd4311: 'type cast' : pointer truncation from 'void *' to 'unsigned long'
86# -wd4351: new behavior: elements of array '_mesa_glsl_parse_state::cs_input_local_size' will be default initialized
87# -wd4355: 'this' : used in base member initializer list
88# -wd4388: '==' : signed/unsigned mismatch
89# -wd4389: '==' : signed/unsigned mismatch
90# -wd4640: 'ts' : construction of local static object is not thread-safe
91# -wd4668: '__STDC_VERSION__' is not defined as a preprocessor macro, replacing with '0' for '#if/#elif'
92# -wd4700: uninitialized local variable 'tmp' used
93# -wd4701: potentially uninitialized local variable 'query' used
94# -wd4702: unreachable code
95# -wd4703: vcc120: potentially uninitialized local pointer variable 'gen_func' used
96# -wd4756: overflow in constant arithmetic
97# -wd4800: 'int' : forcing value to bool 'true' or 'false' (performance warning)
98# -wd4805: '|=' : unsafe mix of type 'GLboolean' and type 'bool' in operation
99# -wd4918: 'y' : invalid character in pragma optimization list
100VBOX_MESA3D_VCC_DISABLED_WARNINGS := \
101 -wd4005 -wd4013 -wd4018 -wd4054 -wd4057 -wd4090 -wd4098 -wd4099 -wd4100 -wd4101 -wd4130 -wd4132 -wd4146 \
102 -wd4152 -wd4189 -wd4200 -wd4204 -wd4206 -wd4211 -wd4221 -wd4245 -wd4255 -wd4258 -wd4265 -wd4267 -wd4266 \
103 -wd4287 -wd4291 -wd4305 -wd4306 -wd4310 -wd4311 -wd4351 -wd4355 -wd4388 -wd4389 -wd4640 -wd4668 -wd4700 \
104 -wd4701 -wd4702 -wd4703 -wd4756 -wd4800 -wd4805 -wd4918
105# -wd4458: declaration of 'array' hides class member
106# -wd4477: 'fprintf' : format string '%u' requires an argument of type 'unsigned int', but variadic argument 1 has type 'LONGLONG'
107# -wd4774: 'printf' : format string expected in argument 1 is not a string literal
108# -wd4456: declaration of 'pos_dst' hides previous local declaration
109# -wd4777: '_snprintf' : format string '%u' requires an argument of type 'unsigned int', but variadic argument 1 has type 'const DWORD'
110# -wd4459: declaration of 'stw_dev' hides global declaration
111# -wd4457: declaration of 'usage' hides function parameter
112VBOX_MESA3D_VCC_DISABLED_WARNINGS += \
113 -wd4458 -wd4477 -wd4774 -wd4456 -wd4777 -wd4459 -wd4457
114# -wd4254: '=': conversion from 'unsigned int':'3' to 'unsigned int':'2', possible loss of data
115# -wd5039: pointer or reference to potentially throwing function passed to 'extern "C"' function under -EHc. Undefined behavior may occur if this function throws an exception
116# -wd5204: class has virtual functions, but its trivial destructor is not virtual; instances of objects derived from this class may not be destructed correctly
117# -wd5219: implicit conversion from 'int' to 'float', possible loss of data
118VBOX_MESA3D_VCC_DISABLED_WARNINGS += \
119 -wd4254 -wd5039 -wd5204 -wd5219
120
121TEMPLATE_VBoxMesa3DGuestR3Lib_CFLAGS.win += $(VBOX_MESA3D_VCC_DISABLED_WARNINGS)
122TEMPLATE_VBoxMesa3DGuestR3Lib_CXXFLAGS.win += $(VBOX_MESA3D_VCC_DISABLED_WARNINGS)
123endif
124TEMPLATE_VBoxMesa3DGuestR3Lib_INCS = \
125 include \
126 $(VBOX_MESA_SUBDIR)/include \
127 $(VBOX_MESA_SUBDIR)/include/GL \
128 $(VBOX_MESA_SUBDIR)/src \
129 $(VBOX_MESA_SUBDIR)/src/mapi \
130 $(VBOX_MESA_SUBDIR)/src/util \
131 $(VBOX_MESA_SUBDIR)/src/mesa \
132 $(VBOX_MESA_SUBDIR)/src/mesa/main \
133 $(VBOX_MESA_SUBDIR)/src/compiler \
134 $(VBOX_MESA_SUBDIR)/src/compiler/nir \
135 $(VBOX_MESA_SUBDIR)/src/gallium/include \
136 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary \
137 $(VBOX_MESA_SUBDIR)/src/gallium/state_trackers/wgl
138ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING
139TEMPLATE_VBoxMesa3DGuestR3Lib_DEFS = \
140 $(TEMPLATE_VBoxMesa3DGuestR3Dll_DEFS) \
141 PACKAGE_VERSION="$(VBOX_MESA_SUBDIR)" \
142 PACKAGE_BUGREPORT="$(VBOX_MESA_SUBDIR)"
143else
144TEMPLATE_VBoxMesa3DGuestR3Lib_DEFS = \
145 $(TEMPLATE_VBoxMesa3DGuestR3Dll_DEFS) \
146 PACKAGE_VERSION=\"$(VBOX_MESA_SUBDIR)\" \
147 PACKAGE_BUGREPORT=\"$(VBOX_MESA_SUBDIR)\"
148endif
149# For wgl, glapi and mesa
150TEMPLATE_VBoxMesa3DGuestR3Lib_DEFS += \
151 MAPI_MODE_UTIL _GDI32_ BUILD_GL32 KHRONOS_DLL_EXPORTS GL_API=GLAPI GL_APIENTRY=GLAPIENTRY _GLAPI_NO_EXPORTS
152TEMPLATE_VBoxMesa3DGuestR3Lib_DEFS.release = \
153 $(TEMPLATE_VBoxMesa3DGuestR3Dll_DEFS.release) \
154 NDEBUG
155
156
157#
158# VBoxMesaUtilLib
159#
160VBoxMesaUtilLib_TEMPLATE = VBoxMesa3DGuestR3Lib
161VBoxMesaUtilLib_INCS = \
162 $(VBoxMesaUtilLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src \
163 $(VBoxMesaUtilLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/util/format \
164 $(VBOX_MESA_SUBDIR)/src/util/format
165
166VBoxMesaUtilLib_DEPS = \
167 $(VBoxMesaUtilLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/util/format/u_format_pack.h
168
169VBoxMesaUtilLib_SOURCES = \
170 $(VBoxMesaUtilLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/util/format/u_format_pack.c \
171 $(VBoxMesaUtilLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/util/format_srgb.c
172
173$$(VBoxMesaUtilLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/util/format/u_format_pack.c: \
174 $(VBOX_MESA_PATH)/src/util/format/u_format_table.py \
175 $(VBOX_MESA_PATH)/src/util/format/u_format.csv | $$(dir $$@)
176 $(call MSG_GENERATE,python,$@,$$@)
177 $(QUIET)$(PYTHON_CMD) $< $(VBOX_MESA_PATH)/src/util/format/u_format.csv >$@
178
179$$(VBoxMesaUtilLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/util/format/u_format_pack.h: \
180 $(VBOX_MESA_PATH)/src/util/format/u_format_table.py \
181 $(VBOX_MESA_PATH)/src/util/format/u_format.csv | $$(dir $$@)
182 $(call MSG_GENERATE,python,$@,$$@)
183 $(QUIET)$(PYTHON_CMD) $< --header $(VBOX_MESA_PATH)/src/util/format/u_format.csv >$@
184
185$$(VBoxMesaUtilLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/util/format_srgb.c: \
186 $(VBOX_MESA_PATH)/src/util/format_srgb.py | $$(dir $$@)
187 $(call MSG_GENERATE,python,$@,$$@)
188 $(QUIET)$(PYTHON_CMD) $< >$@
189
190VBoxMesaUtilLib_SOURCES += \
191 $(VBOX_MESA_SUBDIR)/src/util/anon_file.c \
192 $(VBOX_MESA_SUBDIR)/src/util/bitscan.c \
193 $(VBOX_MESA_SUBDIR)/src/util/blob.c \
194 $(VBOX_MESA_SUBDIR)/src/util/build_id.c \
195 $(VBOX_MESA_SUBDIR)/src/util/compress.c \
196 $(VBOX_MESA_SUBDIR)/src/util/crc32.c \
197 $(VBOX_MESA_SUBDIR)/src/util/dag.c \
198 $(VBOX_MESA_SUBDIR)/src/util/debug.c \
199 $(VBOX_MESA_SUBDIR)/src/util/disk_cache.c \
200 $(VBOX_MESA_SUBDIR)/src/util/disk_cache_os.c \
201 $(VBOX_MESA_SUBDIR)/src/util/double.c \
202 $(VBOX_MESA_SUBDIR)/src/util/fast_idiv_by_const.c \
203 $(VBOX_MESA_SUBDIR)/src/util/fossilize_db.c \
204 $(VBOX_MESA_SUBDIR)/src/util/half_float.c \
205 $(VBOX_MESA_SUBDIR)/src/util/hash_table.c \
206 $(VBOX_MESA_SUBDIR)/src/util/log.c \
207 $(VBOX_MESA_SUBDIR)/src/util/memstream.c \
208 $(VBOX_MESA_SUBDIR)/src/util/mesa-sha1.c \
209 $(VBOX_MESA_SUBDIR)/src/util/os_file.c \
210 $(VBOX_MESA_SUBDIR)/src/util/os_memory_fd.c \
211 $(VBOX_MESA_SUBDIR)/src/util/os_misc.c \
212 $(VBOX_MESA_SUBDIR)/src/util/os_socket.c \
213 $(VBOX_MESA_SUBDIR)/src/util/os_time.c \
214 $(VBOX_MESA_SUBDIR)/src/util/ralloc.c \
215 $(VBOX_MESA_SUBDIR)/src/util/rand_xor.c \
216 $(VBOX_MESA_SUBDIR)/src/util/rb_tree.c \
217 $(VBOX_MESA_SUBDIR)/src/util/register_allocate.c \
218 $(VBOX_MESA_SUBDIR)/src/util/rgtc.c \
219 $(VBOX_MESA_SUBDIR)/src/util/set.c \
220 $(VBOX_MESA_SUBDIR)/src/util/slab.c \
221 $(VBOX_MESA_SUBDIR)/src/util/softfloat.c \
222 $(VBOX_MESA_SUBDIR)/src/util/sparse_array.c \
223 $(VBOX_MESA_SUBDIR)/src/util/string_buffer.c \
224 $(VBOX_MESA_SUBDIR)/src/util/strtod.c \
225 $(VBOX_MESA_SUBDIR)/src/util/u_atomic.c \
226 $(VBOX_MESA_SUBDIR)/src/util/u_cpu_detect.c \
227 $(VBOX_MESA_SUBDIR)/src/util/u_debug.c \
228 $(VBOX_MESA_SUBDIR)/src/util/u_debug_describe.c \
229 $(VBOX_MESA_SUBDIR)/src/util/u_debug_memory.c \
230 $(VBOX_MESA_SUBDIR)/src/util/u_debug_refcnt.c \
231 $(VBOX_MESA_SUBDIR)/src/util/u_debug_stack.c \
232 $(VBOX_MESA_SUBDIR)/src/util/u_debug_symbol.c \
233 $(VBOX_MESA_SUBDIR)/src/util/u_hash_table.c \
234 $(VBOX_MESA_SUBDIR)/src/util/u_idalloc.c \
235 $(VBOX_MESA_SUBDIR)/src/util/u_math.c \
236 $(VBOX_MESA_SUBDIR)/src/util/u_mm.c \
237 $(VBOX_MESA_SUBDIR)/src/util/u_process.c \
238 $(VBOX_MESA_SUBDIR)/src/util/u_queue.c \
239 $(VBOX_MESA_SUBDIR)/src/util/u_vector.c \
240 $(VBOX_MESA_SUBDIR)/src/util/vma.c \
241 $(VBOX_MESA_SUBDIR)/src/util/format/u_format.c \
242 $(VBOX_MESA_SUBDIR)/src/util/format/u_format_bptc.c \
243 $(VBOX_MESA_SUBDIR)/src/util/format/u_format_etc.c \
244 $(VBOX_MESA_SUBDIR)/src/util/format/u_format_fxt1.c \
245 $(VBOX_MESA_SUBDIR)/src/util/format/u_format_latc.c \
246 $(VBOX_MESA_SUBDIR)/src/util/format/u_format_other.c \
247 $(VBOX_MESA_SUBDIR)/src/util/format/u_format_rgtc.c \
248 $(VBOX_MESA_SUBDIR)/src/util/format/u_format_s3tc.c \
249 $(VBOX_MESA_SUBDIR)/src/util/format/u_format_tests.c \
250 $(VBOX_MESA_SUBDIR)/src/util/format/u_format_unpack_neon.c \
251 $(VBOX_MESA_SUBDIR)/src/util/format/u_format_yuv.c \
252 $(VBOX_MESA_SUBDIR)/src/util/format/u_format_zs.c \
253 $(VBOX_MESA_SUBDIR)/src/util/u_printf.cpp \
254 $(VBOX_MESA_SUBDIR)/src/util/u_qsort.cpp \
255 $(VBOX_MESA_SUBDIR)/src/util/sha1/sha1.c
256
257# Unused
258# $(VBOX_MESA_SUBDIR)/src/util/xmlconfig.c
259
260# 32 bit lib for 64 bit build
261VBoxMesaUtilLib-x86_EXTENDS = VBoxMesaUtilLib
262VBoxMesaUtilLib-x86_BLD_TRG_ARCH = x86
263
264
265#
266# VBoxMesaLib
267#
268VBoxMesaLib_TEMPLATE = VBoxMesa3DGuestR3Lib
269VBoxMesaLib_INCS = \
270 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler \
271 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/glsl \
272 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir \
273 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/spirv \
274 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mapi/glapi \
275 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa \
276 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main \
277 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/program \
278 $(VBOX_MESA_SUBDIR)/src/compiler/glsl \
279 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/glcpp \
280 $(VBOX_MESA_SUBDIR)/src/compiler/spirv
281
282VBoxMesaLib_DEPS = \
283 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/ir_expression_operation.h \
284 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/ir_expression_operation_strings.h \
285 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/ir_expression_operation_constant.h \
286 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/glsl/float64_glsl.h \
287 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/glsl/glsl_parser.h \
288 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/glsl/glcpp/glcpp-parse.h \
289 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_builder_opcodes.h \
290 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_intrinsics.h \
291 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_intrinsics_indices.h \
292 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opcodes.h \
293 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/spirv/vtn_generator_ids.h \
294 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mapi/glapi/glapitable.h \
295 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mapi/glapi/glapitemp.h \
296 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mapi/glapi/glprocs.h \
297 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/dispatch.h \
298 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/format_info.h \
299 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/get_hash.h \
300 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated.h \
301 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/remap_helper.h \
302 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/program/program_parse.tab.h
303
304VBoxMesaLib_SOURCES = \
305 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/glsl/glsl_lexer.cpp \
306 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/glsl/glsl_parser.cpp \
307 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/glsl/glcpp/glcpp-lex.c \
308 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/glsl/glcpp/glcpp-parse.c \
309 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_constant_expressions.c \
310 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_intrinsics.c \
311 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opcodes.c \
312 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_algebraic.c \
313 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/spirv/spirv_info.c \
314 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/spirv/vtn_gather_types.c \
315 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mapi/glapi/enums.c \
316 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/api_exec.c \
317 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/format_fallback.c \
318 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated0.c \
319 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated1.c \
320 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated2.c \
321 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated3.c \
322 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated4.c \
323 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated5.c \
324 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated6.c \
325 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated7.c \
326 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/program/program_parse.tab.c \
327 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/program/lex.yy.c
328
329$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_builder_opcodes.h: \
330 $(VBOX_MESA_PATH)/src/compiler/nir/nir_builder_opcodes_h.py | $$(dir $$@)
331 $(call MSG_GENERATE,python,$@,$$@)
332 $(QUIET)$(PYTHON_CMD) $< >$@
333
334$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_constant_expressions.c: \
335 $(VBOX_MESA_PATH)/src/compiler/nir/nir_constant_expressions.py | $$(dir $$@)
336 $(call MSG_GENERATE,python,$@,$$@)
337 $(QUIET)$(PYTHON_CMD) $< >$@
338
339$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opcodes.h: \
340 $(VBOX_MESA_PATH)/src/compiler/nir/nir_opcodes_h.py | $$(dir $$@)
341 $(call MSG_GENERATE,python,$@,$$@)
342 $(QUIET)$(PYTHON_CMD) $< >$@
343
344$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opcodes.c: \
345 $(VBOX_MESA_PATH)/src/compiler/nir/nir_opcodes_c.py | $$(dir $$@)
346 $(call MSG_GENERATE,python,$@,$$@)
347 $(QUIET)$(PYTHON_CMD) $< >$@
348
349$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_algebraic.c: \
350 $(VBOX_MESA_PATH)/src/compiler/nir/nir_opt_algebraic.py | $$(dir $$@)
351 $(call MSG_GENERATE,python,$@,$$@)
352 $(QUIET)$(PYTHON_CMD) $< >$@
353
354$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_intrinsics.h: \
355 $(VBOX_MESA_PATH)/src/compiler/nir/nir_intrinsics_h.py | $$(dir $$@)
356 $(call MSG_GENERATE,python,$@,$$@)
357 $(QUIET)$(PYTHON_CMD) $< --outdir $(dir $@)
358
359$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_intrinsics_indices.h: \
360 $(VBOX_MESA_PATH)/src/compiler/nir/nir_intrinsics_indices_h.py | $$(dir $$@)
361 $(call MSG_GENERATE,python,$@,$$@)
362 $(QUIET)$(PYTHON_CMD) $< --outdir $(dir $@)
363
364$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_intrinsics.c: \
365 $(VBOX_MESA_PATH)/src/compiler/nir/nir_intrinsics_c.py | $$(dir $$@)
366 $(call MSG_GENERATE,python,$@,$$@)
367 $(QUIET)$(PYTHON_CMD) $< --outdir $(dir $@)
368
369$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/ir_expression_operation.h: \
370 $(VBOX_MESA_PATH)/src/compiler/glsl/ir_expression_operation.py | $$(dir $$@)
371 $(call MSG_GENERATE,python,$@,$$@)
372 $(QUIET)$(PYTHON_CMD) $< enum >$@
373
374$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/ir_expression_operation_strings.h: \
375 $(VBOX_MESA_PATH)/src/compiler/glsl/ir_expression_operation.py | $$(dir $$@)
376 $(call MSG_GENERATE,python,$@,$$@)
377 $(QUIET)$(PYTHON_CMD) $< strings >$@
378
379$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/ir_expression_operation_constant.h: \
380 $(VBOX_MESA_PATH)/src/compiler/glsl/ir_expression_operation.py | $$(dir $$@)
381 $(call MSG_GENERATE,python,$@,$$@)
382 $(QUIET)$(PYTHON_CMD) $< constant >$@
383
384$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/dispatch.h: \
385 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_table.py \
386 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml | $$(dir $$@)
387 $(call MSG_GENERATE,python,$@,$$@)
388 $(QUIET)$(PYTHON_CMD) $< -f $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml -m remap_table >$@
389
390$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated.h: \
391 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_marshal_h.py \
392 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml | $$(dir $$@)
393 $(call MSG_GENERATE,python,$@,$$@)
394 $(QUIET)$(PYTHON_CMD) $< -f $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml >$@
395
396$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated0.c: \
397 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_marshal.py \
398 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml | $$(dir $$@)
399 $(call MSG_GENERATE,python,$@,$$@)
400 $(QUIET)$(PYTHON_CMD) $< -f $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml -i 0 -n 8 >$@
401
402$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated1.c: \
403 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_marshal.py \
404 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml | $$(dir $$@)
405 $(call MSG_GENERATE,python,$@,$$@)
406 $(QUIET)$(PYTHON_CMD) $< -f $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml -i 1 -n 8 >$@
407
408$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated2.c: \
409 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_marshal.py \
410 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml | $$(dir $$@)
411 $(call MSG_GENERATE,python,$@,$$@)
412 $(QUIET)$(PYTHON_CMD) $< -f $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml -i 2 -n 8 >$@
413
414$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated3.c: \
415 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_marshal.py \
416 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml | $$(dir $$@)
417 $(call MSG_GENERATE,python,$@,$$@)
418 $(QUIET)$(PYTHON_CMD) $< -f $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml -i 3 -n 8 >$@
419
420$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated4.c: \
421 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_marshal.py \
422 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml | $$(dir $$@)
423 $(call MSG_GENERATE,python,$@,$$@)
424 $(QUIET)$(PYTHON_CMD) $< -f $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml -i 4 -n 8 >$@
425
426$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated5.c: \
427 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_marshal.py \
428 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml | $$(dir $$@)
429 $(call MSG_GENERATE,python,$@,$$@)
430 $(QUIET)$(PYTHON_CMD) $< -f $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml -i 5 -n 8 >$@
431
432$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated6.c: \
433 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_marshal.py \
434 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml | $$(dir $$@)
435 $(call MSG_GENERATE,python,$@,$$@)
436 $(QUIET)$(PYTHON_CMD) $< -f $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml -i 6 -n 8 >$@
437
438$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated7.c: \
439 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_marshal.py \
440 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml | $$(dir $$@)
441 $(call MSG_GENERATE,python,$@,$$@)
442 $(QUIET)$(PYTHON_CMD) $< -f $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml -i 7 -n 8 >$@
443
444$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/api_exec.c: \
445 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_genexec.py \
446 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml | $$(dir $$@)
447 $(call MSG_GENERATE,python,$@,$$@)
448 $(QUIET)$(PYTHON_CMD) $< -f $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml >$@
449
450$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/format_info.h: \
451 $(VBOX_MESA_PATH)/src/mesa/main/format_info.py \
452 $(VBOX_MESA_PATH)/src/mesa/main/formats.csv | $$(dir $$@)
453 $(call MSG_GENERATE,python,$@,$$@)
454 $(QUIET)$(PYTHON_CMD) $< $(VBOX_MESA_PATH)/src/mesa/main/formats.csv >$@
455
456$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/format_fallback.c: \
457 $(VBOX_MESA_PATH)/src/mesa/main/format_fallback.py \
458 $(VBOX_MESA_PATH)/src/mesa/main/formats.csv | $$(dir $$@)
459 $(call MSG_GENERATE,python,$@,$$@)
460 $(QUIET)$(PYTHON_CMD) $< $(VBOX_MESA_PATH)/src/mesa/main/formats.csv $@
461
462$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/get_hash.h: \
463 $(VBOX_MESA_PATH)/src/mesa/main/get_hash_generator.py \
464 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml | $$(dir $$@)
465 $(call MSG_GENERATE,python,$@,$$@)
466 $(QUIET)$(PYTHON_CMD) $< -f $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml >$@
467
468$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/main/remap_helper.h: \
469 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/remap_helper.py \
470 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml | $$(dir $$@)
471 $(call MSG_GENERATE,python,$@,$$@)
472 $(QUIET)$(PYTHON_CMD) $< -f $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml >$@
473
474$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/glsl/glsl_parser.cpp \
475$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/glsl/glsl_parser.h: \
476 $(VBOX_MESA_PATH)/src/compiler/glsl/glsl_parser.yy | $$(dir $$@)
477 $(call MSG_GENERATE,bison,$@,$$@)
478 $(QUIET)$(TOOL_BISON_YACC) -o $@ -p _mesa_glsl_ --defines=$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/glsl/glsl_parser.h $<
479
480$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/glsl/glsl_lexer.cpp: \
481 $(VBOX_MESA_PATH)/src/compiler/glsl/glsl_lexer.ll | $$(dir $$@)
482 $(call MSG_GENERATE,flex,$@,$$@)
483 $(QUIET)$(TOOL_FLEX_LEX) -o $@ $<
484
485$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/glsl/glcpp/glcpp-parse.c \
486$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/glsl/glcpp/glcpp-parse.h: \
487 $(VBOX_MESA_PATH)/src/compiler/glsl/glcpp/glcpp-parse.y | $$(dir $$@)
488 $(call MSG_GENERATE,bison,$@,$$@)
489 $(QUIET)$(TOOL_BISON_YACC) -o $@ -p glcpp_parser_ --defines=$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/glsl/glcpp/glcpp-parse.h $<
490
491$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/glsl/glcpp/glcpp-lex.c: \
492 $(VBOX_MESA_PATH)/src/compiler/glsl/glcpp/glcpp-lex.l | $$(dir $$@)
493 $(call MSG_GENERATE,flex,$@,$$@)
494 $(QUIET)$(TOOL_FLEX_LEX) -o $@ $<
495
496$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/glsl/float64_glsl.h: \
497 $(VBOX_MESA_PATH)/src/util/xxd.py \
498 $(VBOX_MESA_PATH)/src/compiler/glsl/float64.glsl | $$(dir $$@)
499 $(call MSG_GENERATE,python,$@,$$@)
500 $(QUIET)$(PYTHON_CMD) $< $(VBOX_MESA_PATH)/src/compiler/glsl/float64.glsl $@ -n float64_source
501
502$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mapi/glapi/glapitemp.h: \
503 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_apitemp.py \
504 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml | $$(dir $$@)
505 $(call MSG_GENERATE,python,$@,$$@)
506 $(QUIET)$(PYTHON_CMD) $< -f $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml >$@
507
508$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mapi/glapi/glapitable.h: \
509 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_table.py \
510 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml | $$(dir $$@)
511 $(call MSG_GENERATE,python,$@,$$@)
512 $(QUIET)$(PYTHON_CMD) $< -f $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml >$@
513
514$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mapi/glapi/glprocs.h: \
515 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_procs.py \
516 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml | $$(dir $$@)
517 $(call MSG_GENERATE,python,$@,$$@)
518 $(QUIET)$(PYTHON_CMD) $< -c -f $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_and_es_API.xml >$@
519
520$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mapi/glapi/enums.c: \
521 $(VBOX_MESA_PATH)/src/mapi/glapi/gen/gl_enums.py \
522 $(VBOX_MESA_PATH)/src/mapi/glapi/registry/gl.xml | $$(dir $$@)
523 $(call MSG_GENERATE,python,$@,$$@)
524 $(QUIET)$(PYTHON_CMD) $< -f $(VBOX_MESA_PATH)/src/mapi/glapi/registry/gl.xml >$@
525
526$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/spirv/spirv_info.c: \
527 $(VBOX_MESA_PATH)/src/compiler/spirv/spirv_info_c.py \
528 $(VBOX_MESA_PATH)/src/compiler/spirv/spirv.core.grammar.json | $$(dir $$@)
529 $(call MSG_GENERATE,python,$@,$$@)
530 $(QUIET)$(PYTHON_CMD) $< $(VBOX_MESA_PATH)/src/compiler/spirv/spirv.core.grammar.json $@
531
532$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/spirv/vtn_gather_types.c: \
533 $(VBOX_MESA_PATH)/src/compiler/spirv/vtn_gather_types_c.py \
534 $(VBOX_MESA_PATH)/src/compiler/spirv/spirv.core.grammar.json | $$(dir $$@)
535 $(call MSG_GENERATE,python,$@,$$@)
536 $(QUIET)$(PYTHON_CMD) $< $(VBOX_MESA_PATH)/src/compiler/spirv/spirv.core.grammar.json $@
537
538$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/spirv/vtn_generator_ids.h: \
539 $(VBOX_MESA_PATH)/src/compiler/spirv/vtn_generator_ids_h.py \
540 $(VBOX_MESA_PATH)/src/compiler/spirv/spir-v.xml | $$(dir $$@)
541 $(call MSG_GENERATE,python,$@,$$@)
542 $(QUIET)$(PYTHON_CMD) $< $(VBOX_MESA_PATH)/src/compiler/spirv/spir-v.xml $@
543
544$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/program/program_parse.tab.c \
545$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/program/program_parse.tab.h: \
546 $(VBOX_MESA_PATH)/src/mesa/program/program_parse.y | $$(dir $$@)
547 $(call MSG_GENERATE,bison,$@,$$@)
548 $(QUIET)$(TOOL_BISON_YACC) -o $@ --defines=$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/program/program_parse.tab.h $<
549
550$$(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/mesa/program/lex.yy.c: \
551 $(VBOX_MESA_PATH)/src/mesa/program/program_lexer.l | $$(dir $$@)
552 $(call MSG_GENERATE,flex,$@,$$@)
553 $(QUIET)$(TOOL_FLEX_LEX) -o $@ $<
554
555VBoxMesaLib_SOURCES += \
556 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atifs_to_nir.c \
557 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom.c \
558 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_array.c \
559 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_atomicbuf.c \
560 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_blend.c \
561 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_clip.c \
562 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_constbuf.c \
563 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_depth.c \
564 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_framebuffer.c \
565 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_image.c \
566 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_msaa.c \
567 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_pixeltransfer.c \
568 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_rasterizer.c \
569 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_sampler.c \
570 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_scissor.c \
571 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_shader.c \
572 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_stipple.c \
573 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_storagebuf.c \
574 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_tess.c \
575 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_texture.c \
576 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_atom_viewport.c \
577 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_bitmap.c \
578 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_bitmap_shader.c \
579 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_blit.c \
580 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_bufferobjects.c \
581 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_clear.c \
582 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_compute.c \
583 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_condrender.c \
584 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_copyimage.c \
585 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_drawpixels.c \
586 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_drawpixels_shader.c \
587 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_drawtex.c \
588 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_eglimage.c \
589 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_fbo.c \
590 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_feedback.c \
591 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_flush.c \
592 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_memoryobjects.c \
593 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_msaa.c \
594 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_perfmon.c \
595 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_perfquery.c \
596 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_program.c \
597 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_queryobj.c \
598 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_rasterpos.c \
599 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_readpixels.c \
600 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_semaphoreobjects.c \
601 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_strings.c \
602 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_syncobj.c \
603 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_texture.c \
604 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_texturebarrier.c \
605 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_viewport.c \
606 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_cb_xformfb.c \
607 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_context.c \
608 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_copytex.c \
609 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_debug.c \
610 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_draw.c \
611 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_draw_feedback.c \
612 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_extensions.c \
613 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_format.c \
614 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_gen_mipmap.c \
615 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_glsl_to_ir.cpp \
616 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_glsl_to_nir.cpp \
617 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_glsl_to_tgsi.cpp \
618 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_glsl_to_tgsi_array_merge.cpp \
619 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_glsl_to_tgsi_private.cpp \
620 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_glsl_to_tgsi_temprename.cpp \
621 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_manager.c \
622 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_nir_builtins.c \
623 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_nir_lower_builtin.c \
624 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_nir_lower_tex_src_plane.c \
625 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_pbo.c \
626 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_program.c \
627 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_sampler_view.c \
628 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_scissor.c \
629 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_shader_cache.c \
630 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_texture.c \
631 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_tgsi_lower_depth_clamp.c \
632 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_tgsi_lower_yuv.c \
633 $(VBOX_MESA_SUBDIR)/src/mesa/state_tracker/st_vdpau.c
634VBoxMesaLib_SOURCES += \
635 $(VBOX_MESA_SUBDIR)/src/mesa/program/arbprogparse.c \
636 $(VBOX_MESA_SUBDIR)/src/mesa/program/ir_to_mesa.cpp \
637 $(VBOX_MESA_SUBDIR)/src/mesa/program/prog_cache.c \
638 $(VBOX_MESA_SUBDIR)/src/mesa/program/prog_execute.c \
639 $(VBOX_MESA_SUBDIR)/src/mesa/program/prog_instruction.c \
640 $(VBOX_MESA_SUBDIR)/src/mesa/program/prog_noise.c \
641 $(VBOX_MESA_SUBDIR)/src/mesa/program/prog_opt_constant_fold.c \
642 $(VBOX_MESA_SUBDIR)/src/mesa/program/prog_optimize.c \
643 $(VBOX_MESA_SUBDIR)/src/mesa/program/prog_parameter.c \
644 $(VBOX_MESA_SUBDIR)/src/mesa/program/prog_parameter_layout.c \
645 $(VBOX_MESA_SUBDIR)/src/mesa/program/prog_print.c \
646 $(VBOX_MESA_SUBDIR)/src/mesa/program/prog_statevars.c \
647 $(VBOX_MESA_SUBDIR)/src/mesa/program/prog_to_nir.c \
648 $(VBOX_MESA_SUBDIR)/src/mesa/program/program.c \
649 $(VBOX_MESA_SUBDIR)/src/mesa/program/program_parse_extra.c \
650 $(VBOX_MESA_SUBDIR)/src/mesa/program/programopt.c \
651 $(VBOX_MESA_SUBDIR)/src/mesa/program/symbol_table.c
652VBoxMesaLib_SOURCES += \
653 $(VBOX_MESA_SUBDIR)/src/mesa/main/accum.c \
654 $(VBOX_MESA_SUBDIR)/src/mesa/main/api_arrayelt.c \
655 $(VBOX_MESA_SUBDIR)/src/mesa/main/arbprogram.c \
656 $(VBOX_MESA_SUBDIR)/src/mesa/main/arrayobj.c \
657 $(VBOX_MESA_SUBDIR)/src/mesa/main/atifragshader.c \
658 $(VBOX_MESA_SUBDIR)/src/mesa/main/attrib.c \
659 $(VBOX_MESA_SUBDIR)/src/mesa/main/barrier.c \
660 $(VBOX_MESA_SUBDIR)/src/mesa/main/bbox.c \
661 $(VBOX_MESA_SUBDIR)/src/mesa/main/blend.c \
662 $(VBOX_MESA_SUBDIR)/src/mesa/main/blit.c \
663 $(VBOX_MESA_SUBDIR)/src/mesa/main/bufferobj.c \
664 $(VBOX_MESA_SUBDIR)/src/mesa/main/buffers.c \
665 $(VBOX_MESA_SUBDIR)/src/mesa/main/clear.c \
666 $(VBOX_MESA_SUBDIR)/src/mesa/main/clip.c \
667 $(VBOX_MESA_SUBDIR)/src/mesa/main/colortab.c \
668 $(VBOX_MESA_SUBDIR)/src/mesa/main/compute.c \
669 $(VBOX_MESA_SUBDIR)/src/mesa/main/condrender.c \
670 $(VBOX_MESA_SUBDIR)/src/mesa/main/conservativeraster.c \
671 $(VBOX_MESA_SUBDIR)/src/mesa/main/context.c \
672 $(VBOX_MESA_SUBDIR)/src/mesa/main/convolve.c \
673 $(VBOX_MESA_SUBDIR)/src/mesa/main/copyimage.c \
674 $(VBOX_MESA_SUBDIR)/src/mesa/main/cpuinfo.c \
675 $(VBOX_MESA_SUBDIR)/src/mesa/main/debug.c \
676 $(VBOX_MESA_SUBDIR)/src/mesa/main/debug_output.c \
677 $(VBOX_MESA_SUBDIR)/src/mesa/main/depth.c \
678 $(VBOX_MESA_SUBDIR)/src/mesa/main/dlist.c \
679 $(VBOX_MESA_SUBDIR)/src/mesa/main/draw.c \
680 $(VBOX_MESA_SUBDIR)/src/mesa/main/draw_validate.c \
681 $(VBOX_MESA_SUBDIR)/src/mesa/main/drawpix.c \
682 $(VBOX_MESA_SUBDIR)/src/mesa/main/drawtex.c \
683 $(VBOX_MESA_SUBDIR)/src/mesa/main/enable.c \
684 $(VBOX_MESA_SUBDIR)/src/mesa/main/errors.c \
685 $(VBOX_MESA_SUBDIR)/src/mesa/main/es1_conversion.c \
686 $(VBOX_MESA_SUBDIR)/src/mesa/main/eval.c \
687 $(VBOX_MESA_SUBDIR)/src/mesa/main/execmem.c \
688 $(VBOX_MESA_SUBDIR)/src/mesa/main/extensions.c \
689 $(VBOX_MESA_SUBDIR)/src/mesa/main/extensions_table.c \
690 $(VBOX_MESA_SUBDIR)/src/mesa/main/externalobjects.c \
691 $(VBOX_MESA_SUBDIR)/src/mesa/main/fbobject.c \
692 $(VBOX_MESA_SUBDIR)/src/mesa/main/feedback.c \
693 $(VBOX_MESA_SUBDIR)/src/mesa/main/ff_fragment_shader.cpp \
694 $(VBOX_MESA_SUBDIR)/src/mesa/main/ffvertex_prog.c \
695 $(VBOX_MESA_SUBDIR)/src/mesa/main/fog.c \
696 $(VBOX_MESA_SUBDIR)/src/mesa/main/format_utils.c \
697 $(VBOX_MESA_SUBDIR)/src/mesa/main/formatquery.c \
698 $(VBOX_MESA_SUBDIR)/src/mesa/main/formats.c \
699 $(VBOX_MESA_SUBDIR)/src/mesa/main/framebuffer.c \
700 $(VBOX_MESA_SUBDIR)/src/mesa/main/genmipmap.c \
701 $(VBOX_MESA_SUBDIR)/src/mesa/main/get.c \
702 $(VBOX_MESA_SUBDIR)/src/mesa/main/getstring.c \
703 $(VBOX_MESA_SUBDIR)/src/mesa/main/glformats.c \
704 $(VBOX_MESA_SUBDIR)/src/mesa/main/glspirv.c \
705 $(VBOX_MESA_SUBDIR)/src/mesa/main/glthread.c \
706 $(VBOX_MESA_SUBDIR)/src/mesa/main/glthread_bufferobj.c \
707 $(VBOX_MESA_SUBDIR)/src/mesa/main/glthread_draw.c \
708 $(VBOX_MESA_SUBDIR)/src/mesa/main/glthread_get.c \
709 $(VBOX_MESA_SUBDIR)/src/mesa/main/glthread_list.c \
710 $(VBOX_MESA_SUBDIR)/src/mesa/main/glthread_shaderobj.c \
711 $(VBOX_MESA_SUBDIR)/src/mesa/main/glthread_varray.c \
712 $(VBOX_MESA_SUBDIR)/src/mesa/main/hash.c \
713 $(VBOX_MESA_SUBDIR)/src/mesa/main/hint.c \
714 $(VBOX_MESA_SUBDIR)/src/mesa/main/histogram.c \
715 $(VBOX_MESA_SUBDIR)/src/mesa/main/image.c \
716 $(VBOX_MESA_SUBDIR)/src/mesa/main/light.c \
717 $(VBOX_MESA_SUBDIR)/src/mesa/main/lines.c \
718 $(VBOX_MESA_SUBDIR)/src/mesa/main/matrix.c \
719 $(VBOX_MESA_SUBDIR)/src/mesa/main/mipmap.c \
720 $(VBOX_MESA_SUBDIR)/src/mesa/main/multisample.c \
721 $(VBOX_MESA_SUBDIR)/src/mesa/main/objectlabel.c \
722 $(VBOX_MESA_SUBDIR)/src/mesa/main/objectpurge.c \
723 $(VBOX_MESA_SUBDIR)/src/mesa/main/pack.c \
724 $(VBOX_MESA_SUBDIR)/src/mesa/main/pbo.c \
725 $(VBOX_MESA_SUBDIR)/src/mesa/main/performance_monitor.c \
726 $(VBOX_MESA_SUBDIR)/src/mesa/main/performance_query.c \
727 $(VBOX_MESA_SUBDIR)/src/mesa/main/pipelineobj.c \
728 $(VBOX_MESA_SUBDIR)/src/mesa/main/pixel.c \
729 $(VBOX_MESA_SUBDIR)/src/mesa/main/pixelstore.c \
730 $(VBOX_MESA_SUBDIR)/src/mesa/main/pixeltransfer.c \
731 $(VBOX_MESA_SUBDIR)/src/mesa/main/points.c \
732 $(VBOX_MESA_SUBDIR)/src/mesa/main/polygon.c \
733 $(VBOX_MESA_SUBDIR)/src/mesa/main/program_binary.c \
734 $(VBOX_MESA_SUBDIR)/src/mesa/main/program_resource.c \
735 $(VBOX_MESA_SUBDIR)/src/mesa/main/querymatrix.c \
736 $(VBOX_MESA_SUBDIR)/src/mesa/main/queryobj.c \
737 $(VBOX_MESA_SUBDIR)/src/mesa/main/rastpos.c \
738 $(VBOX_MESA_SUBDIR)/src/mesa/main/readpix.c \
739 $(VBOX_MESA_SUBDIR)/src/mesa/main/remap.c \
740 $(VBOX_MESA_SUBDIR)/src/mesa/main/renderbuffer.c \
741 $(VBOX_MESA_SUBDIR)/src/mesa/main/robustness.c \
742 $(VBOX_MESA_SUBDIR)/src/mesa/main/samplerobj.c \
743 $(VBOX_MESA_SUBDIR)/src/mesa/main/scissor.c \
744 $(VBOX_MESA_SUBDIR)/src/mesa/main/shader_query.cpp \
745 $(VBOX_MESA_SUBDIR)/src/mesa/main/shaderapi.c \
746 $(VBOX_MESA_SUBDIR)/src/mesa/main/shaderimage.c \
747 $(VBOX_MESA_SUBDIR)/src/mesa/main/shaderobj.c \
748 $(VBOX_MESA_SUBDIR)/src/mesa/main/shared.c \
749 $(VBOX_MESA_SUBDIR)/src/mesa/main/spirv_extensions.c \
750 $(VBOX_MESA_SUBDIR)/src/mesa/main/state.c \
751 $(VBOX_MESA_SUBDIR)/src/mesa/main/stencil.c \
752 $(VBOX_MESA_SUBDIR)/src/mesa/main/streaming-load-memcpy.c \
753 $(VBOX_MESA_SUBDIR)/src/mesa/main/syncobj.c \
754 $(VBOX_MESA_SUBDIR)/src/mesa/main/texcompress.c \
755 $(VBOX_MESA_SUBDIR)/src/mesa/main/texcompress_astc.cpp \
756 $(VBOX_MESA_SUBDIR)/src/mesa/main/texcompress_bptc.c \
757 $(VBOX_MESA_SUBDIR)/src/mesa/main/texcompress_cpal.c \
758 $(VBOX_MESA_SUBDIR)/src/mesa/main/texcompress_etc.c \
759 $(VBOX_MESA_SUBDIR)/src/mesa/main/texcompress_fxt1.c \
760 $(VBOX_MESA_SUBDIR)/src/mesa/main/texcompress_rgtc.c \
761 $(VBOX_MESA_SUBDIR)/src/mesa/main/texcompress_s3tc.c \
762 $(VBOX_MESA_SUBDIR)/src/mesa/main/texenv.c \
763 $(VBOX_MESA_SUBDIR)/src/mesa/main/texformat.c \
764 $(VBOX_MESA_SUBDIR)/src/mesa/main/texgen.c \
765 $(VBOX_MESA_SUBDIR)/src/mesa/main/texgetimage.c \
766 $(VBOX_MESA_SUBDIR)/src/mesa/main/teximage.c \
767 $(VBOX_MESA_SUBDIR)/src/mesa/main/texobj.c \
768 $(VBOX_MESA_SUBDIR)/src/mesa/main/texparam.c \
769 $(VBOX_MESA_SUBDIR)/src/mesa/main/texstate.c \
770 $(VBOX_MESA_SUBDIR)/src/mesa/main/texstorage.c \
771 $(VBOX_MESA_SUBDIR)/src/mesa/main/texstore.c \
772 $(VBOX_MESA_SUBDIR)/src/mesa/main/texturebindless.c \
773 $(VBOX_MESA_SUBDIR)/src/mesa/main/textureview.c \
774 $(VBOX_MESA_SUBDIR)/src/mesa/main/transformfeedback.c \
775 $(VBOX_MESA_SUBDIR)/src/mesa/main/uniform_query.cpp \
776 $(VBOX_MESA_SUBDIR)/src/mesa/main/uniforms.c \
777 $(VBOX_MESA_SUBDIR)/src/mesa/main/varray.c \
778 $(VBOX_MESA_SUBDIR)/src/mesa/main/vdpau.c \
779 $(VBOX_MESA_SUBDIR)/src/mesa/main/version.c \
780 $(VBOX_MESA_SUBDIR)/src/mesa/main/viewport.c \
781 $(VBOX_MESA_SUBDIR)/src/mesa/main/vtxfmt.c
782#VBoxMesaLib_SOURCES += \
783 $(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated0.c \
784 $(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated1.c \
785 $(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated2.c \
786 $(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated3.c \
787 $(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated4.c \
788 $(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated5.c \
789 $(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated6.c \
790 $(VBOX_MESA_SUBDIR)/src/mesa/main/marshal_generated7.c
791VBoxMesaLib_SOURCES += \
792 $(VBOX_MESA_SUBDIR)/src/mesa/math/m_debug_clip.c \
793 $(VBOX_MESA_SUBDIR)/src/mesa/math/m_debug_norm.c \
794 $(VBOX_MESA_SUBDIR)/src/mesa/math/m_debug_xform.c \
795 $(VBOX_MESA_SUBDIR)/src/mesa/math/m_eval.c \
796 $(VBOX_MESA_SUBDIR)/src/mesa/math/m_matrix.c \
797 $(VBOX_MESA_SUBDIR)/src/mesa/math/m_translate.c \
798 $(VBOX_MESA_SUBDIR)/src/mesa/math/m_vector.c \
799 $(VBOX_MESA_SUBDIR)/src/mesa/math/m_xform.c
800VBoxMesaLib_SOURCES += \
801 $(VBOX_MESA_SUBDIR)/src/mesa/vbo/vbo_context.c \
802 $(VBOX_MESA_SUBDIR)/src/mesa/vbo/vbo_exec.c \
803 $(VBOX_MESA_SUBDIR)/src/mesa/vbo/vbo_exec_api.c \
804 $(VBOX_MESA_SUBDIR)/src/mesa/vbo/vbo_exec_draw.c \
805 $(VBOX_MESA_SUBDIR)/src/mesa/vbo/vbo_exec_eval.c \
806 $(VBOX_MESA_SUBDIR)/src/mesa/vbo/vbo_minmax_index.c \
807 $(VBOX_MESA_SUBDIR)/src/mesa/vbo/vbo_noop.c \
808 $(VBOX_MESA_SUBDIR)/src/mesa/vbo/vbo_save.c \
809 $(VBOX_MESA_SUBDIR)/src/mesa/vbo/vbo_save_api.c \
810 $(VBOX_MESA_SUBDIR)/src/mesa/vbo/vbo_save_draw.c \
811 $(VBOX_MESA_SUBDIR)/src/mesa/vbo/vbo_save_loopback.c
812VBoxMesaLib_SOURCES += \
813 $(VBOX_MESA_SUBDIR)/src/compiler/glsl_types.cpp \
814 $(VBOX_MESA_SUBDIR)/src/compiler/nir_types.cpp \
815 $(VBOX_MESA_SUBDIR)/src/compiler/shader_enums.c
816VBoxMesaLib_SOURCES += \
817 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ast_array_index.cpp \
818 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ast_expr.cpp \
819 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ast_function.cpp \
820 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ast_to_hir.cpp \
821 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ast_type.cpp \
822 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/builtin_functions.cpp \
823 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/builtin_types.cpp \
824 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/builtin_variables.cpp \
825 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/generate_ir.cpp \
826 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/gl_nir_link_atomics.c \
827 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/gl_nir_link_uniform_blocks.c \
828 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/gl_nir_link_uniform_initializers.c \
829 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/gl_nir_link_uniforms.c \
830 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/gl_nir_link_xfb.c \
831 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/gl_nir_linker.c \
832 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/gl_nir_lower_atomics.c \
833 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/gl_nir_lower_buffers.c \
834 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/gl_nir_lower_images.c \
835 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/gl_nir_lower_samplers.c \
836 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/gl_nir_lower_samplers_as_deref.c \
837 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/glsl_parser_extras.cpp \
838 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/glsl_symbol_table.cpp \
839 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/glsl_to_nir.cpp \
840 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/hir_field_selection.cpp \
841 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir.cpp \
842 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_array_refcount.cpp \
843 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_basic_block.cpp \
844 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_builder.cpp \
845 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_builder_print_visitor.cpp \
846 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_clone.cpp \
847 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_constant_expression.cpp \
848 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_equals.cpp \
849 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_expression_flattening.cpp \
850 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_function.cpp \
851 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_function_can_inline.cpp \
852 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_function_detect_recursion.cpp \
853 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_hierarchical_visitor.cpp \
854 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_hv_accept.cpp \
855 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_print_visitor.cpp \
856 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_reader.cpp \
857 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_rvalue_visitor.cpp \
858 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_set_program_inouts.cpp \
859 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_validate.cpp \
860 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/ir_variable_refcount.cpp \
861 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/link_atomics.cpp \
862 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/link_functions.cpp \
863 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/link_interface_blocks.cpp \
864 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/link_uniform_block_active_visitor.cpp \
865 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/link_uniform_blocks.cpp \
866 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/link_uniform_initializers.cpp \
867 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/link_uniforms.cpp \
868 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/link_varyings.cpp \
869 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/linker.cpp \
870 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/linker_util.cpp \
871 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/loop_analysis.cpp \
872 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/loop_unroll.cpp \
873 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_blend_equation_advanced.cpp \
874 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_buffer_access.cpp \
875 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_builtins.cpp \
876 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_const_arrays_to_uniforms.cpp \
877 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_cs_derived.cpp \
878 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_discard.cpp \
879 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_discard_flow.cpp \
880 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_distance.cpp \
881 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_if_to_cond_assign.cpp \
882 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_instructions.cpp \
883 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_int64.cpp \
884 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_jumps.cpp \
885 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_mat_op_to_vec.cpp \
886 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_named_interface_blocks.cpp \
887 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_offset_array.cpp \
888 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_output_reads.cpp \
889 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_packed_varyings.cpp \
890 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_packing_builtins.cpp \
891 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_precision.cpp \
892 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_shared_reference.cpp \
893 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_subroutine.cpp \
894 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_tess_level.cpp \
895 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_ubo_reference.cpp \
896 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_variable_index_to_cond_assign.cpp \
897 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_vec_index_to_cond_assign.cpp \
898 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_vec_index_to_swizzle.cpp \
899 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_vector.cpp \
900 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_vector_derefs.cpp \
901 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_vector_insert.cpp \
902 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_vertex_id.cpp \
903 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/lower_xfb_varying.cpp \
904 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_algebraic.cpp \
905 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_array_splitting.cpp \
906 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_conditional_discard.cpp \
907 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_constant_folding.cpp \
908 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_constant_propagation.cpp \
909 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_constant_variable.cpp \
910 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_copy_propagation_elements.cpp \
911 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_dead_builtin_variables.cpp \
912 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_dead_builtin_varyings.cpp \
913 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_dead_code.cpp \
914 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_dead_code_local.cpp \
915 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_dead_functions.cpp \
916 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_flatten_nested_if_blocks.cpp \
917 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_flip_matrices.cpp \
918 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_function_inlining.cpp \
919 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_if_simplification.cpp \
920 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_minmax.cpp \
921 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_rebalance_tree.cpp \
922 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_redundant_jumps.cpp \
923 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_structure_splitting.cpp \
924 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_swizzle.cpp \
925 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_tree_grafting.cpp \
926 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/opt_vectorize.cpp \
927 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/propagate_invariance.cpp \
928 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/s_expression.cpp \
929 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/serialize.cpp \
930 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/shader_cache.cpp \
931 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/string_to_uint_map.cpp \
932 $(VBOX_MESA_SUBDIR)/src/compiler/glsl/glcpp/pp.c
933VBoxMesaLib_SOURCES += \
934 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir.c \
935 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_builtin_builder.c \
936 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_clone.c \
937 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_control_flow.c \
938 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_convert_ycbcr.c \
939 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_deref.c \
940 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_divergence_analysis.c \
941 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_dominance.c \
942 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_from_ssa.c \
943 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_gather_info.c \
944 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_gather_ssa_types.c \
945 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_gather_xfb_info.c \
946 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_gs_count_vertices.c \
947 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_inline_functions.c \
948 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_inline_uniforms.c \
949 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_instr_set.c \
950 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_linking_helpers.c \
951 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_liveness.c \
952 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_loop_analyze.c \
953 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_alpha_test.c \
954 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_alu.c \
955 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_alu_to_scalar.c \
956 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_amul.c \
957 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_array_deref_of_vec.c \
958 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_atomics_to_ssbo.c \
959 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_bit_size.c \
960 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_bitmap.c \
961 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_blend.c \
962 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_bool_to_bitsize.c \
963 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_bool_to_float.c \
964 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_bool_to_int32.c \
965 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_clamp_color_outputs.c \
966 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_clip.c \
967 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_clip_cull_distance_arrays.c \
968 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_clip_disable.c \
969 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_clip_halfz.c \
970 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_convert_alu_types.c \
971 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_discard_or_demote.c \
972 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_double_ops.c \
973 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_drawpixels.c \
974 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_fb_read.c \
975 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_flatshade.c \
976 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_flrp.c \
977 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_fp16_conv.c \
978 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_fragcolor.c \
979 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_fragcoord_wtrans.c \
980 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_frexp.c \
981 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_global_vars_to_local.c \
982 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_goto_ifs.c \
983 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_gs_intrinsics.c \
984 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_idiv.c \
985 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_image.c \
986 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_indirect_derefs.c \
987 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_input_attachments.c \
988 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_int_to_float.c \
989 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_int64.c \
990 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_interpolation.c \
991 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_io.c \
992 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_io_arrays_to_elements.c \
993 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_io_to_scalar.c \
994 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_io_to_temporaries.c \
995 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_io_to_vector.c \
996 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_is_helper_invocation.c \
997 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_load_const_to_scalar.c \
998 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_locals_to_regs.c \
999 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_mediump.c \
1000 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_memcpy.c \
1001 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_memory_model.c \
1002 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_multiview.c \
1003 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_non_uniform_access.c \
1004 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_packing.c \
1005 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_passthrough_edgeflags.c \
1006 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_patch_vertices.c \
1007 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_phis_to_scalar.c \
1008 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_pntc_ytransform.c \
1009 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_point_size.c \
1010 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_point_size_mov.c \
1011 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_printf.c \
1012 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_readonly_images_to_tex.c \
1013 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_regs_to_ssa.c \
1014 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_returns.c \
1015 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_samplers.c \
1016 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_scratch.c \
1017 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_shader_calls.c \
1018 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_ssbo.c \
1019 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_subgroups.c \
1020 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_system_values.c \
1021 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_sysvals_to_varyings.c \
1022 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_tex.c \
1023 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_texcoord_replace.c \
1024 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_to_source_mods.c \
1025 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_two_sided_color.c \
1026 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_ubo_vec4.c \
1027 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_undef_to_zero.c \
1028 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_uniforms_to_ubo.c \
1029 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_var_copies.c \
1030 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_variable_initializers.c \
1031 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_vars_to_ssa.c \
1032 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_vec_to_movs.c \
1033 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_vec3_to_vec4.c \
1034 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_viewport_transform.c \
1035 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_wpos_center.c \
1036 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_wpos_ytransform.c \
1037 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_lower_wrmasks.c \
1038 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_metadata.c \
1039 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_move_vec_src_uses_to_dest.c \
1040 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_normalize_cubemap_coords.c \
1041 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_access.c \
1042 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_barriers.c \
1043 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_combine_stores.c \
1044 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_comparison_pre.c \
1045 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_conditional_discard.c \
1046 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_constant_folding.c \
1047 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_copy_prop_vars.c \
1048 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_copy_propagate.c \
1049 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_cse.c \
1050 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_dce.c \
1051 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_dead_cf.c \
1052 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_dead_write_vars.c \
1053 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_find_array_copies.c \
1054 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_fragdepth.c \
1055 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_gcm.c \
1056 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_idiv_const.c \
1057 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_if.c \
1058 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_intrinsics.c \
1059 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_large_constants.c \
1060 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_load_store_vectorize.c \
1061 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_loop_unroll.c \
1062 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_memcpy.c \
1063 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_move.c \
1064 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_move_discards_to_top.c \
1065 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_offsets.c \
1066 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_peephole_select.c \
1067 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_phi_precision.c \
1068 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_rematerialize_compares.c \
1069 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_remove_phis.c \
1070 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_shrink_vectors.c \
1071 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_sink.c \
1072 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_trivial_continues.c \
1073 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_undef.c \
1074 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_uniform_atomics.c \
1075 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_opt_vectorize.c \
1076 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_phi_builder.c \
1077 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_print.c \
1078 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_propagate_invariant.c \
1079 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_range_analysis.c \
1080 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_remove_dead_variables.c \
1081 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_repair_ssa.c \
1082 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_schedule.c \
1083 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_search.c \
1084 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_serialize.c \
1085 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_split_per_member_structs.c \
1086 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_split_var_copies.c \
1087 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_split_vars.c \
1088 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_sweep.c \
1089 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_to_lcssa.c \
1090 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_validate.c \
1091 $(VBOX_MESA_SUBDIR)/src/compiler/nir/nir_worklist.c
1092VBoxMesaLib_SOURCES += \
1093 $(VBOX_MESA_SUBDIR)/src/compiler/spirv/gl_spirv.c \
1094 $(VBOX_MESA_SUBDIR)/src/compiler/spirv/nir_load_libclc.c \
1095 $(VBOX_MESA_SUBDIR)/src/compiler/spirv/nir_lower_libclc.c \
1096 $(VBOX_MESA_SUBDIR)/src/compiler/spirv/spirv_to_nir.c \
1097 $(VBOX_MESA_SUBDIR)/src/compiler/spirv/vtn_alu.c \
1098 $(VBOX_MESA_SUBDIR)/src/compiler/spirv/vtn_amd.c \
1099 $(VBOX_MESA_SUBDIR)/src/compiler/spirv/vtn_cfg.c \
1100 $(VBOX_MESA_SUBDIR)/src/compiler/spirv/vtn_glsl450.c \
1101 $(VBOX_MESA_SUBDIR)/src/compiler/spirv/vtn_opencl.c \
1102 $(VBOX_MESA_SUBDIR)/src/compiler/spirv/vtn_subgroup.c \
1103 $(VBOX_MESA_SUBDIR)/src/compiler/spirv/vtn_variables.c
1104VBoxMesaLib_SOURCES += \
1105 $(VBOX_MESA_SUBDIR)/src/mapi/glapi/glapi.c \
1106 $(VBOX_MESA_SUBDIR)/src/mapi/glapi/glapi_dispatch.c \
1107 $(VBOX_MESA_SUBDIR)/src/mapi/glapi/glapi_entrypoint.c \
1108 $(VBOX_MESA_SUBDIR)/src/mapi/glapi/glapi_getproc.c \
1109 $(VBOX_MESA_SUBDIR)/src/mapi/glapi/glapi_nop.c \
1110 $(VBOX_MESA_SUBDIR)/src/mapi/u_current.c \
1111 $(VBOX_MESA_SUBDIR)/src/mapi/u_execmem.c
1112
1113# 32 bit lib for 64 bit build
1114VBoxMesaLib-x86_EXTENDS = VBoxMesaLib
1115VBoxMesaLib-x86_BLD_TRG_ARCH = x86
1116
1117
1118#
1119# VBoxMesaWglLib
1120#
1121VBoxMesaWglLib_TEMPLATE = VBoxMesa3DGuestR3Lib
1122VBoxMesaWglLib_INCS = \
1123 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/wgl
1124VBoxMesaWglLib_SOURCES = \
1125 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/wgl/stw_context.c \
1126 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/wgl/stw_device.c \
1127 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/wgl/stw_ext_context.c \
1128 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/wgl/stw_ext_extensionsstring.c \
1129 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/wgl/stw_ext_pbuffer.c \
1130 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/wgl/stw_ext_pixelformat.c \
1131 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/wgl/stw_ext_rendertexture.c \
1132 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/wgl/stw_ext_swapinterval.c \
1133 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/wgl/stw_framebuffer.c \
1134 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/wgl/stw_getprocaddress.c \
1135 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/wgl/stw_nopfuncs.c \
1136 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/wgl/stw_pixelformat.c \
1137 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/wgl/stw_st.c \
1138 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/wgl/stw_tls.c
1139VBoxMesaWglLib_SOURCES += \
1140 $(VBOX_MESA_SUBDIR)/src/gallium/targets/libgl-gdi/stw_wgl.c
1141
1142# 32 bit lib for 64 bit build
1143VBoxMesaWglLib-x86_EXTENDS = VBoxMesaWglLib
1144VBoxMesaWglLib-x86_BLD_TRG_ARCH = x86
1145
1146
1147#
1148# VBoxMesaGalliumAuxLib
1149#
1150VBoxMesaGalliumAuxLib_TEMPLATE = VBoxMesa3DGuestR3Lib
1151VBoxMesaGalliumAuxLib_INCS = \
1152 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir
1153
1154# Auto-generated
1155VBoxMesaGalliumAuxLib_SOURCES = \
1156 $(VBoxMesaGalliumAuxLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/indices/u_indices_gen.c \
1157 $(VBoxMesaGalliumAuxLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/indices/u_unfilled_gen.c
1158
1159$$(VBoxMesaGalliumAuxLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/indices/u_indices_gen.c: \
1160 $(VBOX_MESA_PATH)/src/gallium/auxiliary/indices/u_indices_gen.py | $$(dir $$@)
1161 $(call MSG_GENERATE,python,$@,$$@)
1162 $(QUIET)$(PYTHON_CMD) $< >$@
1163
1164$$(VBoxMesaGalliumAuxLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/indices/u_unfilled_gen.c: \
1165 $(VBOX_MESA_PATH)/src/gallium/auxiliary/indices/u_unfilled_gen.py | $$(dir $$@)
1166 $(call MSG_GENERATE,python,$@,$$@)
1167 $(QUIET)$(PYTHON_CMD) $< >$@
1168
1169VBoxMesaGalliumAuxLib_SOURCES += \
1170 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/cso_cache/cso_cache.c \
1171 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/cso_cache/cso_context.c \
1172 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/cso_cache/cso_hash.c \
1173 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_context.c \
1174 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_fs.c \
1175 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_gs.c \
1176 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pipe_aaline.c \
1177 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pipe_aapoint.c \
1178 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pipe.c \
1179 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pipe_clip.c \
1180 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pipe_cull.c \
1181 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pipe_flatshade.c \
1182 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pipe_offset.c \
1183 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pipe_pstipple.c \
1184 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pipe_stipple.c \
1185 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pipe_twoside.c \
1186 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pipe_unfilled.c \
1187 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pipe_user_cull.c \
1188 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pipe_util.c \
1189 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pipe_validate.c \
1190 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pipe_vbuf.c \
1191 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pipe_wide_line.c \
1192 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pipe_wide_point.c \
1193 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_prim_assembler.c \
1194 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pt.c \
1195 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pt_emit.c \
1196 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pt_fetch.c \
1197 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pt_fetch_shade_emit.c \
1198 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c \
1199 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pt_post_vs.c \
1200 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pt_so_emit.c \
1201 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pt_util.c \
1202 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_pt_vsplit.c \
1203 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_tess.c \
1204 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_vertex.c \
1205 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_vs.c \
1206 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_vs_exec.c \
1207 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/draw/draw_vs_variant.c \
1208 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/driver_ddebug/dd_context.c \
1209 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/driver_ddebug/dd_draw.c \
1210 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/driver_ddebug/dd_screen.c \
1211 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/driver_noop/noop_pipe.c \
1212 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/driver_noop/noop_state.c \
1213 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/driver_rbug/rbug_context.c \
1214 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/driver_rbug/rbug_core.c \
1215 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/driver_rbug/rbug_objects.c \
1216 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/driver_rbug/rbug_screen.c \
1217 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/driver_trace/tr_context.c \
1218 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/driver_trace/tr_dump.c \
1219 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/driver_trace/tr_dump_state.c \
1220 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/driver_trace/tr_screen.c \
1221 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/driver_trace/tr_texture.c \
1222 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/hud/font.c \
1223 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/hud/hud_context.c \
1224 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/hud/hud_cpu.c \
1225 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/hud/hud_nic.c \
1226 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/hud/hud_cpufreq.c \
1227 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/hud/hud_diskstat.c \
1228 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/hud/hud_sensors_temp.c \
1229 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/hud/hud_driver_query.c \
1230 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/hud/hud_fps.c \
1231 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/indices/u_primconvert.c \
1232 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/os/os_process.c \
1233 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c \
1234 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/pipebuffer/pb_bufmgr_cache.c \
1235 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c \
1236 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c \
1237 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c \
1238 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/pipebuffer/pb_cache.c \
1239 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/pipebuffer/pb_slab.c \
1240 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/pipebuffer/pb_validate.c \
1241 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/postprocess/pp_celshade.c \
1242 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/postprocess/pp_colors.c \
1243 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/postprocess/pp_init.c \
1244 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/postprocess/pp_mlaa.c \
1245 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/postprocess/pp_program.c \
1246 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/postprocess/pp_run.c \
1247 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/rbug/rbug_connection.c \
1248 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/rbug/rbug_context.c \
1249 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/rbug/rbug_core.c \
1250 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/rbug/rbug_demarshal.c \
1251 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/rbug/rbug_shader.c \
1252 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/rbug/rbug_texture.c \
1253 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/rtasm/rtasm_cpu.c \
1254 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/rtasm/rtasm_execmem.c \
1255 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/rtasm/rtasm_x86sse.c \
1256 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_aa_point.c \
1257 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_build.c \
1258 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_dump.c \
1259 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_dynamic_indexing.c \
1260 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_exec.c \
1261 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_emulate.c \
1262 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_from_mesa.c \
1263 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_info.c \
1264 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_iterate.c \
1265 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_lowering.c \
1266 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_parse.c \
1267 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_point_sprite.c \
1268 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_sanity.c \
1269 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_scan.c \
1270 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_strings.c \
1271 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_text.c \
1272 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_transform.c \
1273 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_two_side.c \
1274 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_ureg.c \
1275 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_util.c \
1276 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/tgsi/tgsi_vpos.c \
1277 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/translate/translate.c \
1278 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/translate/translate_cache.c \
1279 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/translate/translate_generic.c \
1280 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/translate/translate_sse.c \
1281 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_async_debug.c \
1282 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_bitmask.c \
1283 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_blitter.c \
1284 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_cache.c \
1285 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_compute.c \
1286 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_debug_flush.c \
1287 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_debug_image.c \
1288 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_dl.c \
1289 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_draw.c \
1290 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_draw_quad.c \
1291 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_driconf.c \
1292 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_dump_defines.c \
1293 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_dump_state.c \
1294 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_framebuffer.c \
1295 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_gen_mipmap.c \
1296 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_handle_table.c \
1297 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_helpers.c \
1298 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_index_modify.c \
1299 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_linear.c \
1300 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_live_shader_cache.c \
1301 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_log.c \
1302 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_network.c \
1303 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_prim.c \
1304 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_prim_restart.c \
1305 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_pstipple.c \
1306 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_resource.c \
1307 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_sampler.c \
1308 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_screen.c \
1309 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_simple_shaders.c \
1310 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_split_draw.c \
1311 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_suballoc.c \
1312 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_surface.c \
1313 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_tests.c \
1314 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_texture.c \
1315 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_tile.c \
1316 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_transfer.c \
1317 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_transfer_helper.c \
1318 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_threaded_context.c \
1319 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_upload_mgr.c \
1320 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_vbuf.c \
1321 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/util/u_vertex_state_cache.c \
1322 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/nir/tgsi_to_nir.c \
1323 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/nir/nir_to_tgsi.c \
1324 $(VBOX_MESA_SUBDIR)/src/gallium/auxiliary/nir/nir_draw_helpers.c
1325
1326# 32 bit lib for 64 bit build
1327VBoxMesaGalliumAuxLib-x86_EXTENDS = VBoxMesaGalliumAuxLib
1328VBoxMesaGalliumAuxLib-x86_BLD_TRG_ARCH = x86
1329
1330
1331#
1332# VBoxMesaNineLib
1333#
1334VBoxMesaNineLib_TEMPLATE = VBoxMesa3DGuestR3Lib
1335VBoxMesaNineLib_INCS = \
1336 $(VBoxMesaLib_0_OUTDIR)/$(VBOX_MESA_SUBDIR)/src/compiler/nir \
1337 $(VBOX_MESA_SUBDIR)/include/D3D9
1338VBoxMesaNineLib_DEFS.win = COBJMACROS INC_OLE2
1339# -wd4028: formal parameter 4 different from declaration
1340# 'nine_context_set_vertex_shader_constant_f' parameter is declared 'const unsigned pConstantData_size'
1341# but autogenerated code produces 'unsigned pConstantData_size'.
1342VBoxMesaNineLib_CFLAGS.win = -wd4028
1343VBoxMesaNineLib_SOURCES = \
1344 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/adapter9.c \
1345 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/authenticatedchannel9.c \
1346 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/basetexture9.c \
1347 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/buffer9.c \
1348 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/cryptosession9.c \
1349 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/cubetexture9.c \
1350 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/device9.c \
1351 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/device9ex.c \
1352 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/device9video.c \
1353 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/guid.c \
1354 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/indexbuffer9.c \
1355 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/iunknown.c \
1356 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/nine_buffer_upload.c \
1357 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/nine_debug.c \
1358 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/nine_dump.c \
1359 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/nine_ff.c \
1360 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/nine_helpers.c \
1361 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/nine_lock.c \
1362 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/nine_pipe.c \
1363 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/nine_queue.c \
1364 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/nine_quirk.c \
1365 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/nine_shader.c \
1366 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/nine_state.c \
1367 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/nineexoverlayextension.c \
1368 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/pixelshader9.c \
1369 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/query9.c \
1370 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/resource9.c \
1371 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/stateblock9.c \
1372 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/surface9.c \
1373 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/swapchain9.c \
1374 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/swapchain9ex.c \
1375 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/texture9.c \
1376 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/threadpool.c \
1377 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/vertexbuffer9.c \
1378 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/vertexdeclaration9.c \
1379 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/vertexshader9.c \
1380 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/volume9.c \
1381 $(VBOX_MESA_SUBDIR)/src/gallium/frontends/nine/volumetexture9.c
1382
1383# 32 bit lib for 64 bit build
1384VBoxMesaNineLib-x86_EXTENDS = VBoxMesaNineLib
1385VBoxMesaNineLib-x86_BLD_TRG_ARCH = x86
1386
1387
1388#
1389# VBoxMesaSVGALib
1390#
1391VBoxMesaSVGALib_TEMPLATE = VBoxMesa3DGuestR3Lib
1392VBoxMesaSVGALib_INCS = \
1393 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/include
1394VBoxMesaSVGALib_SOURCES = \
1395 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_cmd.c \
1396 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_cmd_vgpu10.c \
1397 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_context.c \
1398 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_draw.c \
1399 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_draw_arrays.c \
1400 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_draw_elements.c \
1401 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_format.c \
1402 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_link.c \
1403 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_pipe_blend.c \
1404 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_pipe_blit.c \
1405 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_pipe_clear.c \
1406 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_pipe_constants.c \
1407 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_pipe_depthstencil.c \
1408 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_pipe_draw.c \
1409 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_pipe_flush.c \
1410 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_pipe_fs.c \
1411 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_pipe_gs.c \
1412 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_pipe_misc.c \
1413 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_pipe_query.c \
1414 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_pipe_rasterizer.c \
1415 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_pipe_sampler.c \
1416 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_pipe_streamout.c \
1417 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_pipe_ts.c \
1418 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_pipe_vertex.c \
1419 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_pipe_vs.c \
1420 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_resource.c \
1421 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_resource_buffer.c \
1422 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_resource_buffer_upload.c \
1423 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_resource_texture.c \
1424 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_sampler_view.c \
1425 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_screen.c \
1426 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_screen_cache.c \
1427 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_shader.c \
1428 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_state.c \
1429 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_state_constants.c \
1430 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_state_framebuffer.c \
1431 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_state_fs.c \
1432 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_state_gs.c \
1433 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_state_need_swtnl.c \
1434 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_state_rss.c \
1435 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_state_sampler.c \
1436 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_state_tgsi_transform.c \
1437 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_state_ts.c \
1438 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_state_tss.c \
1439 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_state_vdecl.c \
1440 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_state_vs.c \
1441 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_surface.c \
1442 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_swtnl_backend.c \
1443 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_swtnl_draw.c \
1444 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_swtnl_state.c \
1445 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_tgsi.c \
1446 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_tgsi_decl_sm30.c \
1447 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_tgsi_insn.c \
1448 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/svga_tgsi_vgpu10.c
1449
1450# 32 bit lib for 64 bit build
1451VBoxMesaSVGALib-x86_EXTENDS = VBoxMesaSVGALib
1452VBoxMesaSVGALib-x86_BLD_TRG_ARCH = x86
1453
1454
1455#
1456# VBoxMesaSVGAWinsysLib
1457#
1458VBoxMesaSVGAWinsysLib_TEMPLATE = VBoxMesa3DGuestR3Lib
1459VBoxMesaSVGAWinsysLib_INCS += \
1460 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga/include \
1461 $(VBOX_MESA_SUBDIR)/src/gallium/drivers/svga
1462VBoxMesaSVGAWinsysLib_SOURCES = \
1463 $(VBOX_MESA_SUBDIR)/src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c \
1464 $(VBOX_MESA_SUBDIR)/src/gallium/winsys/svga/drm/vmw_buffer.c \
1465 $(VBOX_MESA_SUBDIR)/src/gallium/winsys/svga/drm/vmw_context.c \
1466 $(VBOX_MESA_SUBDIR)/src/gallium/winsys/svga/drm/vmw_fence.c \
1467 $(VBOX_MESA_SUBDIR)/src/gallium/winsys/svga/drm/vmw_query.c \
1468 $(VBOX_MESA_SUBDIR)/src/gallium/winsys/svga/drm/vmw_screen_pools.c \
1469 $(VBOX_MESA_SUBDIR)/src/gallium/winsys/svga/drm/vmw_screen_svga.c \
1470 $(VBOX_MESA_SUBDIR)/src/gallium/winsys/svga/drm/vmw_shader.c \
1471 $(VBOX_MESA_SUBDIR)/src/gallium/winsys/svga/drm/vmw_surface.c
1472
1473# These will be reimplemented for WDDM
1474# $(VBOX_MESA_SUBDIR)/src/gallium/winsys/svga/drm/vmw_screen.c
1475# $(VBOX_MESA_SUBDIR)/src/gallium/winsys/svga/drm/vmw_screen_dri.c
1476# $(VBOX_MESA_SUBDIR)/src/gallium/winsys/svga/drm/vmw_screen_ioctl.c
1477
1478# 32 bit lib for 64 bit build
1479VBoxMesaSVGAWinsysLib-x86_EXTENDS = VBoxMesaSVGAWinsysLib
1480VBoxMesaSVGAWinsysLib-x86_BLD_TRG_ARCH = x86
1481
1482
1483include $(FILE_KBUILD_SUB_FOOTER)
1484
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette