diff options
author | Ian Romanick <[email protected]> | 2009-07-27 16:24:49 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2009-07-27 16:24:49 -0700 |
commit | 1edd13bf23c7a9dad00420f519a35f75b27e853b (patch) | |
tree | d13dcc3a11e2f712d80b77f3c504dad144c9835c /src/mesa/shader/program_parse.tab.h | |
parent | 88018e2e073909ae807f16707f2701e068900926 (diff) |
ARB prog parser: Add support for GL_ARB_fragment_program_shadow
Passes the piglit asmparsertest shadow-0[123].txt tests and
progs/demos/shadowtex.
Diffstat (limited to 'src/mesa/shader/program_parse.tab.h')
-rw-r--r-- | src/mesa/shader/program_parse.tab.h | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/src/mesa/shader/program_parse.tab.h b/src/mesa/shader/program_parse.tab.h index 7dd1c02bdc8..4fd65318016 100644 --- a/src/mesa/shader/program_parse.tab.h +++ b/src/mesa/shader/program_parse.tab.h @@ -124,17 +124,20 @@ TEX_3D = 340, TEX_CUBE = 341, TEX_RECT = 342, - VERTEX = 343, - VTXATTRIB = 344, - WEIGHT = 345, - IDENTIFIER = 346, - MASK4 = 347, - MASK3 = 348, - MASK2 = 349, - MASK1 = 350, - SWIZZLE = 351, - DOT_DOT = 352, - DOT = 353 + TEX_SHADOW1D = 343, + TEX_SHADOW2D = 344, + TEX_SHADOWRECT = 345, + VERTEX = 346, + VTXATTRIB = 347, + WEIGHT = 348, + IDENTIFIER = 349, + MASK4 = 350, + MASK3 = 351, + MASK2 = 352, + MASK1 = 353, + SWIZZLE = 354, + DOT_DOT = 355, + DOT = 356 }; #endif @@ -167,7 +170,7 @@ typedef union YYSTYPE /* Line 1676 of yacc.c */ -#line 171 "program_parse.tab.h" +#line 174 "program_parse.tab.h" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ |