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/swrast/s_context.c | |
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/swrast/s_context.c')
-rw-r--r-- | src/mesa/swrast/s_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_context.c b/src/mesa/swrast/s_context.c index 963b7056be5..7651eaf22ee 100644 --- a/src/mesa/swrast/s_context.c +++ b/src/mesa/swrast/s_context.c @@ -31,7 +31,6 @@ #include "main/colormac.h" #include "main/mtypes.h" #include "main/teximage.h" -#include "main/texfetch.h" #include "program/prog_parameter.h" #include "program/prog_statevars.h" #include "swrast.h" @@ -40,6 +39,7 @@ #include "s_lines.h" #include "s_points.h" #include "s_span.h" +#include "s_texfetch.h" #include "s_triangle.h" #include "s_texfilter.h" |