diff options
author | Brian Paul <[email protected]> | 2009-06-08 13:53:33 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-06-08 13:53:33 -0600 |
commit | 304ba4bba44057aa21f0ae434e49b1e09ab7d039 (patch) | |
tree | 74a037bca20e17b209cb1d6d5fc879353eed19b8 /src/mesa/shader/slang | |
parent | 77c329a2773820c57e7b286858e80a596f89ef94 (diff) |
glsl: Fix preprocessor define argument parsing for dead sections.
(cherry picked from master, commit 19a54d9f1055c366fd77026dd67007a8d5921f58)
Diffstat (limited to 'src/mesa/shader/slang')
-rw-r--r-- | src/mesa/shader/slang/slang_preprocess.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/shader/slang/slang_preprocess.c b/src/mesa/shader/slang/slang_preprocess.c index ff913ad8838..fd98fae360b 100644 --- a/src/mesa/shader/slang/slang_preprocess.c +++ b/src/mesa/shader/slang/slang_preprocess.c @@ -1035,11 +1035,11 @@ preprocess_source (slang_string *output, const char *source, /* Parse optional macro parameters. */ while (prod[i++] != PARAM_END) { - if (state.cond.top->effective) { - pp_symbol *param; + pp_symbol *param; - id = (const char *) (&prod[i]); - idlen = _mesa_strlen (id); + id = (const char *) (&prod[i]); + idlen = _mesa_strlen (id); + if (state.cond.top->effective) { pp_annotate (output, "%s, ", id); param = pp_symbols_push (&symbol->parameters); if (param == NULL) |