diff options
author | Brian Paul <[email protected]> | 2011-09-17 14:50:48 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-09-17 14:57:40 -0600 |
commit | baeefef2c0445bfd717a3086fdd9b5bd5d9cb675 (patch) | |
tree | 65c6a77f82a9e8b9eb5b58818bea7e226d1f12bc /src/mesa/SConscript | |
parent | ce82914f5ad4bb9148370826099925590e9798fd (diff) |
mesa: move software texel fetch code into swrast
It's only used by swrast now so move it out of core Mesa.
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 dfc8bd4410a..ff1ffe008e0 100644 --- a/src/mesa/SConscript +++ b/src/mesa/SConscript @@ -114,7 +114,6 @@ main_sources = [ 'main/texcompress_s3tc.c', 'main/texcompress_fxt1.c', 'main/texenv.c', - 'main/texfetch.c', 'main/texformat.c', 'main/texgen.c', 'main/texgetimage.c', @@ -173,6 +172,7 @@ swrast_sources = [ 'swrast/s_span.c', 'swrast/s_stencil.c', 'swrast/s_texcombine.c', + 'swrast/s_texfetch.c', 'swrast/s_texfilter.c', 'swrast/s_texrender.c', 'swrast/s_texture.c', |