diff options
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/api_arrayelt.h | 4 | ||||
-rw-r--r-- | src/mesa/main/dlist.c | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/src/mesa/main/api_arrayelt.h b/src/mesa/main/api_arrayelt.h index 61e2167f3e6..e250cb4c819 100644 --- a/src/mesa/main/api_arrayelt.h +++ b/src/mesa/main/api_arrayelt.h @@ -31,10 +31,6 @@ #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 ); diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index cfe612d9255..900894739d8 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -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; |