Files
mesa/src
Ian Romanick e7bf096e8b ir_to_mesa: Implement ir_binop_any_nequal using DP4 w/saturate or DP4 w/SLT
The operation ir_binop_any_nequal is (a.x != b.x) || (a.y != b.y) ||
(a.z != b.z) || (a.w != b.w), and that is the same as any(bvec4(a.x !=
b.x, a.y != b.y, a.z != b.z, a.w != b.w)).  Implement the any() part
the same way the regular ir_unop_any is implemented.

Reviewed-by: Eric Anholt <eric@anholt.net>
2011-08-16 14:09:43 -07:00
..
2011-01-12 16:54:21 +00:00
2011-04-27 19:06:07 +01:00
2011-08-09 08:58:20 -06:00
2011-08-13 15:14:24 +08:00
2011-07-14 17:35:05 +01:00