summaryrefslogtreecommitdiff
path: root/src/glsl/pp/sl_pp_extension.c
AgeCommit message (Collapse)Author
2010-08-20Remove remnants of the old glsl compiler.Eric Anholt
2010-08-14glsl: Clean up header file inclusion.Vinson Lee
2010-02-17glsl/pp: Remove sl_pp_get_extension_state().Michal Krol
Parse extension tokens to track current state of extension enables.
2010-02-16sl/pp: re-do extension testing codeBrian 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-16glsl/pp: Do not try to enable extension `all'.Michal Krol
2010-02-15glsl/pp: Add asserts to check for null pointer deferences.Vinson Lee
2010-02-13glsl/pp: fix incorrect extension enable flag for warn modeBrian Paul
2010-02-10glsl/pp: fix extension enable/disable optionsBrian Paul
Now the #extension name: disable/enable flags do the right thing. Fixes glean/glsl1 "Preprocessor test (extension test 3)"
2010-02-10Simplify GLSL extension mechanism.Michal Krol
Since extension name and extension name string are the same, collapse them into one name.
2009-12-20glsl: Do syntax parsing inline with processing.Michal Krol
2009-12-10glsl/pp: Add sl_pp_context_add_extension().Michal Krol
This way third parties are able to add supported extension strings.
2009-09-24glsl/pp: Include missing headers.Michal Krol
2009-09-14glsl/pp: Support GL_ARB_draw_buffers and GL_ARB_texture_rectangle.Michal Krol
2009-09-07glsl: Implement `extension' preprocessor directive.Michal Krol
No extensions supported.