diff options
author | Brian Paul <[email protected]> | 2003-02-23 05:23:53 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-02-23 05:23:53 +0000 |
commit | 25fea6be0a210199478da48dc7cb65a0f0f8a103 (patch) | |
tree | ea5626119f92e105063e033503e58e5a502b169e /src/mesa/main/nvprogram.h | |
parent | 736d10c2741397ca43ff9c41295a81be1d358d23 (diff) |
added _mesa_find_line_column()
Diffstat (limited to 'src/mesa/main/nvprogram.h')
-rw-r--r-- | src/mesa/main/nvprogram.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mesa/main/nvprogram.h b/src/mesa/main/nvprogram.h index 5d31ebba3bf..c58b0edf5d9 100644 --- a/src/mesa/main/nvprogram.h +++ b/src/mesa/main/nvprogram.h @@ -1,4 +1,4 @@ -/* $Id: nvprogram.h,v 1.2 2003/02/16 23:07:36 brianp Exp $ */ +/* $Id: nvprogram.h,v 1.3 2003/02/23 05:23:54 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -55,6 +55,10 @@ _mesa_assign_program_registers(struct symbol_table *symbolTable); extern void _mesa_set_program_error(GLcontext *ctx, GLint pos, const char *string); +extern const char * +_mesa_find_line_column(const char *string, const char *pos, + GLint *line, GLint *col); + extern void _mesa_delete_program(GLcontext *ctx, GLuint id); |