Renamed softpipe directories and files to something less confusing.
authorKeith Whitwell <keith@tungstengraphics.com>
Thu, 14 Jun 2007 17:11:48 +0000 (18:11 +0100)
committerKeith Whitwell <keith@tungstengraphics.com>
Thu, 14 Jun 2007 17:11:48 +0000 (18:11 +0100)
commit6393cda6766b707ef01e925d378239a66d143ae0
tree31b5c8cc27ee16b142e27c42d5cb69f2fe9826d2
parent7050a4a7bc779b2c30fbd8244d4e77e6bd3dc30f
Renamed softpipe directories and files to something less confusing.

softpipe/state_tracker --> state_tracker/
softpipe/              --> pipe/
softpipe/generic       --> pipe/softpipe/

I don't think pipe is a great name, but I disliked all the others too.
Luckily it's fairly easy to rename with git, so this can be revisited
later.
74 files changed:
src/mesa/pipe/Makefile [moved from src/mesa/softpipe/Makefile with 100% similarity]
src/mesa/pipe/p_context.h [moved from src/mesa/softpipe/sp_context.h with 100% similarity]
src/mesa/pipe/p_defines.h [moved from src/mesa/softpipe/sp_defines.h with 100% similarity]
src/mesa/pipe/p_state.h [moved from src/mesa/softpipe/sp_state.h with 100% similarity]
src/mesa/pipe/softpipe/Makefile [moved from src/mesa/softpipe/generic/Makefile with 100% similarity]
src/mesa/pipe/softpipe/g_context.c [moved from src/mesa/softpipe/generic/g_context.c with 100% similarity]
src/mesa/pipe/softpipe/g_context.h [moved from src/mesa/softpipe/generic/g_context.h with 100% similarity]
src/mesa/pipe/softpipe/g_draw.c [moved from src/mesa/softpipe/generic/g_draw.c with 100% similarity]
src/mesa/pipe/softpipe/g_draw.h [moved from src/mesa/softpipe/generic/g_draw.h with 100% similarity]
src/mesa/pipe/softpipe/g_headers.h [moved from src/mesa/softpipe/generic/g_headers.h with 100% similarity]
src/mesa/pipe/softpipe/g_prim.h [moved from src/mesa/softpipe/generic/g_prim.h with 100% similarity]
src/mesa/pipe/softpipe/g_prim_clip.c [moved from src/mesa/softpipe/generic/g_prim_clip.c with 100% similarity]
src/mesa/pipe/softpipe/g_prim_cull.c [moved from src/mesa/softpipe/generic/g_prim_cull.c with 100% similarity]
src/mesa/pipe/softpipe/g_prim_flatshade.c [moved from src/mesa/softpipe/generic/g_prim_flatshade.c with 100% similarity]
src/mesa/pipe/softpipe/g_prim_offset.c [moved from src/mesa/softpipe/generic/g_prim_offset.c with 100% similarity]
src/mesa/pipe/softpipe/g_prim_setup.c [moved from src/mesa/softpipe/generic/g_prim_setup.c with 100% similarity]
src/mesa/pipe/softpipe/g_prim_setup.h [moved from src/mesa/softpipe/generic/g_prim_setup.h with 100% similarity]
src/mesa/pipe/softpipe/g_prim_twoside.c [moved from src/mesa/softpipe/generic/g_prim_twoside.c with 100% similarity]
src/mesa/pipe/softpipe/g_prim_unfilled.c [moved from src/mesa/softpipe/generic/g_prim_unfilled.c with 100% similarity]
src/mesa/pipe/softpipe/g_state.h [moved from src/mesa/softpipe/generic/g_state.h with 100% similarity]
src/mesa/pipe/softpipe/g_state_clip.c [moved from src/mesa/softpipe/generic/g_state_clip.c with 100% similarity]
src/mesa/pipe/softpipe/g_state_derived.c [moved from src/mesa/softpipe/generic/g_state_derived.c with 100% similarity]
src/mesa/pipe/softpipe/g_state_fs.c [moved from src/mesa/softpipe/generic/g_state_fs.c with 100% similarity]
src/mesa/pipe/softpipe/g_state_setup.c [moved from src/mesa/softpipe/generic/g_state_setup.c with 100% similarity]
src/mesa/pipe/softpipe/g_state_surface.c [moved from src/mesa/softpipe/generic/g_state_surface.c with 100% similarity]
src/mesa/pipe/softpipe/g_surface.c [moved from src/mesa/softpipe/generic/g_surface.c with 100% similarity]
src/mesa/pipe/softpipe/g_surface.h [moved from src/mesa/softpipe/generic/g_surface.h with 100% similarity]
src/mesa/pipe/softpipe/g_tile.h [moved from src/mesa/softpipe/generic/g_tile.h with 100% similarity]
src/mesa/pipe/softpipe/g_tile_fs.c [moved from src/mesa/softpipe/generic/g_tile_fs.c with 100% similarity]
src/mesa/pipe/softpipe/g_tile_output.c [moved from src/mesa/softpipe/generic/g_tile_output.c with 100% similarity]
src/mesa/pipe/softpipe/sp_context.c [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_context.h [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_draw.c [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_draw.h [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_headers.h [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_prim.h [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_prim_clip.c [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_prim_cull.c [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_prim_flatshade.c [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_prim_offset.c [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_prim_setup.c [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_prim_setup.h [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_prim_twoside.c [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_prim_unfilled.c [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_state.h [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_state_clip.c [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_state_derived.c [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_state_fs.c [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_state_setup.c [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_state_surface.c [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_surface.c [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_surface.h [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_tile.h [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_tile_fs.c [new file with mode: 0644]
src/mesa/pipe/softpipe/sp_tile_output.c [new file with mode: 0644]
src/mesa/state_tracker/Makefile [moved from src/mesa/softpipe/state_tracker/Makefile with 100% similarity]
src/mesa/state_tracker/st_atom.c [moved from src/mesa/softpipe/state_tracker/st_atom.c with 100% similarity]
src/mesa/state_tracker/st_atom.h [moved from src/mesa/softpipe/state_tracker/st_atom.h with 100% similarity]
src/mesa/state_tracker/st_atom_blend.c [moved from src/mesa/softpipe/state_tracker/st_atom_blend.c with 100% similarity]
src/mesa/state_tracker/st_atom_cbuf.c [moved from src/mesa/softpipe/state_tracker/st_atom_cbuf.c with 100% similarity]
src/mesa/state_tracker/st_atom_clip.c [moved from src/mesa/softpipe/state_tracker/st_atom_clip.c with 100% similarity]
src/mesa/state_tracker/st_atom_depth.c [moved from src/mesa/softpipe/state_tracker/st_atom_depth.c with 100% similarity]
src/mesa/state_tracker/st_atom_fs.c [moved from src/mesa/softpipe/state_tracker/st_atom_fs.c with 100% similarity]
src/mesa/state_tracker/st_atom_scissor.c [moved from src/mesa/softpipe/state_tracker/st_atom_scissor.c with 100% similarity]
src/mesa/state_tracker/st_atom_setup.c [moved from src/mesa/softpipe/state_tracker/st_atom_setup.c with 100% similarity]
src/mesa/state_tracker/st_atom_stencil.c [moved from src/mesa/softpipe/state_tracker/st_atom_stencil.c with 100% similarity]
src/mesa/state_tracker/st_atom_viewport.c [moved from src/mesa/softpipe/state_tracker/st_atom_viewport.c with 100% similarity]
src/mesa/state_tracker/st_cb_program.c [moved from src/mesa/softpipe/state_tracker/st_cb_program.c with 100% similarity]
src/mesa/state_tracker/st_context.c [moved from src/mesa/softpipe/state_tracker/st_context.c with 100% similarity]
src/mesa/state_tracker/st_context.h [moved from src/mesa/softpipe/state_tracker/st_context.h with 100% similarity]
src/mesa/state_tracker/st_draw.c [moved from src/mesa/softpipe/state_tracker/st_draw.c with 100% similarity]
src/mesa/state_tracker/st_draw.h [moved from src/mesa/softpipe/state_tracker/st_draw.h with 100% similarity]
src/mesa/state_tracker/st_program.h [moved from src/mesa/softpipe/state_tracker/st_program.h with 100% similarity]
src/mesa/state_tracker/st_public.h [moved from src/mesa/softpipe/state_tracker/st_public.h with 100% similarity]