summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/eval.h
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2013-02-19 15:23:57 -0800
committerIan Romanick <[email protected]>2013-02-20 12:46:58 -0800
commit8b586322e71d5ad0ce95d0fbcbfeb4df13f65040 (patch)
treeba19d57053874d5bd4617e3920058798da52edef /src/mesa/main/eval.h
parent83f7cde1821d8e004d49fb966a323c037631b9a2 (diff)
mesa: Don't install glEvalMesh in the beginend dispatch table
NOTE: This is a candidate for the 9.1 branch. Signed-off-by: Ian Romanick <[email protected]> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=59740 Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/eval.h')
-rw-r--r--src/mesa/main/eval.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/eval.h b/src/mesa/main/eval.h
index 1b6c704ca3b..cfde53fd6ae 100644
--- a/src/mesa/main/eval.h
+++ b/src/mesa/main/eval.h
@@ -39,6 +39,7 @@
#include "main/mfeatures.h"
#include "main/mtypes.h"
+#include <stdbool.h>
#define _MESA_INIT_EVAL_VTXFMT(vfmt, impl) \
@@ -76,7 +77,8 @@ extern GLfloat *_mesa_copy_map_points2d(GLenum target,
extern void
_mesa_install_eval_vtxfmt(struct _glapi_table *disp,
- const GLvertexformat *vfmt);
+ const GLvertexformat *vfmt,
+ bool beginend);
extern void _mesa_init_eval( struct gl_context *ctx );
extern void _mesa_free_eval_data( struct gl_context *ctx );