summaryrefslogtreecommitdiff
path: root/src/glsl/glsl_lexer.cpp
AgeCommit message (Collapse)AuthorFilesLines
2011-03-01glsl: Remove files generated by flex and bison from GITIan Romanick1-3726/+0
2011-02-11glsl: Regenerate files modified by previous commitsIan Romanick1-217/+230
2011-01-31Convert everything from the talloc API to the ralloc API.Kenneth Graunke1-1/+1
2011-01-26glsl: Refresh autogenerated lexer fileChad Versace1-117/+118
For previous commit.
2011-01-26glsl: Refresh autogenerated parser filesChad Versace1-21/+11
For commits titled: glcpp: Conditionally define macro GL_AMD_conservative_depth glsl: Add support for AMD_conservative_depth to parser
2011-01-06glsl: Refresh autogenerated lexer and parser files.Ian Romanick1-958/+992
For the previous commit.
2010-12-14glsl: new glsl_strtod() wrapper to fix decimal point interpretationBrian Paul1-223/+220
We always want to use '.' as the decimal point. See http://bugs.freedesktop.org/show_bug.cgi?id=24531 NOTE: this is a candidate for the 7.10 branch.
2010-11-15glsl: Refresh autogenerated lexer and parser files.Kenneth Graunke1-899/+1052
For the last three commits.
2010-10-19glsl: Commit generated file glsl_lexer.cppChad Versace1-312/+312
Changes are due to commit "glsl: Fix lexer rule for ^=".
2010-10-15glsl: Change generated file glsl_lexer.cppChad Versace1-205/+215
2010-10-11glsl: Changes in generated file glsl_lexer.cppChad Versace1-691/+716
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
2010-10-08glsl: Regenerate files changes by previous commitIan Romanick1-111/+112
2010-10-08glsl: Regenerate files modified by previous commitsIan Romanick1-8/+22
2010-09-07glsl: Recognize GLSL ES 1.00 keywords.Kenneth Graunke1-214/+210
2010-08-30glsl2: Commit generated files changed by previous commitIan Romanick1-821/+897
2010-08-13glsl2: Commit generated file change by commit ab18be74Ian Romanick1-10/+2
This would have been included in commit 23f6017d, but make wisely did not regenerate the file when the .lpp file did not change.
2010-08-13glsl2: Commit generated files changed by previous two commitsIan Romanick1-16/+16
2010-08-11glsl2: Commit generated files changed by previous commitIan Romanick1-228/+252
2010-08-07glsl2: Add the 1.30 reserved keywords.Kenneth Graunke1-409/+634
2010-08-02glsl2: Add support for floating constants like "1f".Eric Anholt1-426/+434
Fixes glsl-floating-constant-120.
2010-08-01glsl2: Make non-square matrix keywords not keywords pre-120.Eric Anholt1-232/+179
Fixes glsl-mat-110.
2010-07-28glsl2: Make lowp, mediump, highp, and precision identifiers pre-1.20.Eric Anholt1-12/+40
Fixes glsl-precision-110.
2010-07-28glsl2: Parser support for GL_ARB_fragment_coord_conventionsIan Romanick1-505/+523
2010-07-28glsl: Add generated files from flex/bison.Carl Worth1-0/+3174
The mesa build environment does not (currently) accept external dependencies such as flex and bison. The compromise is to commit the generated output files, (in spite of the pain that comes from having generated files under version control).