diff options
author | Brian Paul <[email protected]> | 2013-05-01 19:15:33 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-05-02 09:03:15 -0600 |
commit | d0102500bdc123984a2cfc95d4f2710f8c90e898 (patch) | |
tree | 9d738b87067c41dd30bd096dfa28ae438a4de9c8 /src/mesa/main/eval.h | |
parent | 43b3d3bc25e63e02b0335c3ce165fb40001906ca (diff) |
mesa: remove _MESA_INIT_EVAL_VTXFMT() macro
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/mesa/main/eval.h')
-rw-r--r-- | src/mesa/main/eval.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/mesa/main/eval.h b/src/mesa/main/eval.h index c2bb17053d5..9b6358b0cac 100644 --- a/src/mesa/main/eval.h +++ b/src/mesa/main/eval.h @@ -42,18 +42,6 @@ #include <stdbool.h> -#define _MESA_INIT_EVAL_VTXFMT(vfmt, impl) \ - do { \ - (vfmt)->EvalCoord1f = impl ## EvalCoord1f; \ - (vfmt)->EvalCoord1fv = impl ## EvalCoord1fv; \ - (vfmt)->EvalCoord2f = impl ## EvalCoord2f; \ - (vfmt)->EvalCoord2fv = impl ## EvalCoord2fv; \ - (vfmt)->EvalPoint1 = impl ## EvalPoint1; \ - (vfmt)->EvalPoint2 = impl ## EvalPoint2; \ - (vfmt)->EvalMesh1 = impl ## EvalMesh1; \ - (vfmt)->EvalMesh2 = impl ## EvalMesh2; \ - } while (0) - extern GLuint _mesa_evaluator_components( GLenum target ); |