diff options
author | Brian Paul <[email protected]> | 2011-06-13 13:44:35 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-06-13 13:45:39 -0600 |
commit | 755f2e2ae597df9208523b0996bbdabf3db463b0 (patch) | |
tree | 15d1178628119fa222ace782211eb207950ff8e0 /src/mesa/SConscript | |
parent | 8852e35e29ff941172540e1ec7158b9259f46c3c (diff) |
mesa: move texrender.c to swrast
This stuff is really for software rendering, it's not core Mesa.
A small step toward pushing the FetchTexel() stuff down into swrast.
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/SConscript')
-rw-r--r-- | src/mesa/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/SConscript b/src/mesa/SConscript index fdb4d5a5814..24e2155c387 100644 --- a/src/mesa/SConscript +++ b/src/mesa/SConscript @@ -121,7 +121,6 @@ main_sources = [ 'main/texobj.c', 'main/texpal.c', 'main/texparam.c', - 'main/texrender.c', 'main/texstate.c', 'main/texstore.c', 'main/texturebarrier.c', @@ -174,6 +173,7 @@ swrast_sources = [ 'swrast/s_stencil.c', 'swrast/s_texcombine.c', 'swrast/s_texfilter.c', + 'swrast/s_texrender.c', 'swrast/s_triangle.c', 'swrast/s_zoom.c', ] |