mesa: remove _MESA_INIT_DLIST_VTXFMT() macro
authorBrian Paul <brianp@vmware.com>
Thu, 2 May 2013 01:15:32 +0000 (19:15 -0600)
committerBrian Paul <brianp@vmware.com>
Thu, 2 May 2013 15:03:15 +0000 (09:03 -0600)
Just expand the code.

Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
src/mesa/main/dlist.c
src/mesa/main/dlist.h
src/mesa/vbo/vbo_exec_api.c
src/mesa/vbo/vbo_noop.c
src/mesa/vbo/vbo_save_api.c

index 0d12e306656a87b1ae9f5a0996e93236275c4fba..cfe612d92556c838fc551a61981ac3b567c4eace 100644 (file)
@@ -9558,7 +9558,8 @@ save_vtxfmt_init(GLvertexformat * vfmt)
 
    vfmt->Begin = save_Begin;
 
-   _MESA_INIT_DLIST_VTXFMT(vfmt, save_);
+   vfmt->CallList = save_CallList;
+   vfmt->CallLists = save_CallLists;
 
    vfmt->Color3f = save_Color3f;
    vfmt->Color3fv = save_Color3fv;
index b67f5b535e71e331db7a3f5f612216679579e0a1..4672d3e60f0170590a90776ac69d382924b94d24 100644 (file)
 #include "main/mtypes.h"
 
 
-#define _MESA_INIT_DLIST_VTXFMT(vfmt, impl)  \
-   do {                                      \
-      (vfmt)->CallList  = impl ## CallList;  \
-      (vfmt)->CallLists = impl ## CallLists; \
-   } while (0)
-
 GLboolean GLAPIENTRY
 _mesa_IsList(GLuint list);
 void GLAPIENTRY
index 53889d082b341d5b44ba49f77519bdc061957122..e6787c7e49443885f3714228cb0b86b619958194 100644 (file)
@@ -916,7 +916,9 @@ static void vbo_exec_vtxfmt_init( struct vbo_exec_context *exec )
    vfmt->End = vbo_exec_End;
    vfmt->PrimitiveRestartNV = vbo_exec_PrimitiveRestartNV;
 
-   _MESA_INIT_DLIST_VTXFMT(vfmt, _mesa_);
+   vfmt->CallList = _mesa_CallList;
+   vfmt->CallLists = _mesa_CallLists;
+
    _MESA_INIT_EVAL_VTXFMT(vfmt, vbo_exec_);
 
    vfmt->Rectf = vbo_exec_Rectf;
index 6e81947b03c03bc2e258e5d0e9bb3cfeac2f47f0..ec8be137685efe1c95c1b299a06e3e7765ea8dbc 100644 (file)
@@ -426,7 +426,8 @@ _mesa_noop_vtxfmt_init(GLvertexformat * vfmt)
 
    vfmt->Begin = _mesa_noop_Begin;
 
-   _MESA_INIT_DLIST_VTXFMT(vfmt, _mesa_);
+   vfmt->CallList = _mesa_CallList;
+   vfmt->CallLists = _mesa_CallLists;
 
    vfmt->Color3f = _mesa_noop_Color3f;
    vfmt->Color3fv = _mesa_noop_Color3fv;
index a47ee7b45ef30c0d441e5a7ab398e5b70f96e4c0..94dc69dec33c6e4aa64b93bdf55935e6e8a5db52 100644 (file)
@@ -1518,7 +1518,8 @@ _save_vtxfmt_init(struct gl_context *ctx)
 
    /* This will all require us to fallback to saving the list as opcodes:
     */
-   _MESA_INIT_DLIST_VTXFMT(vfmt, _save_);       /* inside begin/end */
+   vfmt->CallList = _save_CallList;
+   vfmt->CallLists = _save_CallLists;
 
    _MESA_INIT_EVAL_VTXFMT(vfmt, _save_);