summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-06-23 02:32:39 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-06-23 02:32:39 +0000
commit837bf6e2dfe9600ed47701ec67fcf0d790776022 (patch)
tree63d1527a0314616ba4430d9f88698efd666657ef /src/mesa
parent775669f6efcc5c1ec5c6b1aa9db2b3a61d52824a (diff)
Added new bitfields to tnl_eval_store for NV_vertex_program evaluators
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/tnl/t_context.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_context.h b/src/mesa/tnl/t_context.h
index dc4cb3730c..bf8b220fcb 100644
--- a/src/mesa/tnl/t_context.h
+++ b/src/mesa/tnl/t_context.h
@@ -1,4 +1,4 @@
-/* $Id: t_context.h,v 1.41 2002/04/19 12:32:14 brianp Exp $ */
+/* $Id: t_context.h,v 1.42 2002/06/23 02:32:39 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -243,6 +243,7 @@ struct immediate
struct vertex_arrays
{
+ /* XXX move a bunch of these fields into the Attribs[] array??? */
GLvector4f Obj;
GLvector4f Normal;
struct gl_client_array Color;
@@ -385,6 +386,8 @@ struct gl_pipeline {
struct tnl_eval_store {
GLuint EvalMap1Flags;
GLuint EvalMap2Flags;
+ GLuint EvalMap1AttribFlags; /* GL_NV_vertex_program */
+ GLuint EvalMap2AttribFlags; /* GL_NV_vertex_program */
GLuint EvalNewState;
struct immediate *im; /* used for temporary data */
};