summaryrefslogtreecommitdiff
path: root/glsl_parser.ypp
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2010-03-29 16:44:29 -0700
committerIan Romanick <ian.d.romanick@intel.com>2010-03-29 16:44:29 -0700
commit06e5308e29e42d22a72247abfdd260bc9ba145b8 (patch)
tree3a46851a46be96dd963fe3c138c2aa5be6f3ba05 /glsl_parser.ypp
parentbfb09c2a94414c1b40108c9c41eb0844d932e459 (diff)
Add parser support for texture rectangle types
Diffstat (limited to 'glsl_parser.ypp')
-rw-r--r--glsl_parser.ypp2
1 files changed, 2 insertions, 0 deletions
diff --git a/glsl_parser.ypp b/glsl_parser.ypp
index 7af93dd944..4a58666d76 100644
--- a/glsl_parser.ypp
+++ b/glsl_parser.ypp
@@ -900,10 +900,12 @@ basic_type_specifier_nonarray:
| MAT4X4 { $$ = ast_mat4; }
| SAMPLER1D { $$ = ast_sampler1d; }
| SAMPLER2D { $$ = ast_sampler2d; }
+ | SAMPLER2DRECT { $$ = ast_sampler2drect; }
| SAMPLER3D { $$ = ast_sampler3d; }
| SAMPLERCUBE { $$ = ast_samplercube; }
| SAMPLER1DSHADOW { $$ = ast_sampler1dshadow; }
| SAMPLER2DSHADOW { $$ = ast_sampler2dshadow; }
+ | SAMPLER2DRECTSHADOW { $$ = ast_sampler2drectshadow; }
| SAMPLERCUBESHADOW { $$ = ast_samplercubeshadow; }
| SAMPLER1DARRAY { $$ = ast_sampler1darray; }
| SAMPLER2DARRAY { $$ = ast_sampler2darray; }