mesa: remove _MESA_INIT_ARRAYELT_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)
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
src/mesa/main/api_arrayelt.h
src/mesa/main/dlist.c
src/mesa/vbo/vbo_exec_api.c
src/mesa/vbo/vbo_noop.c
src/mesa/vbo/vbo_save_api.c

index 61e2167f3e64805b14659c512e84c0dcd6f318ad..e250cb4c819e4ebce3c2cafc1c675c92dc4774d3 100644 (file)
 
 #include "main/mtypes.h"
 
-#define _MESA_INIT_ARRAYELT_VTXFMT(vfmt, impl)     \
-   do {                                            \
-      (vfmt)->ArrayElement = impl ## ArrayElement; \
-   } while (0)
 
 extern GLboolean _ae_create_context( struct gl_context *ctx );
 extern void _ae_destroy_context( struct gl_context *ctx );
index cfe612d92556c838fc551a61981ac3b567c4eace..900894739d802dacf8562b2fab2f8cf81a61ff38 100644 (file)
@@ -9554,7 +9554,7 @@ mesa_print_display_list(GLuint list)
 static void
 save_vtxfmt_init(GLvertexformat * vfmt)
 {
-   _MESA_INIT_ARRAYELT_VTXFMT(vfmt, _ae_);
+   vfmt->ArrayElement = _ae_ArrayElement;
 
    vfmt->Begin = save_Begin;
 
index e6787c7e49443885f3714228cb0b86b619958194..be7e74c2531933ef966c0dea23f87aa95321e7d1 100644 (file)
@@ -910,7 +910,7 @@ static void vbo_exec_vtxfmt_init( struct vbo_exec_context *exec )
    struct gl_context *ctx = exec->ctx;
    GLvertexformat *vfmt = &exec->vtxfmt;
 
-   _MESA_INIT_ARRAYELT_VTXFMT(vfmt, _ae_);
+   vfmt->ArrayElement = _ae_ArrayElement;
 
    vfmt->Begin = vbo_exec_Begin;
    vfmt->End = vbo_exec_End;
index ec8be137685efe1c95c1b299a06e3e7765ea8dbc..4b7aa5d086658f0b8e99fcc71ad1a7c3caf5b7ad 100644 (file)
@@ -422,7 +422,7 @@ _mesa_noop_EvalMesh2(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2)
 void
 _mesa_noop_vtxfmt_init(GLvertexformat * vfmt)
 {
-   _MESA_INIT_ARRAYELT_VTXFMT(vfmt, _ae_);
+   vfmt->ArrayElement = _ae_ArrayElement;
 
    vfmt->Begin = _mesa_noop_Begin;
 
index 94dc69dec33c6e4aa64b93bdf55935e6e8a5db52..0160e831cbd89dc94b28a126b5285a453a062b39 100644 (file)
@@ -1394,7 +1394,7 @@ _save_vtxfmt_init(struct gl_context *ctx)
    struct vbo_save_context *save = &vbo_context(ctx)->save;
    GLvertexformat *vfmt = &save->vtxfmt;
 
-   _MESA_INIT_ARRAYELT_VTXFMT(vfmt, _ae_);
+   vfmt->ArrayElement = _ae_ArrayElement;
 
    vfmt->Color3f = _save_Color3f;
    vfmt->Color3fv = _save_Color3fv;