From 46cbb00f53f7764004cad59ba12b6ffd7e9f79a2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Tue, 7 Mar 2017 02:01:08 +0100 Subject: [PATCH] glsl_to_tgsi: remove a redundant statement it's the same as the last "else". --- src/mesa/state_tracker/st_glsl_to_tgsi.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp index 0757d141fcc..355f88ae9a4 100644 --- a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp +++ b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp @@ -4372,8 +4372,6 @@ glsl_to_tgsi_visitor::visit(ir_texture *ir) inst = emit_asm(ir, opcode, result_dst, lod_info); } else if (opcode == TGSI_OPCODE_TXQS) { inst = emit_asm(ir, opcode, result_dst); - } else if (opcode == TGSI_OPCODE_TXF) { - inst = emit_asm(ir, opcode, result_dst, coord); } else if (opcode == TGSI_OPCODE_TXL2 || opcode == TGSI_OPCODE_TXB2) { inst = emit_asm(ir, opcode, result_dst, coord, lod_info); } else if (opcode == TGSI_OPCODE_TEX2) { -- 2.11.0