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/vbo/vbo_exec_api.c | |
parent | 43b3d3bc25e63e02b0335c3ce165fb40001906ca (diff) |
mesa: remove _MESA_INIT_EVAL_VTXFMT() macro
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/mesa/vbo/vbo_exec_api.c')
-rw-r--r-- | src/mesa/vbo/vbo_exec_api.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/mesa/vbo/vbo_exec_api.c b/src/mesa/vbo/vbo_exec_api.c index be7e74c2531..5fac363e4a9 100644 --- a/src/mesa/vbo/vbo_exec_api.c +++ b/src/mesa/vbo/vbo_exec_api.c @@ -919,7 +919,14 @@ static void vbo_exec_vtxfmt_init( struct vbo_exec_context *exec ) vfmt->CallList = _mesa_CallList; vfmt->CallLists = _mesa_CallLists; - _MESA_INIT_EVAL_VTXFMT(vfmt, vbo_exec_); + vfmt->EvalCoord1f = vbo_exec_EvalCoord1f; + vfmt->EvalCoord1fv = vbo_exec_EvalCoord1fv; + vfmt->EvalCoord2f = vbo_exec_EvalCoord2f; + vfmt->EvalCoord2fv = vbo_exec_EvalCoord2fv; + vfmt->EvalPoint1 = vbo_exec_EvalPoint1; + vfmt->EvalPoint2 = vbo_exec_EvalPoint2; + vfmt->EvalMesh1 = vbo_exec_EvalMesh1; + vfmt->EvalMesh2 = vbo_exec_EvalMesh2; vfmt->Rectf = vbo_exec_Rectf; |