From 368dc76f04e19f5070d1f41795ea8cde2964639f Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Tue, 7 Sep 2010 23:22:10 -0700 Subject: [PATCH] ir_validate: Ensure ir_binop_dot is only used on vector types. --- src/glsl/ir_validate.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/glsl/ir_validate.cpp b/src/glsl/ir_validate.cpp index 8e825903644..445169f5202 100644 --- a/src/glsl/ir_validate.cpp +++ b/src/glsl/ir_validate.cpp @@ -338,6 +338,7 @@ ir_validate::visit_leave(ir_expression *ir) case ir_binop_dot: assert(ir->type == glsl_type::float_type); assert(ir->operands[0]->type->base_type == GLSL_TYPE_FLOAT); + assert(ir->operands[0]->type->is_vector()); assert(ir->operands[0]->type == ir->operands[1]->type); break; -- 2.30.2