glsl: Add lexer rules for << and >> in GLSL 1.30

Commit for generated file glsl_lexer.cpp follows this commit.
This commit is contained in:
Chad Versace 2010-10-08 16:12:24 -07:00 committed by Kenneth Graunke
parent fc6caef4cb
commit 7abdc71afa

View file

@ -240,6 +240,8 @@ layout {
&& return AND_OP;
\|\| return OR_OP;
"^^" return XOR_OP;
"<<" return LEFT_OP;
">>" return RIGHT_OP;
\*= return MUL_ASSIGN;
\/= return DIV_ASSIGN;