Merge remote branch 'origin/master' into pipe-video
[mesa.git] / src / gallium / drivers / softpipe / SConscript
index 9949a53adfd0693463c38801541156015cfdcfe9..9b2abdfd7f11caa0e18fdc2b84ef12e86b49c1b3 100644 (file)
@@ -7,7 +7,6 @@ softpipe = env.ConvenienceLibrary(
        source = [
                'sp_fs_exec.c',
                'sp_fs_sse.c',
-               'sp_buffer.c',
                'sp_clear.c',
                'sp_context.c',
                'sp_draw_arrays.c',
@@ -25,9 +24,10 @@ softpipe = env.ConvenienceLibrary(
                'sp_state_blend.c',
                'sp_state_clip.c',
                'sp_state_derived.c',
-               'sp_state_fs.c',
                'sp_state_rasterizer.c',
                'sp_state_sampler.c',
+               'sp_state_shader.c',
+               'sp_state_so.c',
                'sp_state_surface.c',
                'sp_state_vertex.c',
                'sp_surface.c',
@@ -35,7 +35,9 @@ softpipe = env.ConvenienceLibrary(
                'sp_tex_tile_cache.c',
                'sp_texture.c',
                'sp_tile_cache.c',
-               'sp_video_context.c'
+               'sp_video_context.c',
        ])
 
+env.Alias('softpipe', softpipe)
+
 Export('softpipe')