X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fgallium%2Fauxiliary%2Fmeson.build;h=a4dbcf7b4ca440d2959ec4845275fce1dfc0eb49;hb=88c4680b5a50ea8840c38aa0a80acde63ef1677b;hp=98542d7ef3e0f246e70f017604ed44a67c145ff4;hpb=f69bc797e15fe6beb9e439009fab55f7fae0b7f9;p=mesa.git diff --git a/src/gallium/auxiliary/meson.build b/src/gallium/auxiliary/meson.build index 98542d7ef3e..a4dbcf7b4ca 100644 --- a/src/gallium/auxiliary/meson.build +++ b/src/gallium/auxiliary/meson.build @@ -122,12 +122,6 @@ files_libgallium = files( 'indices/u_indices_priv.h', 'indices/u_primconvert.c', 'indices/u_primconvert.h', - 'os/os_memory_aligned.h', - 'os/os_memory_debug.h', - 'os/os_memory_stdc.h', - 'os/os_memory.h', - 'os/os_misc.c', - 'os/os_misc.h', 'os/os_mman.h', 'os/os_process.c', 'os/os_process.h', @@ -244,10 +238,8 @@ files_libgallium = files( 'util/u_box.h', 'util/u_cache.c', 'util/u_cache.h', - 'util/u_cpu_detect.c', - 'util/u_cpu_detect.h', - 'util/u_debug.c', - 'util/u_debug.h', + 'util/u_debug_gallium.h', + 'util/u_debug_gallium.c', 'util/u_debug_describe.c', 'util/u_debug_describe.h', 'util/u_debug_flush.c', @@ -314,9 +306,6 @@ files_libgallium = files( 'util/u_linear.h', 'util/u_log.c', 'util/u_log.h', - 'util/u_math.c', - 'util/u_math.h', - 'util/u_memory.h', 'util/u_mm.c', 'util/u_mm.h', 'util/u_network.c', @@ -324,6 +313,7 @@ files_libgallium = files( 'util/u_pack_color.h', 'util/u_pointer.h', 'util/u_prim.h', + 'util/u_prim.c', 'util/u_prim_restart.c', 'util/u_prim_restart.h', 'util/u_pstipple.c', @@ -337,6 +327,8 @@ files_libgallium = files( 'util/u_ringbuffer.h', 'util/u_sampler.c', 'util/u_sampler.h', + 'util/u_screen.c', + 'util/u_screen.h', 'util/u_simple_shaders.c', 'util/u_simple_shaders.h', 'util/u_split_prim.h', @@ -504,7 +496,7 @@ u_indices_gen_c = custom_target( 'u_indices_gen.c', input : 'indices/u_indices_gen.py', output : 'u_indices_gen.c', - command : [prog_python2, '@INPUT@'], + command : [prog_python, '@INPUT@'], capture : true, ) @@ -512,7 +504,7 @@ u_unfilled_gen_c = custom_target( 'u_unfilled_gen.c', input : 'indices/u_unfilled_gen.py', output : 'u_unfilled_gen.c', - command : [prog_python2, '@INPUT@'], + command : [prog_python, '@INPUT@'], capture : true, ) @@ -520,7 +512,7 @@ u_format_table_c = custom_target( 'u_format_table.c', input : ['util/u_format_table.py', 'util/u_format.csv'], output : 'u_format_table.c', - command : [prog_python2, '@INPUT@'], + command : [prog_python, '@INPUT@'], depend_files : files('util/u_format_pack.py', 'util/u_format_parse.py'), capture : true, )