summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/intel/intel_context.c
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2009-09-14 12:10:18 +0800
committerChia-I Wu <olvaffe@gmail.com>2009-09-14 13:04:58 +0800
commit73f3765270657a847eef5ffc8fb3e054638a874e (patch)
treef801c7c3c5ad0a5fbf8d34575ca5f67188e898ff /src/mesa/drivers/dri/intel/intel_context.c
parent33640499b96bc48d59fb19062ac94436180ded0b (diff)
i915: Respect mfeatures.h.
Diffstat (limited to 'src/mesa/drivers/dri/intel/intel_context.c')
-rw-r--r--src/mesa/drivers/dri/intel/intel_context.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_context.c b/src/mesa/drivers/dri/intel/intel_context.c
index 7e21b94acc..a38ecce65b 100644
--- a/src/mesa/drivers/dri/intel/intel_context.c
+++ b/src/mesa/drivers/dri/intel/intel_context.c
@@ -27,7 +27,9 @@
#include "main/glheader.h"
+#include "main/colortab.h"
#include "main/context.h"
+#include "main/convolve.h"
#include "main/arrayobj.h"
#include "main/extensions.h"
#include "main/framebuffer.h"
@@ -587,10 +589,8 @@ intelInitDriverFunctions(struct dd_function_table *functions)
functions->GetString = intelGetString;
functions->UpdateState = intelInvalidateState;
- functions->CopyColorTable = _swrast_CopyColorTable;
- functions->CopyColorSubTable = _swrast_CopyColorSubTable;
- functions->CopyConvolutionFilter1D = _swrast_CopyConvolutionFilter1D;
- functions->CopyConvolutionFilter2D = _swrast_CopyConvolutionFilter2D;
+ _MESA_INIT_COLORTABLE_FUNCTIONS(functions, _swrast_);
+ _MESA_INIT_CONVOLVE_FUNCTIONS(functions, _swrast_);
intelInitTextureFuncs(functions);
intelInitTextureImageFuncs(functions);