i965: Add missing handling for BRW_OPCODE_SEL.
authorEric Anholt <eric@anholt.net>
Fri, 27 Aug 2010 21:09:05 +0000 (14:09 -0700)
committerEric Anholt <eric@anholt.net>
Fri, 27 Aug 2010 21:11:25 +0000 (14:11 -0700)
Fixes 4 piglit tests about min, max, and clamp.

src/mesa/drivers/dri/i965/brw_fs.cpp

index 3f41a5533151ab76f881c77759343f213e69d1a8..63f3cd08162040e571d5bac02d4f434883f5ffe8 100644 (file)
@@ -1513,6 +1513,10 @@ fs_visitor::generate_code()
       case BRW_OPCODE_CMP:
         brw_CMP(p, dst, inst->conditional_mod, src[0], src[1]);
         break;
+      case BRW_OPCODE_SEL:
+        brw_SEL(p, dst, src[0], src[1]);
+        break;
+
       case BRW_OPCODE_IF:
         assert(if_stack_depth < 16);
         if_stack[if_stack_depth] = brw_IF(p, BRW_EXECUTE_8);