mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 06:30:10 +01:00
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:
parent
fc6caef4cb
commit
7abdc71afa
1 changed files with 2 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue