From: Brian Paul Date: Sat, 2 Mar 2013 00:36:24 +0000 (-0700) Subject: mesa: add switch case for ir_txf_ms to silence warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2ea0e30bed87174bc376c391e2c4a23298c36b5a;p=mesa.git mesa: add switch case for ir_txf_ms to silence warning Reviewed-by: Roland Scheidegger Reviewed-by: Ian Romanick --- diff --git a/src/mesa/program/ir_to_mesa.cpp b/src/mesa/program/ir_to_mesa.cpp index 54323232570..486cf4639ce 100644 --- a/src/mesa/program/ir_to_mesa.cpp +++ b/src/mesa/program/ir_to_mesa.cpp @@ -2045,6 +2045,9 @@ ir_to_mesa_visitor::visit(ir_texture *ir) ir->lod_info.grad.dPdy->accept(this); dy = this->result; break; + case ir_txf_ms: + assert(!"Unexpected ir_txf_ms opcode"); + break; } const glsl_type *sampler_type = ir->sampler->type;