r300g: fix texturing with negative lod bias
[mesa.git] / src / gallium / drivers / llvmpipe / SConscript
index b9e9826e2a3c27db3a47288000c8de5e42f47cb3..543d42dadd228dc8e8bbd2efdaf2549dae0c1719 100644 (file)
@@ -38,6 +38,7 @@ llvmpipe = env.ConvenienceLibrary(
                'lp_fence.c',
                'lp_flush.c',
                'lp_jit.c',
+               'lp_memory.c',
                'lp_perf.c',
                'lp_query.c',
                'lp_rast.c',
@@ -54,13 +55,15 @@ llvmpipe = env.ConvenienceLibrary(
                'lp_state_clip.c',
                'lp_state_derived.c',
                'lp_state_fs.c',
+               'lp_state_gs.c',
                'lp_state_rasterizer.c',
                'lp_state_sampler.c',
+                'lp_state_so.c',
                'lp_state_surface.c',
                'lp_state_vertex.c',
                'lp_state_vs.c',
                'lp_surface.c',
-               'lp_tex_sample_llvm.c',
+               'lp_tex_sample.c',
                'lp_texture.c',
                'lp_tile_image.c',
                'lp_tile_soa.c',
@@ -76,8 +79,13 @@ if env['platform'] != 'embedded':
         'format',
         'blend',
         'conv',
+       'printf',
+       'sincos',
     ]
 
+    if not msvc:
+        tests.append('round')
+
     for test in tests:
         target = env.Program(
             target = 'lp_test_' + test,
@@ -85,4 +93,4 @@ if env['platform'] != 'embedded':
         )
         env.InstallProgram(target)
 
-    Export('llvmpipe')
+Export('llvmpipe')