diff options
author | marha <marha@users.sourceforge.net> | 2012-06-18 08:29:53 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-06-18 08:29:53 +0200 |
commit | a3691edaff553b5130c97ff912ecaa96f08a6643 (patch) | |
tree | 8a1fb2257d45cc0ebd3d0a69fdf8a7a8a0cc9d1e /mesalib/src/glsl/ir_validate.cpp | |
parent | a33de30073bfa0ee1abba186dba9fa52cf0aa23a (diff) | |
download | vcxsrv-a3691edaff553b5130c97ff912ecaa96f08a6643.tar.gz vcxsrv-a3691edaff553b5130c97ff912ecaa96f08a6643.tar.bz2 vcxsrv-a3691edaff553b5130c97ff912ecaa96f08a6643.zip |
fontconfig mesa pixman git update 18 Jun 2012
Diffstat (limited to 'mesalib/src/glsl/ir_validate.cpp')
-rw-r--r-- | mesalib/src/glsl/ir_validate.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mesalib/src/glsl/ir_validate.cpp b/mesalib/src/glsl/ir_validate.cpp index 5721717a5..191d39831 100644 --- a/mesalib/src/glsl/ir_validate.cpp +++ b/mesalib/src/glsl/ir_validate.cpp @@ -256,6 +256,10 @@ ir_validate::visit_leave(ir_expression *ir) assert(ir->operands[0]->type->base_type == GLSL_TYPE_FLOAT); assert(ir->type->base_type == GLSL_TYPE_INT); break; + case ir_unop_f2u: + assert(ir->operands[0]->type->base_type == GLSL_TYPE_FLOAT); + assert(ir->type->base_type == GLSL_TYPE_UINT); + break; case ir_unop_i2f: assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT); assert(ir->type->base_type == GLSL_TYPE_FLOAT); |