diff options
author | Michal Krol <[email protected]> | 2009-09-04 08:14:48 +0200 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-09-07 10:11:55 +0200 |
commit | f9bd6f7152047e6230c85d76e412a5bb524e0413 (patch) | |
tree | 1d6e2b6bb1d60c1eb586961b4255b5d829b710a6 /src/glsl/pp/sl_pp_context.c | |
parent | 3dc2b5f71c2a519409becb6c1f177b5981fbacf7 (diff) |
glsl: Implement `error' preprocessor directive.
Diffstat (limited to 'src/glsl/pp/sl_pp_context.c')
-rw-r--r-- | src/glsl/pp/sl_pp_context.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/pp/sl_pp_context.c b/src/glsl/pp/sl_pp_context.c index 50ec790cc50..38d633baeff 100644 --- a/src/glsl/pp/sl_pp_context.c +++ b/src/glsl/pp/sl_pp_context.c @@ -36,6 +36,7 @@ sl_pp_context_init(struct sl_pp_context *context) context->macro_tail = &context->macro; context->if_ptr = SL_PP_MAX_IF_NESTING; context->if_value = 1; + memset(context->error_msg, 0, sizeof(context->error_msg)); } void |