diff options
Diffstat (limited to 'src/mesa/program/program_lexer.l')
-rw-r--r-- | src/mesa/program/program_lexer.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/program/program_lexer.l b/src/mesa/program/program_lexer.l index 2c2a66812c7..6c3099f88d7 100644 --- a/src/mesa/program/program_lexer.l +++ b/src/mesa/program/program_lexer.l @@ -27,7 +27,7 @@ #endif #include "main/glheader.h" -#include "util/imports.h" + #include "program/prog_instruction.h" #include "program/prog_statevars.h" #include "program/symbol_table.h" @@ -379,7 +379,7 @@ ARRAYSHADOW2D { return_token_or_IDENTIFIER(require_ARB_fp && require const unsigned s = swiz_from_char(yytext[1]); yylval->swiz_mask.swizzle = MAKE_SWIZZLE4(s, s, s, s); yylval->swiz_mask.mask = mask_from_char(yytext[1]); - return MASK1; + return MASK1; } "."[xyzw]{4} { |