summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/mtypes.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-02-16 23:07:34 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-02-16 23:07:34 +0000
commit2c1912fe84d110d4c8cccc207827a154c09dd09a (patch)
treeccb6cfadd52472b444a27a88e088b118ec9ad910 /src/mesa/main/mtypes.h
parenta89cc0edad31001a4207e180e618004fc43c82eb (diff)
downloadexternal_mesa3d-2c1912fe84d110d4c8cccc207827a154c09dd09a.zip
external_mesa3d-2c1912fe84d110d4c8cccc207827a154c09dd09a.tar.gz
external_mesa3d-2c1912fe84d110d4c8cccc207827a154c09dd09a.tar.bz2
more work on DEFINE/DECLARATION statements, symbol tables
Diffstat (limited to 'src/mesa/main/mtypes.h')
-rw-r--r--src/mesa/main/mtypes.h8
1 files changed, 7 insertions, 1 deletions
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;
};