summaryrefslogtreecommitdiff
path: root/src/glsl/glcpp
AgeCommit message (Expand)AuthorFilesLines
2014-12-12glcpp: Make tests write .out files to builddir.Matt Turner2-7/+14
2014-12-07glcpp: Fix `can not` to `cannot` in error messageChris Forbes2-4/+4
2014-12-07glcpp: Disallow undefining GL_* builtin macros.Chris Forbes1-1/+2
2014-08-22glcpp: Don't use alternation in the lookahead for empty pragmas.Carl Worth1-2/+8
2014-08-20glcpp: Fix glcpp-test-cr-lf "make check" test for Mac OS XCarl Worth1-2/+2
2014-08-20glcpp: Use printf instead of "echo -n" in glcpp-testCarl Worth1-2/+2
2014-08-14glsl: add ARB_derivative control supportIlia Mirkin1-0/+3
2014-08-07glsl/glcpp: Rename one test to avoid a duplicate test numberCarl Worth2-0/+0
2014-08-07glsl/glcpp: Fix handling of commas that result from macro expansionCarl Worth3-12/+45
2014-08-07glsl/glcpp: Integrate recent glcpp-test-cr-lf test into "make check"Carl Worth2-13/+37
2014-08-07glsl/glcpp: Fix glcpp-test to correctly extract test-specific argumentsCarl Worth1-1/+1
2014-08-07glsl/glcpp: Fix line-continuation code to handle multiple newline flavorsCarl Worth1-9/+87
2014-08-07glsl/glcpp: Don't include any newline characters in #error tokenCarl Worth1-1/+1
2014-08-07glsl/glcpp: Treat CR+LF pair as a single newlineCarl Worth2-5/+9
2014-08-07glsl/glcpp: Add test script for testing various line-termination charactersCarl Worth2-11/+137
2014-08-07glsl/glcpp: Fix for macros that expand to include "defined" operatorsCarl Worth3-45/+387
2014-08-07glsl/glcpp: Swallow empty #pragma directives.Carl Worth2-1/+7
2014-08-07glsl/glcpp: Fix #pragma to not over-increment the line-number countCarl Worth3-2/+12
2014-08-07glsl/glcpp: Add testing for null directives with spaces and commentsCarl Worth2-0/+18
2014-08-07glsl/glcpp: Fix NULL directives when followed by a single-line commentCarl Worth1-1/+1
2014-08-07glsl/glcpp: Add tests for #define followed by commentsCarl Worth2-2/+8
2014-08-07glsl/glcpp: Allow single-line comments immediately after #defineCarl Worth1-1/+1
2014-08-07glsl/glcpp: Add test for "#define without macro name"Carl Worth2-0/+4
2014-08-07glsl/glcpp: Add explicit error for "#define without macro name"Carl Worth3-5/+7
2014-08-04util: Move ralloc to a new src/util directory.Kenneth Graunke1-1/+1
2014-08-02define GL_OES_standard_derivatives if extension is supportedKevin Rogovin1-0/+2
2014-07-30glsl/glcpp: rename ERROR to ERROR_TOKEN to fix MSVC buildBrian Paul2-4/+4
2014-07-29glsl/glcpp: Add flex options to eliminate the default rule.Carl Worth1-1/+2
2014-07-29glsl/glcpp: Combine the two rules matching any characterCarl Worth1-6/+6
2014-07-29glsl/glcpp: Alphabetize lists of start conditionsCarl Worth1-3/+3
2014-07-29glsl/glcpp: Add a catch-all rule for unexpected characters.Carl Worth1-0/+13
2014-07-29glsl/glcpp: Treat carriage return as equivalent to line feed.Carl Worth1-9/+8
2014-07-29glsl/glcpp: Add test for a multi-line comment within an #if 0 blockCarl Worth2-0/+14
2014-07-29glsl/glcpp: Test that macro parameters substitute immediately after periodsCarl Worth2-0/+8
2014-07-29glsl/glcpp: Add (non)-support for ++ and -- operatorsCarl Worth4-1/+33
2014-07-29glsl/glcpp: Emit error for duplicate parameter name in function-like macroCarl Worth3-0/+35
2014-07-29glsl/glcpp: Add an explanatory comment for "loc != NULL" checkCarl Worth1-0/+4
2014-07-29glsl/glcpp: Drop the HASH_ prefix from token names like HASH_IFCarl Worth2-38/+39
2014-07-29glsl/glcpp: Correctly parse directives with intervening commentsCarl Worth16-110/+242
2014-07-29glsl/glcpp: Rename HASH token to HASH_TOKENCarl Worth2-5/+8
2014-07-29glsl/glcpp: Don't use start-condition stack when switching to/from <DEFINE>Carl Worth1-3/+3
2014-07-29glsl/glcpp: Add a -d/--debug option to the standalone glcpp programCarl Worth2-1/+7
2014-07-29glsl/glcpp: Fix off-by-one error in column in first-line error messagesCarl Worth17-19/+19
2014-07-29glsl/glcpp: Minor tweak to wording of error messageCarl Worth3-3/+3
2014-07-29glsl/glcpp: Stop using a lexer start condition (<SKIP>) for token skipping.Carl Worth3-63/+99
2014-07-29glsl/glcpp: Abstract a bit of common code for returning string tokensCarl Worth1-22/+18
2014-07-29glsl/glcpp: Drop extra, final newline from most outputCarl Worth130-165/+51
2014-07-29glsl/glcpp: Add testing for EOF sans newline (and fix for <DEFINE>, <COMMENT>)Carl Worth7-2/+13
2014-07-29glsl/glcpp: Remove some un-needed calls to NEWLINE_CATCHUPCarl Worth1-4/+0
2014-07-29glsl/glcpp: Add support for comments between #define and macro identifierCarl Worth3-2/+41