From 2c1912fe84d110d4c8cccc207827a154c09dd09a Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Sun, 16 Feb 2003 23:07:34 +0000 Subject: more work on DEFINE/DECLARATION statements, symbol tables --- src/mesa/main/mtypes.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/mesa/main/mtypes.h') diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 4c3fb3b..716bbfc 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -1,4 +1,4 @@ -/* $Id: mtypes.h,v 1.102 2003/01/26 14:37:15 brianp Exp $ */ +/* $Id: mtypes.h,v 1.103 2003/02/16 23:07:34 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1177,6 +1177,11 @@ struct fp_machine struct vp_instruction; struct fp_instruction; +struct symbol_table +{ + struct symbol *Head; +}; + /* Base class for any kind of program object */ struct program @@ -1208,6 +1213,7 @@ struct fragment_program GLuint InputsRead; /* Bitmask of which input regs are read */ GLuint OutputsWritten; /* Bitmask of which output regs are written to */ GLfloat LocalParams[MAX_NV_FRAGMENT_PROGRAM_PARAMS][4]; + struct symbol_table SymbolTable; }; -- cgit v1.1