llvmpipe: Drop the aos format conversion.
[mesa.git] / src / gallium / drivers / llvmpipe / SConscript
index 840cb0950ec362a90be6863f0a567d26f7ba4c77..3549f8c9d343afa379ca9d26d3bbb50af428a456 100644 (file)
@@ -18,33 +18,16 @@ env.CodeGenerate(
        command = 'python $SCRIPT $SOURCE > $TARGET'
 )
 
+# XXX: Our dependency scanner only finds depended modules in relative dirs.
+env.Depends('lp_tile_soa.c', [
+    '#src/gallium/auxiliary/util/u_format_parse.py', 
+    '#src/gallium/auxiliary/util/u_format_pack.py', 
+    '#src/gallium/auxiliary/util/u_format_access.py',
+])
+
 llvmpipe = env.ConvenienceLibrary(
        target = 'llvmpipe',
        source = [
-               'lp_bld_alpha.c',
-               'lp_bld_arit.c',
-               'lp_bld_blend_aos.c',
-               'lp_bld_blend_logicop.c',
-               'lp_bld_blend_soa.c',
-               'lp_bld_const.c',
-               'lp_bld_conv.c',
-               'lp_bld_debug.c',
-               'lp_bld_depth.c',
-               'lp_bld_flow.c',
-               'lp_bld_format_aos.c',
-               'lp_bld_format_query.c',
-               'lp_bld_format_soa.c',
-               'lp_bld_interp.c',
-               'lp_bld_intr.c',
-               'lp_bld_logic.c',
-               'lp_bld_misc.cpp',
-               'lp_bld_pack.c',
-               'lp_bld_sample.c',
-               'lp_bld_sample_soa.c',
-               'lp_bld_struct.c',
-               'lp_bld_swizzle.c',
-               'lp_bld_tgsi_soa.c',            
-               'lp_bld_type.c',
                'lp_buffer.c',
                'lp_clear.c',
                'lp_context.c',
@@ -76,6 +59,7 @@ llvmpipe = env.ConvenienceLibrary(
                'lp_surface.c',
                'lp_tex_sample_llvm.c',
                'lp_texture.c',
+               'lp_tile_image.c',
                'lp_tile_soa.c',
        ])
 
@@ -86,7 +70,6 @@ if env['platform'] != 'embedded':
     env.Prepend(LIBS = [llvmpipe] + gallium)
 
     tests = [
-        'format',
         'blend',
         'conv',
     ]