commit | 7f76b8ffd141f3cee89b3f751e0a6985b88fa049 | [log] [tgz] |
---|---|---|
author | Brian Paul <brian.paul@tungstengraphics.com> | Fri Sep 10 01:05:39 2004 +0000 |
committer | Brian Paul <brian.paul@tungstengraphics.com> | Fri Sep 10 01:05:39 2004 +0000 |
tree | 7228a20cf305333d6e319685138bee1ca06b7573 | |
parent | 253204f9f0a1942a65e45d876f8d5f16d1a196a1 [diff] [blame] |
reset error state before parsing (David Reveman)
diff --git a/src/mesa/shader/arbprogparse.c b/src/mesa/shader/arbprogparse.c index 9d78027..5b5924c 100644 --- a/src/mesa/shader/arbprogparse.c +++ b/src/mesa/shader/arbprogparse.c
@@ -3762,6 +3762,9 @@ GLubyte *strz = NULL; static int arbprogram_syn_is_ok = 0; /* XXX temporary */ + /* Reset error state */ + _mesa_set_program_error(ctx, -1, NULL); + #if DEBUG_PARSING fprintf (stderr, "Loading grammar text!\n"); #endif