From: Eric Anholt Date: Mon, 2 Aug 2010 19:06:34 +0000 (-0700) Subject: glsl2: Fix validation for ir_unop_not. X-Git-Tag: mesa-7.9-rc1~1173^2~172 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e75dbf66d011d76b6944dc4ee55e339ee285510c;p=platform%2Fupstream%2Fmesa.git glsl2: Fix validation for ir_unop_not. We use vector ir_unop_not to implement builtin not(), and that seems fine. --- diff --git a/src/glsl/ir_validate.cpp b/src/glsl/ir_validate.cpp index 85417a1..1dfac82 100644 --- a/src/glsl/ir_validate.cpp +++ b/src/glsl/ir_validate.cpp @@ -171,8 +171,8 @@ ir_validate::visit_leave(ir_expression *ir) assert(ir->operands[0]->type == ir->type); break; case ir_unop_logic_not: - assert(ir->type == glsl_type::bool_type); - assert(ir->operands[0]->type == glsl_type::bool_type); + assert(ir->type->base_type == GLSL_TYPE_BOOL); + assert(ir->operands[0]->type->base_type == GLSL_TYPE_BOOL); break; case ir_unop_neg: