summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/dd.h
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2013-01-16 15:07:31 -0800
committerEric Anholt <eric@anholt.net>2013-01-21 21:26:47 -0800
commit0aaf0445bac453db474cedf27f1d9f45e4acde4d (patch)
treee34aa98cc1bee6995b8eef0b3cbdfd2b20425e88 /src/mesa/main/dd.h
parent23916cae8ed3c18ae6b851365a25ccff6fcce7da (diff)
downloadexternal_mesa3d-0aaf0445bac453db474cedf27f1d9f45e4acde4d.zip
external_mesa3d-0aaf0445bac453db474cedf27f1d9f45e4acde4d.tar.gz
external_mesa3d-0aaf0445bac453db474cedf27f1d9f45e4acde4d.tar.bz2
mesa: Remove the dead PrepareExecBegin() driver hook.
This was used in i965 for a while, but no more. Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r--src/mesa/main/dd.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h
index 07787d4..f91fd41 100644
--- a/src/mesa/main/dd.h
+++ b/src/mesa/main/dd.h
@@ -723,14 +723,6 @@ struct dd_function_table {
void (*SaveFlushVertices)( struct gl_context *ctx );
/**
- * \brief Hook for drivers to prepare for a glBegin/glEnd block
- *
- * This hook is called in vbo_exec_Begin() before any action, including
- * state updates, occurs.
- */
- void (*PrepareExecBegin)( struct gl_context *ctx );
-
- /**
* 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.