diff options
author | Brian <[email protected]> | 2008-10-06 17:10:45 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2008-10-06 17:10:45 -0600 |
commit | d055b2c001a0fb233f98c10d124b43dd2448059e (patch) | |
tree | 4a45c1e19cf209c7056c6b4617217b6d20dbd304 /src/mesa/main/api_exec.c | |
parent | f362788eae3d300e4003e8996dc79fc1947a0f60 (diff) |
mesa: fix convolve/convolution mix-ups
Diffstat (limited to 'src/mesa/main/api_exec.c')
-rw-r--r-- | src/mesa/main/api_exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c index 0c3c9c4de49..bae3bf11cb5 100644 --- a/src/mesa/main/api_exec.c +++ b/src/mesa/main/api_exec.c @@ -58,7 +58,7 @@ #include "colortab.h" #endif #include "context.h" -#if FEATURE_convolution +#if FEATURE_convolve #include "convolve.h" #endif #include "depth.h" @@ -402,7 +402,7 @@ _mesa_init_exec_table(struct _glapi_table *exec) SET_GetColorTableParameteriv(exec, _mesa_GetColorTableParameteriv); #endif -#if FEATURE_convolution +#if FEATURE_convolve SET_ConvolutionFilter1D(exec, _mesa_ConvolutionFilter1D); SET_ConvolutionFilter2D(exec, _mesa_ConvolutionFilter2D); SET_ConvolutionParameterf(exec, _mesa_ConvolutionParameterf); |