From 1c0644e9dac946131594216e23953a9c85335282 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 14 Sep 2010 09:15:19 -0600 Subject: glsl2: add case for ir_unop_noise Silences a compiler warning. Still need to add some assertions for this case. --- src/glsl/ir_validate.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/glsl/ir_validate.cpp b/src/glsl/ir_validate.cpp index 1c50957d13b..58ab8aa58f8 100644 --- a/src/glsl/ir_validate.cpp +++ b/src/glsl/ir_validate.cpp @@ -275,6 +275,10 @@ ir_validate::visit_leave(ir_expression *ir) assert(ir->operands[0]->type == ir->type); break; + case ir_unop_noise: + /* XXX what can we assert here? */ + break; + case ir_binop_add: case ir_binop_sub: case ir_binop_mul: -- cgit v1.2.3