summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/dlist.c
diff options
context:
space:
mode:
authorMarek Olšák <marek.olsak@amd.com>2015-09-27 21:28:22 +0200
committerMarek Olšák <marek.olsak@amd.com>2015-10-03 22:06:08 +0200
commit4b8bb2f559b75c953e87c7b6bda17b155a87df15 (patch)
treebefb961ff2ce47475179397a1f7db0e7ba32e298 /src/mesa/main/dlist.c
parent72a5dff9cbc9ec9edee9e9ef539e4cb3f9051903 (diff)
downloadexternal_mesa3d-4b8bb2f559b75c953e87c7b6bda17b155a87df15.zip
external_mesa3d-4b8bb2f559b75c953e87c7b6bda17b155a87df15.tar.gz
external_mesa3d-4b8bb2f559b75c953e87c7b6bda17b155a87df15.tar.bz2
mesa: remove Driver.SaveFlushVertices
Nothing overrides it. Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r--src/mesa/main/dlist.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c
index 5554738..944be25 100644
--- a/src/mesa/main/dlist.c
+++ b/src/mesa/main/dlist.c
@@ -105,13 +105,12 @@ struct gl_list_extensions
* \param ctx GL context.
*
* Checks if dd_function_table::SaveNeedFlush is marked to flush
- * stored (save) vertices, and calls
- * dd_function_table::SaveFlushVertices if so.
+ * stored (save) vertices, and calls vbo_save_SaveFlushVertices if so.
*/
#define SAVE_FLUSH_VERTICES(ctx) \
do { \
if (ctx->Driver.SaveNeedFlush) \
- ctx->Driver.SaveFlushVertices(ctx); \
+ vbo_save_SaveFlushVertices(ctx); \
} while (0)