Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-17 | glsl/pp: Remove sl_pp_get_extension_state(). | Michal Krol | |
Parse extension tokens to track current state of extension enables. | |||
2010-02-16 | sl/pp: re-do extension testing code | Brian Paul | |
The #extension directive should not effect which extension preprocessor symbols are defined/undefined; only whether/how the compiler accepts language features defined by the extension. | |||
2010-02-15 | glsl/pp: Fix handling of if/elif/else cases. | Michal Krol | |
Once if/elif evalutes to true, all subsequent conditions are always false. | |||
2010-02-10 | glsl/pp: fix extension enable/disable options | Brian Paul | |
Now the #extension name: disable/enable flags do the right thing. Fixes glean/glsl1 "Preprocessor test (extension test 3)" | |||
2010-02-10 | Simplify GLSL extension mechanism. | Michal Krol | |
Since extension name and extension name string are the same, collapse them into one name. | |||
2009-12-20 | glsl: Do syntax parsing inline with processing. | Michal Krol | |
2009-12-20 | glsl/pp: Do processing inline with tokenisation. | Michal Krol | |
2009-12-20 | glsl/pp: Report correct error line for purify and tokeniser errors. | Michal Krol | |
2009-12-10 | glsl/pp: Add support for user-defined macros. | Michal Krol | |
2009-12-10 | glsl/pp: Add sl_pp_context_add_extension(). | Michal Krol | |
This way third parties are able to add supported extension strings. | |||
2009-11-21 | glsl/pp: Do purification and tokenisation in a single step. | Michal Krol | |
2009-09-18 | glsl/pp: Define a public interface for external modules. | Michal Krol | |
Make sl_pp_context struct opaque. Move all public declarations to sl_pp_public.h. | |||
2009-09-17 | glsl/pp: Add remaining error messages. | Michal Krol | |
2009-09-14 | glsl/pp: Add a dictionary to a context. | Michal Krol | |
2009-09-07 | glsl: Handle file numbering. | Michal Krol | |
2009-09-07 | glsl: Correctly handle line numbering. | Michal Krol | |
2009-09-07 | glsl: Implement `error' preprocessor directive. | Michal Krol | |
2009-09-07 | glsl: Allow for preprocessor macro redefinition. | Michal Krol | |
2009-09-07 | glsl: Support if preprocessor directive and friends. | Michal Krol | |
2009-09-07 | glsl: Rename sl_pp_context_add_str to sl_pp_context_add_unique_str. | Michal Krol | |
Return the same offset for same strings. Allows to compare strings by comparing their's offsets. | |||
2009-09-07 | glsl: Parse define directive in preprocessor. | Michal Krol | |
2009-09-07 | glsl: Simplify directive parser skeleton. | Michal Krol | |
2009-09-07 | glsl: Introduce sl_pp_context and maintain a reuseable pool of strings. | Michal Krol | |