diff options
author | Michal Krol <[email protected]> | 2009-12-20 13:50:16 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-12-20 21:18:59 +0100 |
commit | d696cb279d80ccddebcb28ef6b6284bc6bb9430f (patch) | |
tree | c2607d192b151b474f80a154c8c9c846507df604 /src/glsl/pp/sl_pp_context.h | |
parent | 7631dca25bd390901036b48709e243db961d3a1f (diff) |
glsl/pp: Do processing inline with tokenisation.
Diffstat (limited to 'src/glsl/pp/sl_pp_context.h')
-rw-r--r-- | src/glsl/pp/sl_pp_context.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/glsl/pp/sl_pp_context.h b/src/glsl/pp/sl_pp_context.h index fa939143e9a..5e1c5630483 100644 --- a/src/glsl/pp/sl_pp_context.h +++ b/src/glsl/pp/sl_pp_context.h @@ -31,6 +31,7 @@ #include "sl_pp_dict.h" #include "sl_pp_macro.h" #include "sl_pp_purify.h" +#include "sl_pp_token_util.h" #define SL_PP_MAX_IF_NESTING 64 @@ -81,6 +82,8 @@ struct sl_pp_context { char *getc_buf; unsigned int getc_buf_size; unsigned int getc_buf_capacity; + + struct sl_pp_token_buffer tokens; }; #endif /* SL_PP_CONTEXT_H */ |