From 7abdc71afa7e9425badb2d07453c59fa3c20f5f1 Mon Sep 17 00:00:00 2001 From: Chad Versace Date: Fri, 8 Oct 2010 16:12:24 -0700 Subject: glsl: Add lexer rules for << and >> in GLSL 1.30 Commit for generated file glsl_lexer.cpp follows this commit. --- src/glsl/glsl_lexer.lpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/glsl/glsl_lexer.lpp') diff --git a/src/glsl/glsl_lexer.lpp b/src/glsl/glsl_lexer.lpp index 9672342e8e..c0778a656a 100644 --- a/src/glsl/glsl_lexer.lpp +++ b/src/glsl/glsl_lexer.lpp @@ -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; -- cgit v1.2.3