summaryrefslogtreecommitdiff
path: root/src/mesa/main/nvprogram.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-03-19 05:34:24 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-03-19 05:34:24 +0000
commit451566305287161d51eb5643a5fd398809ac03c1 (patch)
tree90c693fd9a23f9be19619720ae8914e1e0e4bda6 /src/mesa/main/nvprogram.h
parent762c115242d8f410b7a54b3bc6e3d677755a9c1e (diff)
Rewrite of fragment program named parameters, constants, etc. Not done.
Diffstat (limited to 'src/mesa/main/nvprogram.h')
-rw-r--r--src/mesa/main/nvprogram.h22
1 files changed, 1 insertions, 21 deletions
diff --git a/src/mesa/main/nvprogram.h b/src/mesa/main/nvprogram.h
index b41dc95097..cb61444905 100644
--- a/src/mesa/main/nvprogram.h
+++ b/src/mesa/main/nvprogram.h
@@ -1,4 +1,4 @@
-/* $Id: nvprogram.h,v 1.4 2003/02/25 19:30:29 brianp Exp $ */
+/* $Id: nvprogram.h,v 1.5 2003/03/19 05:34:25 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -32,26 +32,6 @@
#define NVPROGRAM_H
-enum symbol_type
-{
- Definition,
- Declaration
-};
-
-
-extern void
-_mesa_add_symbol(struct symbol_table *symbolTable,
- const char *name, enum symbol_type type,
- const GLfloat *value);
-
-extern GLboolean
-_mesa_lookup_symbol(const struct symbol_table *symbolTable,
- const char *name, GLfloat *value);
-
-extern void
-_mesa_assign_program_registers(struct symbol_table *symbolTable);
-
-
extern void
_mesa_set_program_error(GLcontext *ctx, GLint pos, const char *string);