diff options
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/dd.h | 7 | ||||
-rw-r--r-- | src/mesa/main/dlist.c | 2 |
2 files changed, 1 insertions, 8 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 2ae2eecf5dc..43dee9ae7d6 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -793,13 +793,6 @@ struct dd_function_table { GLboolean SaveNeedFlush; /** - * Give the driver the opportunity to hook in its own vtxfmt for - * compiling optimized display lists. This is called on each valid - * glBegin() during list compilation. - */ - GLboolean (*NotifySaveBegin)( struct gl_context *ctx, GLenum mode ); - - /** * Notify driver that the special derived value _NeedEyeCoords has * changed. */ diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 944be2505b4..f63efa1acc1 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -5465,7 +5465,7 @@ save_Begin(GLenum mode) /* Give the driver an opportunity to hook in an optimized * display list compiler. */ - if (ctx->Driver.NotifySaveBegin(ctx, mode)) + if (vbo_save_NotifyBegin(ctx, mode)) return; SAVE_FLUSH_VERTICES(ctx); |