summaryrefslogtreecommitdiffstats
path: root/src/mesa/swrast/s_context.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-09-17 14:50:48 -0600
committerBrian Paul <brianp@vmware.com>2011-09-17 14:57:40 -0600
commitbaeefef2c0445bfd717a3086fdd9b5bd5d9cb675 (patch)
tree65c6a77f82a9e8b9eb5b58818bea7e226d1f12bc /src/mesa/swrast/s_context.c
parentce82914f5ad4bb9148370826099925590e9798fd (diff)
downloadexternal_mesa3d-baeefef2c0445bfd717a3086fdd9b5bd5d9cb675.zip
external_mesa3d-baeefef2c0445bfd717a3086fdd9b5bd5d9cb675.tar.gz
external_mesa3d-baeefef2c0445bfd717a3086fdd9b5bd5d9cb675.tar.bz2
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_context.c b/src/mesa/swrast/s_context.c
index 963b705..7651eaf 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"